diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..ff39c5c
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,76 @@
+name: iceberg-tests
+on:
+ pull_request:
+ push:
+ branches:
+ - main
+
+jobs:
+ iceberg-test:
+ name: Test lakeFS iceberg catalog
+ runs-on: ubuntu-20.04
+ env:
+ LAKEFS_INSTALLATION_ACCESS_KEY_ID: AKIAIOSFDNN7EXAMPLEQ
+ LAKEFS_INSTALLATION_SECRET_ACCESS_KEY: wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ services:
+ lakefs:
+ image: "treeverse/lakefs:1"
+ ports:
+ - '8000:8000'
+ env:
+ LAKEFS_DATABASE_TYPE: local
+ LAKEFS_BLOCKSTORE_TYPE: s3
+ LAKEFS_INSTALLATION_ACCESS_KEY_ID: ${{ env.LAKEFS_INSTALLATION_ACCESS_KEY_ID }}
+ LAKEFS_INSTALLATION_SECRET_ACCESS_KEY: ${{ env.LAKEFS_INSTALLATION_SECRET_ACCESS_KEY }}
+ LAKEFS_BLOCKSTORE_S3_CREDENTIALS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ LAKEFS_BLOCKSTORE_S3_CREDENTIALS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ LAKEFS_AUTH_ENCRYPT_SECRET_KEY: some random secret string
+ LAKEFS_STATS_ENABLED: false
+ LAKEFS_INSTALLATION_USER_NAME: admin
+
+ steps:
+ - name: Check-out code
+ uses: actions/checkout@v3
+
+ - name: Set up JDK 11
+ uses: actions/setup-java@v3
+ with:
+ distribution: "temurin"
+ java-version: "11"
+ cache: "maven"
+
+ - name: Generate uniquifying value
+ id: unique
+ run: echo "value=$RANDOM" >> $GITHUB_OUTPUT
+
+ - name: Build lakeFS Iceberg
+ env:
+ AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
+ AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
+ STORAGE_NAMESPACE: s3://esti-system-testing/${{ github.run_number }}-iceberg-rest/${{ steps.unique.outputs.value }}
+ run: mvn clean install --batch-mode -U -P\!sign-artifacts
+
+ - name: Set up Python
+ uses: actions/setup-python@v4
+ with:
+ python-version: 3.9
+ cache: 'pip'
+ - run: pip install -r ./tests/requirements.txt
+
+ - name: Run Python Tests
+ run: pip install pytest pytest-md pytest-emoji
+ - uses: pavelzw/pytest-action@v2
+ env:
+ LAKECTL_CREDENTIALS_ACCESS_KEY_ID: ${{ env.LAKEFS_INSTALLATION_ACCESS_KEY_ID }}
+ LAKECTL_CREDENTIALS_SECRET_ACCESS_KEY: ${{ env.LAKEFS_INSTALLATION_SECRET_ACCESS_KEY }}
+ LAKECTL_SERVER_ENDPOINT_URL: http://localhost:8000
+ STORAGE_NAMESPACE: s3://esti-system-testing/${{ github.run_number }}-iceberg-rest/${{ steps.unique.outputs.value }}
+ with:
+ verbose: true
+ emoji: true
+ job-summary: true
+ custom-arguments: './tests -rP'
+ click-to-expand: true
+ report-title: 'lakeFS Iceberg Catalog System Tests Report'
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2f7896d
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+target/
diff --git a/pom.xml b/pom.xml
new file mode 100644
index 0000000..51ff011
--- /dev/null
+++ b/pom.xml
@@ -0,0 +1,306 @@
+
+
+ 4.0.0
+
+ io.lakefs
+ lakefs-iceberg-rest
+ 0.1.0-SNAPSHOT
+
+ lakefs-iceberg-rest
+ https://lakefs.io
+ An Iceberg REST catalog implementation for lakeFS
+
+ UTF-8
+ 8
+ 8
+ 1.4.3
+ 3.3.5
+
+
+ scm:git:git@github.com:treeverse/lakefs-iceberg-rest.git
+ scm:git:git@github.com:treeverse/lakefs-iceberg-rest.git
+ https://github.com/treeverse/lakefs-iceberg-rest
+
+
+
+ lakeFS
+ hello@treeverse.io
+ lakefs.io
+ https://lakefs.io
+
+
+
+
+ io.lakefs
+ hadoop-lakefs
+ 0.2.3-RC.0
+
+
+ io.lakefs
+ hadoop-lakefs
+ 0.2.3-RC.0
+ test-jar
+ test
+
+
+ junit
+ junit
+ 4.13.2
+ test
+
+
+ com.fasterxml.jackson.module
+ jackson-module-scala_3
+ 2.16.1
+ test
+
+
+
+ org.apache.iceberg
+ iceberg-core
+ ${iceberg.version}
+ provided
+
+
+ org.apache.iceberg
+ iceberg-spark-3.3_2.13
+ ${iceberg.version}
+ test
+
+
+ org.apache.iceberg
+ iceberg-spark-extensions-3.3_2.13
+ ${iceberg.version}
+ test
+
+
+ org.apache.iceberg
+ iceberg-spark-runtime-3.3_2.13
+ ${iceberg.version}
+ test
+
+
+
+ org.apache.spark
+ spark-sql_2.13
+ 3.3.4
+ test
+
+
+ org.apache.iceberg
+ iceberg-api
+ ${iceberg.version}
+ test-jar
+ test
+
+
+
+ org.assertj
+ assertj-core
+ 3.24.2
+ test
+
+
+
+ com.google.guava
+ guava
+ 33.0.0-jre
+
+
+
+ org.apache.commons
+ commons-lang3
+ 3.12.0
+
+
+ org.apache.hadoop
+ hadoop-aws
+ ${hadoop.version}
+ provided
+
+
+
+ org.apache.hadoop
+ hadoop-client-api
+ ${hadoop.version}
+ provided
+
+
+
+ org.slf4j
+ slf4j-api
+ 2.0.9
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ org.mock-server
+ mockserver-junit-rule-no-dependencies
+ 5.14.0
+ test
+
+
+ org.mock-server
+ mockserver-core
+ 5.15.0
+ test
+
+
+
+
+ sign-artifacts
+
+ true
+
+
+
+
+ org.apache.maven.plugins
+ maven-gpg-plugin
+ 1.6
+
+ 408A5896A9B8EC94EE4F7B6472FF63CDF8B05FCF
+
+
+
+ sign-artifacts
+
+
+ --pinentry-mode
+ loopback
+
+
+ verify
+
+ sign
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-javadoc-plugin
+ 3.5.0
+
+
+ attach-javadocs
+
+ jar
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-source-plugin
+ 2.2.1
+
+
+ attach-sources
+
+ jar-no-fork
+
+
+
+
+
+
+
+
+
+
+
+ ossrh
+ Nexus Snapshots Repo
+ https://s01.oss.sonatype.org/content/repositories/snapshots/
+
+
+ ossrh
+ Nexus Staging Repo
+ https://s01.oss.sonatype.org/nexus/service/local/staging/deploy/maven2/
+
+
+
+
+
+
+ org.sonatype.plugins
+ nexus-staging-maven-plugin
+ 1.6.8
+ true
+
+ ossrh
+ https://s01.oss.sonatype.org/
+
+
+
+ org.apache.maven.plugins
+ maven-jar-plugin
+ 3.3.0
+
+
+
+ true
+ true
+
+
+
+
+
+ org.apache.maven.plugins
+ maven-shade-plugin
+
+
+ package
+
+ shade
+
+
+
+
+ okio
+ com.shaded.okio
+
+
+ okhttp3
+ com.shaded.okhttp3
+
+
+ com.google
+ com.shaded.google
+
+
+
+
+ *:*
+
+ META-INF/*.SF
+ META-INF/*.DSA
+ META-INF/*.RSA
+ log4j.properties
+
+
+
+
+
+
+
+
+
+
diff --git a/src/main/java/io/lakefs/iceberg/rest/LakeFSCatalog.java b/src/main/java/io/lakefs/iceberg/rest/LakeFSCatalog.java
new file mode 100644
index 0000000..8e11c45
--- /dev/null
+++ b/src/main/java/io/lakefs/iceberg/rest/LakeFSCatalog.java
@@ -0,0 +1,437 @@
+package io.lakefs.iceberg.rest;
+
+import java.io.FileNotFoundException;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.UncheckedIOException;
+import java.net.URI;
+import java.net.URISyntaxException;
+import java.nio.file.AccessDeniedException;
+import java.util.*;
+
+import com.amazonaws.thirdparty.jackson.databind.ObjectMapper;
+import io.lakefs.LakeFSFileStatus;
+import io.lakefs.LakeFSFileSystem;
+import org.apache.hadoop.conf.Configurable;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.*;
+import org.apache.iceberg.BaseMetastoreCatalog;
+import org.apache.iceberg.CatalogProperties;
+import org.apache.iceberg.CatalogUtil;
+import org.apache.iceberg.Schema;
+import org.apache.iceberg.TableMetadata;
+import org.apache.iceberg.TableOperations;
+import org.apache.iceberg.catalog.Namespace;
+import org.apache.iceberg.catalog.SupportsNamespaces;
+import org.apache.iceberg.catalog.TableIdentifier;
+import org.apache.iceberg.exceptions.AlreadyExistsException;
+import org.apache.iceberg.exceptions.NamespaceNotEmptyException;
+import org.apache.iceberg.exceptions.NoSuchNamespaceException;
+import org.apache.iceberg.exceptions.NoSuchTableException;
+import org.apache.iceberg.exceptions.RuntimeIOException;
+import com.google.common.base.MoreObjects;
+import com.google.common.base.Preconditions;
+import com.google.common.collect.ImmutableMap;
+import com.google.common.collect.Lists;
+import com.google.common.collect.Sets;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+/**
+ * Most of the code taken for HadoopCatalog with some modifications in regard to the FileSystem and path operations.
+ * LakeFSCatalog provides a way to use table names like repo_name.branch_name.table to work with path-based tables
+ * under a common location. It uses a specified directory under the lakeFS FileSystem as the warehouse directory,
+ * and organizes multiple levels directories that mapped to the database,
+ * namespace and the table respectively.
+ */
+public class LakeFSCatalog extends BaseMetastoreCatalog implements SupportsNamespaces, Configurable {
+
+ private static final Logger LOG = LoggerFactory.getLogger(LakeFSCatalog.class);
+
+ private static final String TABLE_METADATA_FILE_EXTENSION = ".metadata.json";
+ public static final String NAMESPACE_FILENAME = "ns_metadata.json";
+ private static final PathFilter TABLE_FILTER =
+ path -> path.getName().endsWith(TABLE_METADATA_FILE_EXTENSION);
+ private static final String HADOOP_SUPPRESS_PERMISSION_ERROR = "suppress-permission-error";
+
+ public static final String WAREHOUSE_LOCATION = "lakefs://";
+
+ private String catalogName;
+ private Configuration conf;
+ private String warehouseLocation;
+ private boolean suppressPermissionError = false;
+ private Map catalogProperties;
+
+ public LakeFSCatalog() {}
+
+ @Override
+ public void initialize(String name, Map properties) {
+ catalogProperties = ImmutableMap.copyOf(properties);
+ String inputWarehouseLocation = properties.get(CatalogProperties.WAREHOUSE_LOCATION);
+ Preconditions.checkArgument(
+ inputWarehouseLocation != null && !inputWarehouseLocation.isEmpty(),
+ "Cannot initialize LakeFSCatalog because warehousePath must not be null or empty");
+
+ catalogName = name;
+ warehouseLocation = WAREHOUSE_LOCATION;
+ suppressPermissionError = Boolean.parseBoolean(properties.get(HADOOP_SUPPRESS_PERMISSION_ERROR));
+ }
+
+ @Override
+ public String name() {
+ return catalogName;
+ }
+
+ private boolean shouldSuppressPermissionError(IOException ioException) {
+ if (suppressPermissionError) {
+ return ioException instanceof AccessDeniedException
+ || (ioException.getMessage() != null
+ && ioException.getMessage().contains("AuthorizationPermissionMismatch"));
+ }
+ return false;
+ }
+
+ private boolean isTableDir(Path path) {
+ Path metadataPath = new Path(path, "metadata");
+ // Only the path which contains metadata is the path for table, otherwise it could be
+ // still a namespace.
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(path.toUri(), this.conf);
+ return fs.listStatus(metadataPath, TABLE_FILTER).length >= 1;
+ } catch (FileNotFoundException e) {
+ return false;
+ } catch (IOException e) {
+ if (shouldSuppressPermissionError(e)) {
+ LOG.warn("Unable to list metadata directory {}", metadataPath, e);
+ return false;
+ } else {
+ throw new UncheckedIOException(e);
+ }
+ }
+ }
+
+ private boolean isDirectory(Path path) {
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(path.toUri(), this.conf);
+ return fs.getFileStatus(path).isDirectory();
+ } catch (FileNotFoundException e) {
+ return false;
+ } catch (IOException e) {
+ if (shouldSuppressPermissionError(e)) {
+ LOG.warn("Unable to list directory {}", path, e);
+ return false;
+ } else {
+ LOG.error("Unable to list directory {}", path, e);
+ throw new UncheckedIOException(e);
+ }
+ }
+ }
+
+ @Override
+ public List listTables(Namespace namespace) {
+ Preconditions.checkArgument(
+ namespace.levels().length > 1, "Missing database in table identifier: %s", namespace);
+
+ String location = String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(namespace));
+ Set tblIdents = Sets.newHashSet();
+ try {
+ Path nsPath = new Path(new URI(location));
+ LakeFSFileSystem fs = new LakeFSFileSystem();
+ fs.initialize(nsPath.toUri(), this.conf);
+ if (!isDirectory(nsPath)) {
+ throw new NoSuchNamespaceException("Namespace does not exist: %s", namespace);
+ }
+ RemoteIterator it = fs.listStatusIterator(nsPath);
+ while (it.hasNext()) {
+ FileStatus status = it.next();
+ if (!status.isDirectory()) {
+ // Ignore the path which is not a directory.
+ continue;
+ }
+
+ Path path = status.getPath();
+ if (isTableDir(path)) {
+ TableIdentifier tblIdent = TableIdentifier.of(namespace, path.getName());
+ tblIdents.add(tblIdent);
+ }
+ }
+ } catch (IOException ioe) {
+ throw new RuntimeIOException(ioe, "Failed to list tables under: %s", namespace);
+ } catch (URISyntaxException e) {
+ LOG.error(String.format("Failed to parse URI"));
+ throw new RuntimeException(e);
+ }
+
+ return Lists.newArrayList(tblIdents);
+ }
+
+ @Override
+ protected boolean isValidIdentifier(TableIdentifier identifier) {
+ return true;
+ }
+
+ @Override
+ protected TableOperations newTableOps(TableIdentifier identifier) {
+ final String[] levels = identifier.namespace().levels();
+ Preconditions.checkArgument(levels.length > 2, String.format("Missing database in table identifier: %s", identifier));
+ Configuration conf = getConf();
+ LakeFSFileIO fileIO = new LakeFSFileIO(levels[0], levels[1], conf);
+ String location = String.format("%s%s", warehouseLocation, defaultWarehouseLocation(identifier));
+ return new LakeFSTableOperations(new Path(location), fileIO, conf);
+ }
+
+ @Override
+ protected String defaultWarehouseLocation(TableIdentifier tableIdentifier) {
+ String tableName = tableIdentifier.name();
+ StringBuilder sb = new StringBuilder();
+ String[] levels = tableIdentifier.namespace().levels();
+ for (String level : levels) {
+ sb.append(level).append('/');
+ }
+ sb.append(tableName);
+ return sb.toString();
+ }
+
+ protected String defaultWarehouseLocation(Namespace ns) {
+ StringBuilder sb = new StringBuilder();
+ String[] levels = ns.levels();
+ for (String level : levels) {
+ sb.append(level).append('/');
+ }
+ return sb.toString();
+ }
+
+ @Override
+ public boolean dropTable(TableIdentifier identifier, boolean purge) {
+ if (!isValidIdentifier(identifier)) {
+ throw new NoSuchTableException("Invalid identifier: %s", identifier);
+ }
+
+ String location = String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(identifier));
+ Path tablePath;
+ try {
+ tablePath = new Path(new URI(location));
+ } catch (URISyntaxException e) {
+ throw new RuntimeException(e);
+ }
+ TableOperations ops = newTableOps(identifier);
+ TableMetadata lastMetadata = ops.current();
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(tablePath.toUri(), this.conf);
+ if (lastMetadata == null) {
+ LOG.debug("Not an iceberg table: {}", identifier);
+ return false;
+ } else {
+ if (purge) {
+ // Since the data files and the metadata files may store in different locations,
+ // so it has to call dropTableData to force delete the data file.
+ CatalogUtil.dropTableData(ops.io(), lastMetadata);
+ }
+ return fs.delete(tablePath, true /* recursive */);
+ }
+ } catch (IOException e) {
+ throw new RuntimeIOException(e, "Failed to delete file: %s", tablePath);
+ }
+ }
+
+ @Override
+ public void renameTable(TableIdentifier from, TableIdentifier to) {
+ throw new UnsupportedOperationException("Cannot rename Hadoop tables");
+ }
+
+ @Override
+ public void createNamespace(Namespace namespace, Map meta) {
+ Preconditions.checkArgument(
+ !namespace.isEmpty(), "Cannot create namespace with invalid name: %s", namespace);
+ // TODO (niro): We can easily support namespace creation with metadata by defining a namespace metadata file
+ // convention name and writing it to the namespace path
+ if (!meta.isEmpty()) {
+ LOG.warn("create namespace with metadata is currently no supported. Ignoring metadata");
+ }
+
+ String location = String.format("%s%s/%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(namespace), NAMESPACE_FILENAME);
+ Path nsPath;
+ try {
+ nsPath = new Path(new URI(location));
+ } catch (URISyntaxException e) {
+ throw new RuntimeException(e);
+ }
+
+ if (isNamespace(nsPath)) {
+ throw new AlreadyExistsException("Namespace already exists: %s", namespace);
+ }
+
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(nsPath.toUri(), this.conf);
+ FSDataOutputStream stream = fs.create(nsPath, false);
+ ObjectMapper mapper = new ObjectMapper();
+ stream.write(mapper.writeValueAsBytes(meta));
+ stream.close();
+
+ } catch (IOException e) {
+ throw new RuntimeIOException(e, "Create namespace failed: %s", namespace);
+ }
+ }
+
+ @Override
+ public List listNamespaces() {
+ throw new UnsupportedOperationException("Current lakeFS Catalog implementation does not support top-level listing");
+ }
+
+ @Override
+ public List listNamespaces(Namespace namespace) {
+ if (namespace.length() < 2) {
+ throw new NoSuchNamespaceException("Namespace must contain at least repository and branch levels: %s", namespace);
+ }
+
+ String location = String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(namespace));
+ Path nsPath;
+ try {
+ nsPath = new Path(new URI(location));
+ } catch (URISyntaxException e) {
+ throw new RuntimeException(e);
+ }
+ if (!isNamespace(nsPath)) {
+ throw new NoSuchNamespaceException("Namespace does not exist: %s", namespace);
+ }
+
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ // using the iterator listing allows for paged downloads
+ // from lakeFS and prefetching from object storage.
+ fs.initialize(nsPath.toUri(), this.conf);
+ List namespaces = Lists.newArrayList();
+ RemoteIterator it = fs.listStatusIterator(nsPath);
+ while (it.hasNext()) {
+ Path path = it.next().getPath();
+ if (isNamespace(path)) {
+ namespaces.add(append(namespace, path.getName()));
+ }
+ }
+ return namespaces;
+ } catch (IOException ioe) {
+ throw new RuntimeIOException(ioe, "Failed to list namespace under: %s", namespace);
+ }
+ }
+
+ private Namespace append(Namespace ns, String name) {
+ String[] levels = Arrays.copyOfRange(ns.levels(), 0, ns.levels().length + 1);
+ levels[ns.levels().length] = name;
+ return Namespace.of(levels);
+ }
+
+ @Override
+ public boolean dropNamespace(Namespace namespace) {
+ String location = String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(namespace));
+ // This method of getting the path removes the last slash so that the namespace directory is removed
+ Path nsPath = new Path(location);
+
+ if (!isNamespace(nsPath) || namespace.length() < 2) {
+ return false;
+ }
+
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(nsPath.toUri(), this.conf);
+ RemoteIterator it = fs.listStatusIterator(nsPath);
+ while (it.hasNext()) {
+ LakeFSFileStatus status = (LakeFSFileStatus)it.next();
+ if (!(status.isEmptyDirectory() || status.getPath().getName().equals(NAMESPACE_FILENAME))) {
+ throw new NamespaceNotEmptyException("Namespace %s is not empty.", namespace);
+ }
+ }
+ return fs.delete(nsPath, true /* recursive */);
+ } catch (IOException e) {
+ throw new RuntimeIOException(e, "Namespace delete failed: %s", namespace);
+ }
+ }
+
+ @Override
+ public boolean setProperties(Namespace namespace, Map properties) {
+ throw new UnsupportedOperationException(
+ "Cannot set namespace properties " + namespace + " : setProperties is not supported");
+ }
+
+ @Override
+ public boolean removeProperties(Namespace namespace, Set properties) {
+ throw new UnsupportedOperationException(
+ "Cannot remove properties " + namespace + " : removeProperties is not supported");
+ }
+
+ @Override
+ public Map loadNamespaceMetadata(Namespace namespace) {
+ Map result = new HashMap<>();
+ String location = String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(namespace));
+ Path nsPath = new Path(location);
+ if (!isNamespace(nsPath) || namespace.isEmpty()) {
+ throw new NoSuchNamespaceException("Namespace does not exist: %s", namespace);
+ }
+
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(nsPath.toUri(), this.conf);
+ Path mdPath = new Path(nsPath, NAMESPACE_FILENAME);
+ if (fs.exists(mdPath)) {
+ ObjectMapper mapper = new ObjectMapper();
+ FSDataInputStream is = fs.open(mdPath);
+ result = mapper.readValue((InputStream) is, Map.class);
+ is.close();
+ }
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ result.put("location", nsPath.toString());
+
+ return result;
+ }
+
+ private boolean isNamespace(Path path) {
+ return isDirectory(path) && !isTableDir(path);
+ }
+
+ @Override
+ public String toString() {
+ return MoreObjects.toStringHelper(this)
+ .add("name", catalogName)
+ .add("location", warehouseLocation)
+ .toString();
+ }
+
+ @Override
+ public TableBuilder buildTable(TableIdentifier identifier, Schema schema) {
+ return new LakeFSCatalogTableBuilder(identifier, schema);
+ }
+
+ @Override
+ public void setConf(Configuration conf) {
+ this.conf = conf;
+ }
+
+ @Override
+ public Configuration getConf() {
+ return conf;
+ }
+
+ @Override
+ protected Map properties() {
+ return catalogProperties == null ? ImmutableMap.of() : catalogProperties;
+ }
+
+ private class LakeFSCatalogTableBuilder extends BaseMetastoreCatalogTableBuilder {
+ private final String defaultLocation;
+
+ private LakeFSCatalogTableBuilder(TableIdentifier identifier, Schema schema) {
+ super(identifier, schema);
+ defaultLocation = Util.GetPathFromURL(String.format("%s%s", WAREHOUSE_LOCATION, defaultWarehouseLocation(identifier)));
+ super.withLocation(defaultLocation);
+ }
+
+ @Override
+ public TableBuilder withLocation(String location) {
+ Preconditions.checkArgument(
+ location == null || location.equals(defaultLocation),
+ "Cannot set a custom location for a path-based table. Expected "
+ + defaultLocation
+ + " but got "
+ + location);
+ return this;
+ }
+ }
+}
diff --git a/src/main/java/io/lakefs/iceberg/rest/LakeFSFileIO.java b/src/main/java/io/lakefs/iceberg/rest/LakeFSFileIO.java
new file mode 100644
index 0000000..911229b
--- /dev/null
+++ b/src/main/java/io/lakefs/iceberg/rest/LakeFSFileIO.java
@@ -0,0 +1,60 @@
+package io.lakefs.iceberg.rest;
+
+import org.apache.hadoop.conf.Configuration;
+import org.apache.iceberg.hadoop.HadoopFileIO;
+import org.apache.iceberg.hadoop.HadoopInputFile;
+import org.apache.iceberg.hadoop.HadoopOutputFile;
+import org.apache.iceberg.io.InputFile;
+import org.apache.iceberg.io.OutputFile;
+
+/**
+ * LakeFSFileIO extends HadoopFileIO and provides support for relative lakeFS paths in context with a given
+ * repository and reference.
+ * It also uses the LakeFSPath object to provide the relative path functionality for the Iceberg Catalog
+ */
+public class LakeFSFileIO extends HadoopFileIO {
+
+ private transient Configuration conf; // transient - to avoid Spark serialization error
+ private String lakeFSRepo;
+ private String lakeFSRef;
+
+ @SuppressWarnings("unused")
+ public LakeFSFileIO() {
+ }
+
+ public LakeFSFileIO(String lakeFSRepo, String lakeFSRef, Configuration conf) {
+ super(conf);
+ this.conf = conf;
+ this.lakeFSRepo = lakeFSRepo;
+ this.lakeFSRef = lakeFSRef;
+ }
+
+ private String verifyPath(String path) throws IllegalArgumentException {
+ if (!path.matches("^[0-9a-z]*://.*")) {
+ path = String.format("%s%s/%s/%s", LakeFSCatalog.WAREHOUSE_LOCATION, lakeFSRepo, lakeFSRef, path);
+ }
+ if (!path.startsWith(String.format("%s%s/%s/", LakeFSCatalog.WAREHOUSE_LOCATION, lakeFSRepo, lakeFSRef))) {
+ // Allow creating Files only under FileIO repository and ref
+ throw new IllegalArgumentException("Wrong repository and reference provided");
+ }
+ return path;
+ }
+
+ @Override
+ public InputFile newInputFile(String path) {
+ path = verifyPath(path);
+ return HadoopInputFile.fromPath(new LakeFSPath(path), conf);
+ }
+
+ @Override
+ public InputFile newInputFile(String path, long length) {
+ path = verifyPath(path);
+ return HadoopInputFile.fromPath(new LakeFSPath(path), length, conf);
+ }
+
+ @Override
+ public OutputFile newOutputFile(String path) {
+ path = verifyPath(path);
+ return HadoopOutputFile.fromPath(new LakeFSPath(path), conf);
+ }
+}
diff --git a/src/main/java/io/lakefs/iceberg/rest/LakeFSPath.java b/src/main/java/io/lakefs/iceberg/rest/LakeFSPath.java
new file mode 100644
index 0000000..54852bc
--- /dev/null
+++ b/src/main/java/io/lakefs/iceberg/rest/LakeFSPath.java
@@ -0,0 +1,41 @@
+package io.lakefs.iceberg.rest;
+
+import io.lakefs.LakeFSFileSystem;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.FileSystem;
+import org.apache.hadoop.fs.Path;
+
+import java.io.IOException;
+
+/**
+ * This is a Hadoop path with a dedicated {@link #toString()} implementation for lakeFS.
+ * The path is assumed to be a lakeFS path of the form [scheme]://[repo-name]/[ref-name]/rest/of/path/
.
+ */
+public class LakeFSPath extends Path {
+ public LakeFSPath(String pathString) throws IllegalArgumentException {
+ super(pathString);
+ if (!pathString.startsWith("lakefs://")) {
+ throw new IllegalArgumentException("Expecting a valid lakefs URI");
+ }
+ }
+
+ /**
+ * Return the path relative to the lakeFS repository and branch.
+ * For example, given lakefs://example-repo/main/a/b/c
, return a/b/c
.
+ */
+ @Override
+ public String toString() {
+ return Util.GetPathFromURL(super.toString());
+ }
+
+ @Override
+ public FileSystem getFileSystem(Configuration conf) throws IOException {
+ try (LakeFSFileSystem fs = new LakeFSFileSystem()) {
+ fs.initialize(toUri(), conf);
+ return fs;
+ }
+ catch (IOException e) {
+ throw new IOException(String.format("Failed to initialize lakeFS FileSystem with URI: %s", this.toUri().toString()), e);
+ }
+ }
+}
diff --git a/src/main/java/io/lakefs/iceberg/rest/LakeFSTableOperations.java b/src/main/java/io/lakefs/iceberg/rest/LakeFSTableOperations.java
new file mode 100644
index 0000000..46b9a2d
--- /dev/null
+++ b/src/main/java/io/lakefs/iceberg/rest/LakeFSTableOperations.java
@@ -0,0 +1,280 @@
+package io.lakefs.iceberg.rest;
+
+import io.lakefs.LakeFSFileSystem;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.hadoop.fs.FSDataOutputStream;
+import org.apache.hadoop.fs.FileStatus;
+import org.apache.hadoop.fs.FileSystem;
+import org.apache.hadoop.fs.Path;
+import org.apache.iceberg.TableMetadata;
+import org.apache.iceberg.TableMetadataParser;
+import org.apache.iceberg.TableProperties;
+import org.apache.iceberg.exceptions.CommitFailedException;
+import org.apache.iceberg.exceptions.RuntimeIOException;
+import org.apache.iceberg.exceptions.ValidationException;
+import org.apache.iceberg.hadoop.HadoopTableOperations;
+import org.apache.iceberg.io.FileIO;
+import com.google.common.base.Preconditions;
+import org.apache.iceberg.util.LockManagers;
+import org.apache.iceberg.util.Pair;
+import org.slf4j.Logger;
+import org.slf4j.LoggerFactory;
+
+import java.io.BufferedReader;
+import java.io.IOException;
+import java.io.InputStreamReader;
+import java.nio.charset.StandardCharsets;
+import java.util.UUID;
+import java.util.regex.Matcher;
+import java.util.regex.Pattern;
+
+/**
+ * LakeFSTableOperations extends HadoopTableOperations.
+ * It overrides the commit method to use an optimistic concurrency mechanism using lakeFS's Set-If-Absent to avoid
+ * using a locking mechanism
+ * Most code is taken from the HadoopTableOperations in order to properly implement the commit method.
+ */
+public class LakeFSTableOperations extends HadoopTableOperations {
+ private static final Logger LOG = LoggerFactory.getLogger(LakeFSTableOperations.class);
+ private static final Pattern VERSION_PATTERN = Pattern.compile("v([^.]*)\\..*");
+ private final Path location;
+ private final LakeFSFileSystem fs;
+ FileIO fileIO;
+
+ private volatile TableMetadata currentMetadata = null;
+ private volatile Integer version = null;
+ private volatile boolean shouldRefresh = true;
+
+ public LakeFSTableOperations(Path location, FileIO fileIO, Configuration conf) {
+ super(location, fileIO, conf, LockManagers.defaultLockManager());
+ this.fileIO = fileIO;
+ this.location = location;
+ this.fs = new LakeFSFileSystem();
+ try {
+ fs.initialize(location.toUri(), conf);
+ } catch (IOException e) {
+ throw new RuntimeException(e);
+ }
+ }
+
+ @Override
+ public FileIO io() {
+ return fileIO;
+ }
+
+
+ @Override
+ public String metadataFileLocation(String fileName) {
+ String path = super.metadataFileLocation(fileName);
+ if (path.startsWith(LakeFSCatalog.WAREHOUSE_LOCATION)) {
+ path = Util.GetPathFromURL(path);
+ }
+ return path;
+ }
+
+ @Override
+ public TableMetadata current() {
+ if (shouldRefresh) {
+ return refresh();
+ }
+ return currentMetadata;
+ }
+
+ @Override
+ public TableMetadata refresh() {
+ int ver = version != null ? version : findVersion();
+ try {
+ Path metadataFile = getMetadataFile(ver);
+ if (version == null && metadataFile == null && ver == 0) {
+ // no v0 metadata means the table doesn't exist yet
+ return null;
+ } else if (metadataFile == null) {
+ throw new ValidationException("Metadata file for version %d is missing", ver);
+ }
+
+ Path nextMetadataFile = getMetadataFile(ver + 1);
+ while (nextMetadataFile != null) {
+ ver += 1;
+ metadataFile = nextMetadataFile;
+ nextMetadataFile = getMetadataFile(ver + 1);
+ }
+
+ updateVersionAndMetadata(ver, metadataFile.toString());
+
+ this.shouldRefresh = false;
+ return currentMetadata;
+ } catch (IOException e) {
+ throw new RuntimeIOException(e, "Failed to refresh the table");
+ }
+ }
+
+ @Override
+ public void commit(TableMetadata base, TableMetadata metadata) {
+ Pair current = versionAndMetadata();
+ if (base != current.second()) {
+ throw new CommitFailedException("Cannot commit changes based on stale table metadata");
+ }
+
+ if (base == metadata) {
+ LOG.info("Nothing to commit.");
+ return;
+ }
+
+ Preconditions.checkArgument(
+ base == null || base.location().equals(metadata.location()),
+ "Hadoop path-based tables cannot be relocated");
+ Preconditions.checkArgument(
+ !metadata.properties().containsKey(TableProperties.WRITE_METADATA_LOCATION),
+ "Hadoop path-based tables cannot relocate metadata");
+
+ String codecName =
+ metadata.property(
+ TableProperties.METADATA_COMPRESSION, TableProperties.METADATA_COMPRESSION_DEFAULT);
+ TableMetadataParser.Codec codec = TableMetadataParser.Codec.fromName(codecName);
+ int nextVersion = (current.first() != null ? current.first() : 0) + 1;
+ Path metadataFile = metadataFilePath(nextVersion, codec);
+ TableMetadataParser.write(metadata, io().newOutputFile(metadataFile.toString()));
+
+ LOG.info("Committed a new metadata file {}", metadataFile);
+
+ // update the best-effort version pointer
+ writeVersionHint(nextVersion);
+
+ this.shouldRefresh = true;
+ }
+
+ Path getMetadataFile(int metadataVersion) throws IOException {
+ for (TableMetadataParser.Codec codec : TableMetadataParser.Codec.values()) {
+ Path metadataFile = metadataFilePath(metadataVersion, codec);
+ if (fs.exists(metadataFile)) {
+ return metadataFile;
+ }
+
+ if (codec.equals(TableMetadataParser.Codec.GZIP)) {
+ // we have to be backward-compatible with .metadata.json.gz files
+ metadataFile = oldMetadataFilePath(metadataVersion, codec);
+ if (fs.exists(metadataFile)) {
+ return metadataFile;
+ }
+ }
+ }
+
+ return null;
+ }
+
+ private synchronized Pair versionAndMetadata() {
+ return Pair.of(version, currentMetadata);
+ }
+
+ private synchronized void updateVersionAndMetadata(int newVersion, String metadataFile) {
+ // update if the current version is out of date
+ if (version == null || version != newVersion) {
+ this.version = newVersion;
+ this.currentMetadata =
+ checkUUID(currentMetadata, TableMetadataParser.read(io(), metadataFile));
+ }
+ }
+
+ private Path metadataFilePath(int metadataVersion, TableMetadataParser.Codec codec) {
+ return metadataPath("v" + metadataVersion + TableMetadataParser.getFileExtension(codec));
+ }
+
+ private Path oldMetadataFilePath(int metadataVersion, TableMetadataParser.Codec codec) {
+ return metadataPath("v" + metadataVersion + TableMetadataParser.getOldFileExtension(codec));
+ }
+
+ private Path metadataPath(String filename) {
+ return new Path(metadataRoot(), filename);
+ }
+
+ private Path metadataRoot() {
+ return new Path(location, "metadata");
+ }
+
+ private int version(String fileName) {
+ Matcher matcher = VERSION_PATTERN.matcher(fileName);
+ if (!matcher.matches()) {
+ return -1;
+ }
+ String versionNumber = matcher.group(1);
+ try {
+ return Integer.parseInt(versionNumber);
+ } catch (NumberFormatException ne) {
+ return -1;
+ }
+ }
+
+ Path versionHintFile() {
+ return metadataPath(org.apache.iceberg.hadoop.Util.VERSION_HINT_FILENAME);
+ }
+
+ private void writeVersionHint(int versionToWrite) {
+ Path versionHintFile = versionHintFile();
+
+ try {
+ Path tempVersionHintFile = metadataPath(UUID.randomUUID().toString() + "-version-hint.temp");
+ writeVersionToPath(fs, tempVersionHintFile, versionToWrite);
+ fs.delete(versionHintFile, false /* recursive delete */);
+ fs.rename(tempVersionHintFile, versionHintFile);
+ } catch (IOException e) {
+ LOG.warn("Failed to update version hint", e);
+ }
+ }
+
+ private void writeVersionToPath(FileSystem fs, Path path, int versionToWrite) throws IOException {
+ try (FSDataOutputStream out = fs.create(path, false /* overwrite */)) {
+ out.write(String.valueOf(versionToWrite).getBytes(StandardCharsets.UTF_8));
+ }
+ }
+
+ int findVersion() {
+ Path versionHintFile = versionHintFile();
+
+ try (InputStreamReader fsr =
+ new InputStreamReader(fs.open(versionHintFile), StandardCharsets.UTF_8);
+ BufferedReader in = new BufferedReader(fsr)) {
+ return Integer.parseInt(in.readLine().replace("\n", ""));
+
+ } catch (Exception e) {
+ try {
+ if (fs.exists(metadataRoot())) {
+ LOG.warn("Error reading version hint file {}", versionHintFile, e);
+ } else {
+ LOG.debug("Metadata for table not found in directory {}", metadataRoot(), e);
+ return 0;
+ }
+
+ // List the metadata directory to find the version files, and try to recover the max
+ // available version
+ FileStatus[] files =
+ fs.listStatus(
+ metadataRoot(), name -> VERSION_PATTERN.matcher(name.getName()).matches());
+ int maxVersion = 0;
+
+ for (FileStatus file : files) {
+ int currentVersion = version(file.getPath().getName());
+ if (currentVersion > maxVersion && getMetadataFile(currentVersion) != null) {
+ maxVersion = currentVersion;
+ }
+ }
+
+ return maxVersion;
+ } catch (IOException io) {
+ LOG.warn("Error trying to recover version-hint.txt data for {}", versionHintFile, e);
+ return 0;
+ }
+ }
+ }
+
+ private static TableMetadata checkUUID(TableMetadata currentMetadata, TableMetadata newMetadata) {
+ String newUUID = newMetadata.uuid();
+ if (currentMetadata != null && currentMetadata.uuid() != null && newUUID != null) {
+ Preconditions.checkState(
+ newUUID.equals(currentMetadata.uuid()),
+ "Table UUID does not match: current=%s != refreshed=%s",
+ currentMetadata.uuid(),
+ newUUID);
+ }
+ return newMetadata;
+ }
+}
diff --git a/src/main/java/io/lakefs/iceberg/rest/Util.java b/src/main/java/io/lakefs/iceberg/rest/Util.java
new file mode 100644
index 0000000..3eb151f
--- /dev/null
+++ b/src/main/java/io/lakefs/iceberg/rest/Util.java
@@ -0,0 +1,18 @@
+package io.lakefs.iceberg.rest;
+
+import org.apache.commons.lang3.StringUtils;
+
+public class Util {
+
+ private Util() {}
+
+ /**
+ * Given a full lakeFS URI, return the path relative to the repository root.
+ * For example, given lakefs://example-repo/main/a/b/c
, return a/b/c
.
+ */
+ public static String GetPathFromURL(String lakeFSLocation){
+ // return sub-string after lakeFS ref
+ return StringUtils.substring(lakeFSLocation, StringUtils.ordinalIndexOf(lakeFSLocation, "/", 4) + 1);
+ }
+
+}
diff --git a/src/test/java/io/lakefs/iceberg/rest/TestLakeFSCatalogSpark.java b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSCatalogSpark.java
new file mode 100644
index 0000000..e0c553e
--- /dev/null
+++ b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSCatalogSpark.java
@@ -0,0 +1,97 @@
+package io.lakefs.iceberg.rest;
+
+import io.lakefs.clients.sdk.ApiException;
+import io.lakefs.clients.sdk.model.RepositoryCreation;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.iceberg.exceptions.NamespaceNotEmptyException;
+import org.apache.spark.SparkConf;
+import org.apache.spark.sql.*;
+import org.apache.spark.sql.types.DataTypes;
+import org.apache.spark.sql.types.StructField;
+import org.apache.spark.sql.types.StructType;
+import org.junit.Assert;
+import org.junit.Test;
+import io.lakefs.LakeFSClient;
+
+import java.io.IOException;
+import java.util.Collections;
+import java.util.UUID;
+
+public class TestLakeFSCatalogSpark {
+ @Test
+ public void testLakeFSWithSpark() throws AnalysisException, IOException, ApiException {
+ String awsAccessKey = System.getenv("AWS_ACCESS_KEY_ID");
+ String awsSecretKey = System.getenv("AWS_SECRET_ACCESS_KEY");
+ String storageNamespace = System.getenv("STORAGE_NAMESPACE");
+
+ Configuration lakefsConf = new Configuration();
+ lakefsConf.set("fs.lakefs.access.key", "AKIAIOSFDNN7EXAMPLEQ");
+ lakefsConf.set("fs.lakefs.secret.key", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY");
+ LakeFSClient lfsClient = new LakeFSClient("lakefs", lakefsConf);
+ RepositoryCreation repoCreation = new RepositoryCreation();
+ repoCreation.setName(String.format("test-spark-%s", UUID.randomUUID()));
+ repoCreation.setStorageNamespace(String.format("%s/%s", storageNamespace, repoCreation.getName()));
+ lfsClient.getRepositoriesApi().createRepository(repoCreation).execute();
+ String catalog = "lakefs";
+ String db = "db";
+ String table = "mytable";
+ String repo = repoCreation.getName();
+ String mainBranch = "main";
+
+ SparkConf conf = new SparkConf();
+ conf.set("spark.sql.catalog.lakefs", "org.apache.iceberg.spark.SparkCatalog");
+ conf.set("spark.sql.catalog.lakefs.catalog-impl", "io.lakefs.iceberg.rest.LakeFSCatalog");
+ conf.set("spark.sql.catalog.lakefs.warehouse", "lakefs://example-repo");
+ conf.set("spark.sql.extensions", "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions");
+
+ conf.set("spark.hadoop.fs.s3a.access.key", awsAccessKey);
+ conf.set("spark.hadoop.fs.s3a.secret.key", awsSecretKey);
+ conf.set("spark.hadoop.fs.s3a.path.style.access", "true");
+ conf.set("spark.hadoop.fs.lakefs.impl", "io.lakefs.LakeFSFileSystem");
+ conf.set("spark.hadoop.fs.lakefs.access.key", "AKIAIOSFDNN7EXAMPLEQ");
+ conf.set("spark.hadoop.fs.lakefs.secret.key", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY");
+ conf.set("spark.hadoop.fs.lakefs.endpoint", "http://localhost:8000/api/v1");
+ conf.set("spark.sql.catalog.lakefs.default-namespace", String.format("%s.%s", repo, mainBranch));
+
+ SparkSession spark = SparkSession.builder().master("local").config(conf).getOrCreate();
+
+ // Tests create namespace
+ spark.sql(String.format("CREATE SCHEMA IF NOT EXISTS %s.`%s`.%s.%s", catalog, repo, mainBranch, db));
+
+ // Test load namespace metadata
+ spark.sql(String.format("DESCRIBE SCHEMA %s.`%s`.%s.%s", catalog, repo, mainBranch, db)).show();
+ spark.sql(String.format("DESCRIBE SCHEMA %s.`%s`.%s", catalog, repo, mainBranch)).show();
+
+ // Tests create table
+ spark.sql(String.format("CREATE TABLE IF NOT EXISTS %s.`%s`.%s.%s.%s (val int) OPTIONS ('format-version'=2)", catalog,repo, mainBranch, db, table));
+ StructType schema = new StructType(new StructField[]{
+ DataTypes.createStructField("val", DataTypes.IntegerType, false)
+ });
+
+ Row row = RowFactory.create(10);
+ Dataset df = spark.createDataFrame(Collections.singletonList(row), schema).toDF("val");
+
+ // Tests TableOperations commit
+ df.writeTo(String.format("%s.`%s`.%s.%s.%s", catalog, repo, mainBranch, db, table)).append();
+
+ // Test list tables
+ spark.sql(String.format("USE %s.`%s`.`%s`.%s", catalog, repo, mainBranch, db));
+ spark.sql("SHOW TABLES").show(20, false);
+
+ // Tests load table
+ spark.sql(String.format("SELECT * FROM %s.`%s`.%s.%s.%s", catalog, repo, mainBranch, db, table)).show();
+
+ spark.sql(String.format("CREATE SCHEMA IF NOT EXISTS %s.`%s`.%s.test1", catalog, repo, mainBranch));
+ spark.sql(String.format("CREATE SCHEMA IF NOT EXISTS %s.`%s`.%s.test2", catalog, repo, mainBranch));
+
+ spark.sql("SHOW CURRENT NAMESPACE").show(20, false);
+
+ // Try to delete non-empty namespace
+ Assert.assertThrows(NamespaceNotEmptyException.class, () ->
+ spark.sql(String.format("DROP SCHEMA %s.`%s`.%s.%s", catalog, repo, mainBranch, db)));
+
+ // Delete Table and schema
+ spark.sql(String.format("DROP TABLE %s.`%s`.%s.%s.%s", catalog,repo, mainBranch, db, table));
+ spark.sql(String.format("DROP SCHEMA %s.`%s`.%s.%s", catalog, repo, mainBranch, db));
+ }
+}
diff --git a/src/test/java/io/lakefs/iceberg/rest/TestLakeFSFileIO.java b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSFileIO.java
new file mode 100644
index 0000000..78cc13a
--- /dev/null
+++ b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSFileIO.java
@@ -0,0 +1,37 @@
+package io.lakefs.iceberg.rest;
+
+import io.lakefs.FSTestBase;
+import org.apache.iceberg.io.InputFile;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestLakeFSFileIO extends FSTestBase {
+
+ private LakeFSFileIO lakeFSFileIO;
+ private final String lakeFSRepo = "myLakeFSRepo";
+ private final String lakeFSRef = "myLakeFSRef";
+
+
+ @Before
+ public void setUp(){
+ lakeFSFileIO = new LakeFSFileIO(lakeFSRepo, lakeFSRef, conf);
+ }
+
+ @Test
+ public void testNewInputFile() {
+ // Test the behavior of newInputFile method
+ String relativePath = "path/in/repo";
+ String absolutePath = String.format("lakefs://%s/%s/other/path/in/repo", lakeFSRepo, lakeFSRef);
+ String wrongRef = String.format("lakefs://%s/wrongRef/some/path", lakeFSRepo);
+ String wrongRepo = String.format("lakefs://wrongRepo/%s/some/path", lakeFSRef);
+ String wrongSchema = "s3a://otherBucket/otherPath";
+ InputFile relativeInputFile = lakeFSFileIO.newInputFile(relativePath);
+ Assert.assertEquals("path/in/repo", relativeInputFile.location());
+ InputFile absoluteInputFile = lakeFSFileIO.newInputFile(absolutePath);
+ Assert.assertEquals("other/path/in/repo", absoluteInputFile.location());
+ Assert.assertThrows(IllegalArgumentException.class, () -> lakeFSFileIO.newInputFile(wrongRef));
+ Assert.assertThrows(IllegalArgumentException.class, () -> lakeFSFileIO.newInputFile(wrongRepo));
+ Assert.assertThrows(IllegalArgumentException.class, () -> lakeFSFileIO.newInputFile(wrongSchema));
+ }
+}
diff --git a/src/test/java/io/lakefs/iceberg/rest/TestLakeFSTableOperations.java b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSTableOperations.java
new file mode 100644
index 0000000..6fbfd61
--- /dev/null
+++ b/src/test/java/io/lakefs/iceberg/rest/TestLakeFSTableOperations.java
@@ -0,0 +1,61 @@
+package io.lakefs.iceberg.rest;
+
+import io.lakefs.LakeFSClient;
+import io.lakefs.clients.sdk.ApiException;
+import io.lakefs.clients.sdk.model.RepositoryCreation;
+import org.apache.hadoop.conf.Configuration;
+import org.apache.iceberg.*;
+import org.apache.iceberg.exceptions.AlreadyExistsException;
+import org.apache.iceberg.relocated.com.google.common.collect.ImmutableMap;
+import org.apache.iceberg.types.Types;
+import org.junit.Assert;
+import org.junit.Before;
+import org.junit.Test;
+
+import java.io.IOException;
+import java.util.UUID;
+
+public class TestLakeFSTableOperations {
+ private String lakeFSRepo = "myrepo";
+ private String lakeFSRef = "main";
+ private String baseUrl ="";
+ private Configuration conf;
+
+ private LakeFSFileIO lakeFSFileIO;
+
+ @Before
+ public void setUp() throws IOException, ApiException {
+ String awsAccessKey = System.getenv("AWS_ACCESS_KEY_ID");
+ String awsSecretKey = System.getenv("AWS_SECRET_ACCESS_KEY");
+ String storageNamespace = System.getenv("STORAGE_NAMESPACE");
+
+ conf = new Configuration();
+ conf.set("fs.lakefs.access.key", "AKIAIOSFDNN7EXAMPLEQ");
+ conf.set("fs.lakefs.secret.key", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY");
+ conf.set("fs.lakefs.endpoint", "http://localhost:8000/api/v1");
+ conf.set("fs.s3a.access.key", awsAccessKey);
+ conf.set("fs.s3a.secret.key", awsSecretKey);
+
+ Configuration lakefsConf = new Configuration();
+ lakefsConf.set("fs.lakefs.access.key", "AKIAIOSFDNN7EXAMPLEQ");
+ lakefsConf.set("fs.lakefs.secret.key", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY");
+ LakeFSClient lfsClient = new LakeFSClient("lakefs", lakefsConf);
+ RepositoryCreation repoCreation = new RepositoryCreation();
+ lakeFSRepo = String.format("myrepo-%s", UUID.randomUUID());
+ repoCreation.setName(lakeFSRepo);
+ baseUrl = String.format("lakefs://%s/%s", lakeFSRepo, lakeFSRef);
+ repoCreation.setStorageNamespace(String.format("%s/%s", storageNamespace, repoCreation.getName()));
+ lfsClient.getRepositoriesApi().createRepository(repoCreation).execute();
+ lakeFSFileIO = new LakeFSFileIO(lakeFSRepo, lakeFSRef, conf);
+ }
+
+ @Test
+ public void testNewInputFile() {
+ Schema schema = new Schema(Types.NestedField.optional(0, "f1", new Types.BooleanType()));
+ PartitionSpec spec = PartitionSpec.builderFor(schema).build();
+ TableMetadata md = TableMetadata.newTableMetadata(
+ schema, spec, SortOrder.unsorted(), "my_location", ImmutableMap.of());
+ TableMetadataParser.write(md, lakeFSFileIO.newOutputFile(baseUrl + "/mytable/v1.metadata.json"));
+ Assert.assertThrows(AlreadyExistsException.class,() -> TableMetadataParser.write(md, lakeFSFileIO.newOutputFile(baseUrl + "/mytable/v1.metadata.json")));
+ }
+}
diff --git a/tests/README.md b/tests/README.md
new file mode 100644
index 0000000..5b9fa85
--- /dev/null
+++ b/tests/README.md
@@ -0,0 +1,48 @@
+# lakeFS Iceberg Tests
+
+This package consists of the integration tests for the lakeFS Iceberg REST library.
+Please make sure to add / modify tests whenever pushing new code to the SDK.
+
+These tests can be run against a lakeFS instance with the following environment configuration:
+
+## Python Tests Configuration
+
+### Export lakectl environment variables
+
+```sh
+export LAKECTL_CREDENTIALS_ACCESS_KEY_ID=
+export LAKECTL_CREDENTIALS_SECRET_ACCESS_KEY=
+export LAKECTL_SERVER_ENDPOINT_URL=
+```
+
+### Export test environment variables
+
+```sh
+export STORAGE_NAMESPACE=
+```
+
+### Create a venv and install dependencies
+
+From the `tests` folder:
+
+```sh
+python3 -m venv
+source /bin/activate
+pip install -r requirements pylint
+```
+
+### Run Tests
+
+```sh
+pylint tests
+```
+
+## Java Tests Configuration
+
+### Export test environment variables
+
+```sh
+export AWS_ACCESS_KEY_ID:
+export AWS_SECRET_ACCESS_KEY:
+export STORAGE_NAMESPACE=
+```
\ No newline at end of file
diff --git a/tests/conftest.py b/tests/conftest.py
new file mode 100644
index 0000000..c388608
--- /dev/null
+++ b/tests/conftest.py
@@ -0,0 +1,79 @@
+import os
+import uuid
+import time
+from pyspark.sql import SparkSession
+from pyspark.conf import SparkConf
+from pyspark.sql.types import StructType, StructField, StringType, IntegerType
+import pytest
+
+from lakefs import Client, Repository
+
+TEST_STORAGE_NAMESPACE_BASE = os.getenv("STORAGE_NAMESPACE", "").rstrip("/")
+
+
+def get_storage_namespace():
+ return f"{TEST_STORAGE_NAMESPACE_BASE}/{uuid.uuid1()}"
+
+
+def _setup_repo(namespace, default_branch):
+ clt = Client()
+ repo_name = "test-iceberg-catalog" + str(int(time.time()))
+ repo = Repository(repo_name, clt)
+ repo.create(storage_namespace=namespace, default_branch=default_branch)
+ return clt, repo
+
+
+def _get_data(spark):
+ data_set = [(1, "James", "Smith", 32, "M"),
+ (2, "Michael","Rose", 35, "M"),
+ (3, "Robert", "Williams", 41, "M"),
+ (4, "Maria", "Jones", 36, "F"),
+ (5, "Jen","Brown", 44, "F"),
+ (6, "Monika","Geller", 31, "F")]
+
+ schema = StructType([
+ StructField("id", StringType(), True),
+ StructField("firstname", StringType(), True),
+ StructField("lastname", StringType(), True),
+ StructField("age", IntegerType(), True),
+ StructField("gender", StringType(), True),
+ ])
+ df = spark.createDataFrame(data=data_set, schema=schema)
+ return df
+
+
+@pytest.fixture(scope="session")
+def setup_repo(spark, default_branch="main"):
+ clt, repo = _setup_repo(get_storage_namespace(), default_branch)
+ main = repo.branch("main")
+ df = _get_data(spark)
+ df.write.saveAsTable(f"lakefs.`{repo.id}`.main.company.workers")
+ main.commit(message="Initial data load")
+ return clt, repo
+
+
+@pytest.fixture(scope="session")
+def spark():
+ access_key = os.getenv("AWS_ACCESS_KEY_ID", "")
+ secret_key = os.getenv("AWS_SECRET_ACCESS_KEY", "")
+ spark_config = SparkConf()
+ spark_config.set("spark.sql.catalog.lakefs", "org.apache.iceberg.spark.SparkCatalog")
+ spark_config.set("spark.sql.catalog.lakefs.catalog-impl", "io.lakefs.iceberg.rest.LakeFSCatalog")
+ spark_config.set("spark.sql.catalog.lakefs.warehouse", f"lakefs://")
+ spark_config.set("spark.sql.catalog.lakefs.cache-enabled", "false")
+ spark_config.set("spark.sql.extensions", "org.apache.iceberg.spark.extensions.IcebergSparkSessionExtensions")
+ spark_config.set("spark.hadoop.fs.s3a.access.key", access_key)
+ spark_config.set("spark.hadoop.fs.s3a.secret.key", secret_key)
+ spark_config.set("spark.hadoop.fs.lakefs.impl", "io.lakefs.LakeFSFileSystem")
+ spark_config.set("spark.hadoop.fs.lakefs.access.key", "AKIAIOSFDNN7EXAMPLEQ")
+ spark_config.set("spark.hadoop.fs.lakefs.secret.key", "wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY")
+ spark_config.set("spark.hadoop.fs.lakefs.endpoint", "http://localhost:8000/api/v1")
+ spark_config.set("spark.jars.packages",
+ "io.lakefs:lakefs-iceberg-rest:0.1.0-SNAPSHOT,"
+ "org.apache.iceberg:iceberg-spark-runtime-3.3_2.12:1.4.3,"
+ "org.apache.hadoop:hadoop-aws:3.3.4"
+ )
+
+ spark = SparkSession.builder.config(conf=spark_config).getOrCreate()
+ yield spark
+ spark.stop()
diff --git a/tests/data-sets/film_permits.csv b/tests/data-sets/film_permits.csv
new file mode 100644
index 0000000..be692cb
--- /dev/null
+++ b/tests/data-sets/film_permits.csv
@@ -0,0 +1,13631 @@
+EventID,EventType,StartDateTime,EndDateTime,EnteredOn,EventAgency,ParkingHeld,Borough,CommunityBoard(s),PolicePrecinct(s),Category,SubCategoryName,Country,ZipCode(s)
+691875,Shooting Permit,01/20/2023 06:00:00 AM,01/20/2023 10:00:00 PM,01/18/2023 02:34:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+691797,Shooting Permit,01/20/2023 09:00:00 AM,01/21/2023 01:00:00 AM,01/18/2023 11:48:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between BROOK AVENUE and EAST 162 STREET, BROOK AVENUE between 3 AVENUE and EAST 161 STREET, BROOK AVENUE between 3 AVENUE and EAST 156 STREET",Bronx,"1, 3","40, 42",Television,Episodic series,United States of America,10451
+691774,Shooting Permit,01/20/2023 11:30:00 AM,01/21/2023 01:00:00 AM,01/18/2023 10:47:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+691762,Shooting Permit,01/20/2023 02:30:00 AM,01/20/2023 11:00:00 PM,01/18/2023 09:57:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, CENTER BOULEVARD between 49 AVENUE and 47 AVENUE, 47 ROAD between DEAD END and FIFTH STREET, 48 AVENUE between VERNON BOULEVARD and 5 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11109, 11222"
+691754,Shooting Permit,01/20/2023 01:00:00 PM,01/21/2023 03:00:00 AM,01/18/2023 09:00:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between MADISON AVENUE and 5 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 55 STREET between MADISON AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 56 STREET, MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 54 STREET and EAST 57 STREET, EAST 56 STREET between MADISON AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10022"
+691750,Shooting Permit,01/20/2023 06:00:00 AM,01/20/2023 10:00:00 PM,01/18/2023 08:49:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 71 STREET between RIVERSIDE BOULEVARD and WEST END AVENUE, WEST 60 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 70 STREET between RIVERSIDE BOULEVARD and WEST END AVENUE, RIVERSIDE BOULEVARD between WEST 71 STREET and WEST 69 STREET, WEST 72 STREET between RIVERSIDE BOULEVARD and WEST END AVENUE, WEST 72 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 61 STREET and WEST 63 STREET, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, AMSTERDAM AVENUE between WEST 59 STREET and WEST 62 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10069"
+691747,Shooting Permit,01/20/2023 10:00:00 AM,01/21/2023 12:00:00 AM,01/18/2023 07:44:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, HUMBOLDT STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+691708,DCAS Prep/Shoot/Wrap Permit,01/19/2023 10:00:00 AM,01/19/2023 10:00:00 PM,01/17/2023 08:25:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between READE STREET and DUANE STREET, READE STREET between CENTRE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+691702,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 12:00:00 PM,01/17/2023 08:02:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between BROADWAY and CHURCH STREET, BARCLAY STREET between BROADWAY and CHURCH STREET, CHURCH STREET between MURRAY STREET and PARK PLACE",Manhattan,1,1,Television,Episodic series,United States of America,10007
+691698,Shooting Permit,01/20/2023 09:30:00 AM,01/21/2023 01:00:00 AM,01/17/2023 07:30:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 82 STREET between LEXINGTON AVENUE and PARK AVENUE, 3 AVENUE between EAST 82 STREET and EAST 84 STREET, EAST 84 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 84 STREET and EAST 85 STREET, LEXINGTON AVENUE between EAST 81 STREET and EAST 83 STREET, EAST 82 STREET between 2 AVENUE and 3 AVENUE, EAST 83 STREET between 2 AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10028
+691681,Shooting Permit,01/20/2023 06:00:00 AM,01/20/2023 11:59:00 PM,01/17/2023 05:15:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and GREENPOINT AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREENPOINT AVENUE between JEWEL STREET and NEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691656,Rigging Permit,01/20/2023 09:00:00 AM,01/20/2023 06:30:00 PM,01/17/2023 03:56:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+691633,Shooting Permit,01/19/2023 10:00:00 AM,01/20/2023 02:00:00 AM,01/17/2023 02:34:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 18 STREET between 7 AVENUE and 5 AVENUE, GREENWICH AVENUE between WEST 12 STREET and 7 AVENUE, WEST 12 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4, 5","13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+691613,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 08:00:00 PM,01/17/2023 01:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691596,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 05:00:00 PM,01/17/2023 12:31:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 7 AVENUE, 2 AVENUE between 34 STREET and 33 STREET",Manhattan,"5, 7","13, 72",Television,Episodic series,United States of America,"10001, 11232"
+691584,Shooting Permit,01/19/2023 08:00:00 AM,01/19/2023 11:00:00 PM,01/17/2023 11:45:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 5 STREET and BROADWAY, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, WYTHE AVENUE between SOUTH 6 STREET and BROADWAY, BROADWAY between KENT AVENUE and BERRY STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+691582,Shooting Permit,01/19/2023 09:00:00 AM,01/20/2023 01:00:00 AM,01/17/2023 11:36:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between ATTORNEY STREET and PITT STREET, GRAND STREET between PITT STREET and COLUMBIA STREET, WILLETT STREET between GRAND STREET and DELANCEY STREET, EAST BROADWAY between CLINTON STREET and GRAND STREET",Manhattan,3,7,Television,Episodic series,United States of America,10002
+691581,Shooting Permit,01/20/2023 09:00:00 AM,01/20/2023 11:00:00 PM,01/17/2023 11:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+691563,Shooting Permit,01/19/2023 02:00:00 PM,01/20/2023 03:00:00 AM,01/17/2023 10:30:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 2 STREET between 1 AVENUE and AVENUE A, EAST 2 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 2 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST HOUSTON STREET and EAST 2 STREET, EAST 3 STREET between 1 AVENUE and AVENUE A, EAST 3 STREET between AVENUE A and AVENUE B, EAST 1 STREET between 1 AVENUE and EAST HOUSTON STREET, EAST HOUSTON STREET between EAST 1 STREET and AVENUE A, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+691551,Shooting Permit,01/19/2023 08:00:00 AM,01/19/2023 11:00:00 PM,01/17/2023 09:48:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 91 STREET and WEST 85 STREET, WEST 87 STREET between BROADWAY and WEST END AVENUE, WEST 86 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 87 STREET and WEST 86 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+691533,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 09:00:00 PM,01/17/2023 09:00:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between MADISON AVENUE and 5 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 55 STREET between LEXINGTON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 56 STREET and EAST 55 STREET, MADISON AVENUE between EAST 55 STREET and EAST 54 STREET, PARK AVENUE between EAST 57 STREET and EAST 54 STREET, EAST 56 STREET between MADISON AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10022"
+691531,Shooting Permit,01/19/2023 10:00:00 AM,01/20/2023 12:00:00 AM,01/17/2023 08:53:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","MALBA DRIVE between NORTH DRIVE and BOULEVARD, NORTH DRIVE between MALBA DRIVE and PARSONS BOULEVARD, NORTH DRIVE between BOULEVARD and MALBA DRIVE, CENTER DRIVE between BOULEVARD and MALBA DRIVE, CENTER DRIVE between MALBA DRIVE and PARSONS BOULEVARD, MALBA DRIVE between 9 AVE and SOUTH DRIVE, 15 AVENUE between 138 STREET and 143 STREET, MALBA DRIVE between NORTH DRIVE and CENTER DRIVE",Queens,7,109,Television,Cable-episodic,United States of America,11357
+691529,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 02:00:00 PM,01/17/2023 08:51:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+691524,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 10:00:00 PM,01/17/2023 08:06:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST MARKS PLACE between FIRST AVENUE and SECOND AVENUE, SECOND AVENUE between EAST SEVENTH STREET and EAST TENTH STREET, AVENUE A between EAST SEVENTH STREET and EAST TENTH STREET, EAST NINTH STREET between FIRST AVENUE and SECOND AVENUE, EAST SEVENTH STREET between FIRST AVENUE and SECOND AVENUE",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+691451,Shooting Permit,01/19/2023 03:00:00 PM,01/19/2023 10:00:00 PM,01/16/2023 01:05:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between BROADWAY and CHURCH STREET, BARCLAY STREET between BROADWAY and CHURCH STREET, CHURCH STREET between MURRAY STREET and PARK PLACE, BROADWAY between MURRAY STREET and WARREN STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+691446,Shooting Permit,01/20/2023 06:00:00 AM,01/20/2023 09:00:00 PM,01/16/2023 12:27:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK PLACE between MORNINGSIDE AVENUE and WEST 124 STREET, WEST 124 STREET between MORNINGSIDE AVENUE and SAINT NICHOLAS AVENUE, HANCOCK PLACE between MORNINGSIDE AVENUE and AMSTERDAM AVE, MORNINGSIDE AVENUE between WEST 122 STREET and WEST 124 STREET, WEST 123 STREET between MORNINGSIDE AVENUE and SAINT NICHOLAS AVENUE, WEST 121 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, LENOX AVENUE between WEST 120 STREET and WEST 122 STREET, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 122 STREET",Manhattan,"10, 11, 9","25, 26, 28",Commercial,Commercial,United States of America,10027
+691445,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 09:00:00 PM,01/16/2023 12:27:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between WEST 13 STREET and GANSEVOORT STREET, WEST 13 STREET between HUDSON STREET and WEST 4 STREET, GANSEVOORT STREET between HUDSON STREET and WEST 4 STREET, WEST 4 STREET between WEST 13 STREET and HORATIO STREET, HORATIO STREET between HUDSON STREET and WEST 4 STREET, WEST 4 STREET between WEST 11 STREET and PERRY STREET, PERRY STREET between WEST 4 STREET and BLEECKER STREET, PERRY STREET between WEST 4 STREET and WAVERLY PLACE, WEST 11 STREET between WEST 4 STREET and WAVERLY PLACE, WEST 11 STREET between WEST 4 STREET and BLEECKER STREET, BLEECKER STREET between WEST 11 STREET and BANK STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+691137,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 09:00:00 PM,01/13/2023 04:09:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 44 AVENUE and 45 AVENUE, 44 DRIVE between 5 STREET and VERNON BOULEVARD, 44 DRIVE between DEAD END and 5 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+691130,Shooting Permit,01/20/2023 12:00:00 PM,01/21/2023 02:00:00 AM,01/13/2023 03:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE,Queens,"5, 6, 82, 9","102, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+691121,Shooting Permit,01/20/2023 07:00:00 AM,01/20/2023 09:00:00 PM,01/13/2023 03:40:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between WEIRFIELD STREET and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and JEFFERSON STREET, HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+691113,Shooting Permit,01/19/2023 09:00:00 AM,01/20/2023 12:00:00 AM,01/13/2023 03:31:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE, FRANKLIN STREET between NOBLE STREET and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, NOBLE STREET between WEST STREET and FRANKLIN STREET, MILTON STREET between FRANKLIN STREET and MANHATTAN AVENUE, NOBLE STREET between FRANKLIN STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+691109,Shooting Permit,01/20/2023 10:00:00 AM,01/21/2023 01:00:00 AM,01/13/2023 03:22:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691106,Shooting Permit,01/20/2023 12:00:00 PM,01/20/2023 11:00:00 PM,01/13/2023 03:15:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 9 AVENUE and 8 AVENUE, WEST 22 STREET between 9 AVENUE and 8 AVENUE, WEST 21 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 23 STREET and WEST 21 STREET, 9 AVENUE between WEST 23 STREET and WEST 22 STREET, 9 AVENUE between WEST 22 STREET and WEST 21 STREET, WEST 22 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 10 AVENUE and 8 AVENUE, WEST 24 STREET between 9 AVENUE and 8 AVENUE, BROADWAY between WEST 31 STREET and WEST 30 STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, WEST 30 STREET between 6 AVENUE and 5 AVENUE, WEST 29 STREET between 6 AVENUE and BROADWAY, WEST 28 STREET between 6 AVENUE and BROADWAY, WEST 27 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 29 STREET and WEST 27 STREET, WEST 30 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5, 6","10, 13, 14",Television,Episodic series,United States of America,"10001, 10010, 10011"
+691097,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 11:00:00 PM,01/13/2023 02:31:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691095,Shooting Permit,01/19/2023 01:00:00 PM,01/20/2023 02:00:00 AM,01/13/2023 02:20:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 75 AVENUE and 75 ROAD, 75 AVENUE between QUEENS BOULEVARD and AUSTIN STREET, 75 ROAD between QUEENS BOULEVARD and AUSTIN STREET, 76 AVENUE between QUEENS BOULEVARD and AUSTIN STREET, QUEENS BOULEVARD between 75 ROAD and 77 AVENUE",Queens,6,112,Television,Episodic series,United States of America,11375
+691093,Shooting Permit,01/19/2023 08:00:00 AM,01/19/2023 10:00:00 PM,01/13/2023 02:15:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 STREET between HUNTERS POINT AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+691091,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 11:00:00 PM,01/13/2023 02:09:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691089,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 11:00:00 PM,01/13/2023 02:03:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691053,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 10:00:00 PM,01/13/2023 01:03:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BANKER STREET between CALYER STREET and NORMAN AVENUE, MESEROLE AVENUE between FRANKLIN STREET and BANKER STREET, FRANKLIN STREET between NORTH 14 STREET and MESEROLE AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+691033,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 09:00:00 PM,01/13/2023 12:01:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","27 STREET between 51 AVENUE and BORDEN AVENUE, 27 STREET between 51 AVENUE and 49 AVENUE, 51 AVENUE between 27 STREET and 25 STREET, 25 STREET between BORDEN AVENUE and 51 AVENUE, BORDEN AVENUE between 25 STREET and REVIEW AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+691026,Shooting Permit,01/20/2023 08:00:00 AM,01/20/2023 10:00:00 PM,01/13/2023 11:47:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 46 STREET, EAST 46 STREET between 3 AVENUE and 2 AVENUE, EAST 47 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10167, 10171, 10172, 10177"
+691019,Shooting Permit,01/18/2023 09:00:00 AM,01/18/2023 05:00:00 PM,01/13/2023 11:13:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+691013,Shooting Permit,01/20/2023 07:00:00 AM,01/20/2023 09:00:00 PM,01/13/2023 10:11:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+691006,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 11:00:00 PM,01/13/2023 09:17:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+691004,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 07:00:00 PM,01/13/2023 09:00:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 83 STREET and EAST 84 STREET, PARK AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 84 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 85 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 83 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 79 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+690919,Shooting Permit,01/20/2023 07:00:00 AM,01/20/2023 09:00:00 PM,01/12/2023 04:48:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+690916,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 10:00:00 PM,01/12/2023 04:43:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK ST between LEONARD ST and FRANKLIN ST, LEONARD STREET between WEST BROADWAY and HUDSON STREET, LEONARD STREET between WEST BROADWAY and CHURCH STREET, BEACH STREET between VARICK STREET and WEST BROADWAY, WEST BROADWAY between BEACH STREET and NORTH MOORE STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, VARICK ST between NORTH MOORE STREET and LEONARD ST, LEONARD STREET between WEST BROADWAY and HUDSON STREET, HUDSON STREET between LEONARD STREET and WORTH STREET, 6 AVENUE between LISPENARD STREET and CHURCH STREET, WALKER STREET between 6 AVENUE and BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10013
+690895,Shooting Permit,01/18/2023 04:00:00 PM,01/19/2023 04:00:00 AM,01/12/2023 03:36:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between BEARD STREET and REED STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, VAN BRUNT STREET between REED STREET and DEAD END, VAN BRUNT STREET between REED STREET and BEARD STREET, VAN BRUNT STREET between BEARD STREET and VAN DYKE STREET, BEARD STREET between VAN BRUNT STREET and DWIGHT STREET, RICHARDS STREET between BEARD STREET and COFFEY STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+690894,Theater Load in and Load Outs,01/19/2023 12:01:00 AM,01/20/2023 06:00:00 AM,01/12/2023 03:31:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+690858,Shooting Permit,01/18/2023 10:00:00 AM,01/19/2023 02:00:00 AM,01/12/2023 01:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 46 STREET between 10 AVENUE and 11 AVENUE, WEST 49 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 46 STREET and WEST 50 STREET, WEST 47 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 46 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,"10019, 10036"
+690855,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 08:00:00 PM,01/12/2023 01:41:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10018
+690850,Shooting Permit,01/17/2023 10:00:00 AM,01/18/2023 01:00:00 AM,01/12/2023 01:34:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690804,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 11:00:00 PM,01/12/2023 11:09:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+690787,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 10:00:00 PM,01/12/2023 10:21:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+690785,Theater Load in and Load Outs,01/20/2023 12:01:00 AM,01/20/2023 11:59:00 PM,01/12/2023 10:11:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 56 STREET and WEST 57 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+690780,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 09:00:00 PM,01/12/2023 09:58:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+690769,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 07:00:00 PM,01/12/2023 09:02:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 83 STREET and EAST 84 STREET, PARK AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 84 STREET between MADISON AVENUE and PARK AVENUE, EAST 85 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 83 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, MADISON AVENUE between EAST 79 STREET and EAST 75 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 79 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+690764,Shooting Permit,01/15/2023 02:00:00 AM,01/15/2023 01:00:00 PM,01/12/2023 06:27:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+690763,Shooting Permit,01/14/2023 02:00:00 AM,01/14/2023 01:00:00 PM,01/12/2023 06:24:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+690712,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 10:00:00 PM,01/11/2023 04:53:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between JEWEL STREET and MOULTRIE, NORMAN AVENUE between NORTH HENRY STREET and MONITOR STREET, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+690709,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 09:00:00 PM,01/11/2023 04:45:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between BLEECKER STREET and MINETTA LANE, 6 AVENUE between WEST 3 STREET and WAVERLY PLACE, EAST 13 STREET between 5 AVENUE and UNIVERSITY PLACE, 6 AVENUE between WAVERLY PLACE and WEST 8 STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE SOUTH between MACDOUGAL STREET and SULLIVAN STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 8 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between WEST 8 STREET and WEST 10 STREET, WEST 8 STREET between 6 AVENUE and 5 AVENUE, WEST 9 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 13 STREET and WEST 11 STREET, 5 AVENUE between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 6 AVENUE and 5 AVENUE, GREENWICH AVENUE between CHRISTOPHER STREET and WEST 10 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011, 10012, 10014"
+690699,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 09:00:00 PM,01/11/2023 04:10:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between VERNON BOULEVARD and JACKSON AVENUE, 50 AVENUE between 5 STREET and VERNON BOULEVARD, 51 AVENUE between 2 STREET and VERNON BOULEVARD, 5 STREET between BORDEN AVENUE and 50 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,11101
+690677,Shooting Permit,01/14/2023 02:00:00 AM,01/15/2023 01:00:00 PM,01/11/2023 02:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 49 STREET and EAST 46 STREET, EAST 91 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 91 STREET and EAST 92 STREET, 1 AVENUE between EAST 91 STREET and EAST 92 STREET, EAST 46 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 47 STREET, EAST 45 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"11, 2, 6, 8","108, 114, 13, 17, 19, 23, 25",Film,Feature,United States of America,"10009, 10010, 10016, 10017, 10022, 10029, 10035, 10044, 10065, 10128, 11101"
+690658,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 09:00:00 PM,01/11/2023 01:42:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+690647,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 09:00:00 PM,01/11/2023 01:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between AVENUE H and GLENWOOD ROAD, AVENUE H between EAST 18 STREET and EAST 19 STREET, AVENUE H between EAST 19 STREET and OCEAN AVENUE",Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+690644,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 09:00:00 PM,01/11/2023 01:05:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE H between EAST 19 STREET and EAST 18 STREET, AVENUE H between EAST 19 STREET and OCEAN AVENUE",Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+690623,Theater Load in and Load Outs,01/20/2023 06:00:00 AM,01/22/2023 06:00:00 AM,01/11/2023 12:10:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+690608,Shooting Permit,01/18/2023 11:00:00 AM,01/18/2023 11:30:00 PM,01/11/2023 11:34:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 37 STREET and EAST 36 STREET, EAST 37 STREET between 1 AVENUE and FDR DRIVE, EAST 36 STREET between TUNNEL APPROACH STREET and FDR DRIVE, EAST 35 STREET between TUNNEL APPROACH STREET and 1 AVENUE, FIRST AVENUE between EAST 38 STREET and EAST 37 STREET, EAST 37 STREET between 2 AVENUE and 1 AVENUE, EAST 38 STREET between SECOND AVENUE and 1 AVENUE, KENT STREET between DEAD END and WEST STREET, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, JAVA STREET between DEAD END and WEST STREET",Manhattan,"1, 6","17, 94",Television,Episodic series,United States of America,"10016, 11222"
+690606,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 09:00:00 PM,01/11/2023 11:08:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 10 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 3 STREET, AVENUE A between EAST 3 STREET and EAST 2 STREET, AVENUE A between EAST 2 STREET and EAST HOUSTON STREET, EAST 4 STREET between AVENUE A and AVENUE B, EAST 3 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE A and AVENUE B, EAST 10 STREET between AVENUE A and 1 AVENUE",Manhattan,3,9,Television,Episodic series,United States of America,10009
+690598,Shooting Permit,01/13/2023 07:00:00 AM,01/13/2023 09:00:00 PM,01/11/2023 10:58:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690591,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 11:00:00 PM,01/11/2023 10:47:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WAVERLY PLACE and WEST 3 STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WEST WASHINGTON PLACE between BARROW STREET and 6 AVENUE, WEST 4 STREET between GROVE STREET and BARROW STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10012, 10014"
+690547,Shooting Permit,01/13/2023 06:00:00 AM,01/13/2023 11:00:00 PM,01/11/2023 09:34:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,"14, 2","100, 108",Television,Episodic series,United States of America,"11101, 11697"
+690546,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 08:00:00 PM,01/11/2023 09:34:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+690545,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 08:00:00 PM,01/11/2023 09:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+690542,Shooting Permit,01/12/2023 06:00:00 AM,01/12/2023 08:00:00 PM,01/11/2023 09:23:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, 84 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+690540,Shooting Permit,01/14/2023 12:01:00 AM,01/14/2023 08:30:00 PM,01/11/2023 09:16:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between MAIDEN LANE and PINE STREET, SOUTH END AVENUE between LIBERTY STREET and ALBANY STREET, SOUTH STREET between MAIDEN LANE and JOHN STREET, SOUTH STREET between WALL STREET and PINE STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, MAIDEN LANE between FRONT STREET and WATER STREET, FRONT STREET between MAIDEN LANE and JOHN STREET, SOUTH STREET between OLD SLIP and BROAD STREET, SOUTH STREET between FULTON STREET and JOHN STREET, JOHN STREET between FRONT STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and WALL STREET, WATER STREET between OLD SLIP and WALL STREET",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005, 10038, 10280"
+690534,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 10:00:00 PM,01/11/2023 08:20:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, 8 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 22 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10019"
+690506,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 10:00:00 PM,01/10/2023 08:42:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,WEB,Not Applicable,United States of America,11249
+690446,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 09:00:00 PM,01/10/2023 03:25:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 10 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 3 STREET, AVENUE A between EAST 3 STREET and EAST 2 STREET, WEST 20 STREET between 6 AVENUE and 5 AVENUE, EAST 20 STREET between 5 AVENUE and BROADWAY, PARK AVENUE SOUTH between EAST 26 STREET and EAST 21 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, AVENUE A between EAST 2 STREET and EAST HOUSTON STREET, EAST 4 STREET between AVENUE A and AVENUE B, EAST 3 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE A and AVENUE B, EAST 10 STREET between AVENUE A and 1 AVENUE",Manhattan,"3, 5, 6","13, 9",Television,Episodic series,United States of America,"10003, 10009, 10010, 10011"
+690441,Shooting Permit,01/12/2023 10:00:00 AM,01/13/2023 01:00:00 AM,01/10/2023 03:19:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690436,Shooting Permit,01/13/2023 02:00:00 PM,01/13/2023 07:00:00 PM,01/10/2023 03:01:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+690419,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 09:00:00 PM,01/10/2023 02:04:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690416,Shooting Permit,01/13/2023 06:00:00 AM,01/13/2023 11:00:00 PM,01/10/2023 01:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+690412,Shooting Permit,01/19/2023 06:00:00 AM,01/19/2023 09:00:00 PM,01/10/2023 01:39:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between GRAND STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between MORGAN AVENUE and VANDERVOORT AVENUE",Brooklyn,1,90,Commercial,Commercial,United States of America,11211
+690407,Shooting Permit,01/17/2023 09:00:00 AM,01/17/2023 11:00:00 PM,01/10/2023 01:33:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690395,Shooting Permit,01/19/2023 08:00:00 AM,01/19/2023 10:00:00 PM,01/10/2023 12:54:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+690394,Shooting Permit,01/20/2023 10:00:00 AM,01/20/2023 11:00:00 PM,01/10/2023 12:54:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","30th St between Thomson Ave and 47th Ave, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+690388,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 08:00:00 PM,01/10/2023 12:39:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+690383,Shooting Permit,01/13/2023 08:30:00 AM,01/13/2023 10:30:00 PM,01/10/2023 12:15:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between VERNON BOULEVARD and 21 STREET, 10 STREET between 41 AVENUE and 40 AVENUE, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"1, 4, 5","104, 114, 83",Television,Episodic series,United States of America,"11101, 11237, 11385"
+690379,Shooting Permit,01/13/2023 10:00:00 AM,01/14/2023 12:00:00 AM,01/10/2023 12:01:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Cable-episodic,United States of America,11101
+690373,Shooting Permit,01/13/2023 06:30:00 AM,01/13/2023 08:30:00 PM,01/10/2023 11:43:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 18 STREET and EAST 19 STREET, EAST 18 STREET between PARK AVENUE SOUTH and 5 AVENUE, EAST 19 STREET between 5 AVENUE and BROADWAY",Manhattan,5,13,Commercial,Commercial,United States of America,10003
+690353,Shooting Permit,01/14/2023 08:00:00 AM,01/14/2023 11:00:00 PM,01/10/2023 11:00:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between NORTH HENRY STREET and MONITOR STREET, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690343,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 09:00:00 PM,01/10/2023 10:22:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 119 STREET and WEST 122 STREET, WEST 120 STREET between RIVERSIDE DRIVE and BROADWAY, CLAREMONT AVENUE between WEST 120 STREET and WEST 122 STREET, CLAREMONT AVENUE between WEST 122 STREET and LA SALLE STREET, Riverside Dr W between St CLAIRE PL and 120 Street",Manhattan,9,26,Television,Episodic series,United States of America,"10027, 10115"
+690336,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 05:00:00 PM,01/10/2023 09:27:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between BROADWAY and CHURCH STREET, BARCLAY STREET between BROADWAY and CHURCH STREET, CHURCH STREET between MURRAY STREET and WARREN STREET, CHURCH STREET between MURRAY STREET and PARK PLACE, BROADWAY between MURRAY STREET and WARREN STREET, WORTH STREET between HUDSON STREET and BROADWAY, CHURCH STREET between WORTH STREET and LEONARD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10007, 10013, 10279"
+690331,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 11:00:00 PM,01/10/2023 09:07:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690328,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 09:00:00 PM,01/10/2023 09:04:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 58 STREET and CENTRAL PARK SOUTH, 7 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 58 STREET between 7 AVENUE and 8 AVENUE, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 64","18, 22",Television,Cable-episodic,United States of America,10019
+690327,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 09:00:00 PM,01/10/2023 09:03:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+690326,Shooting Permit,01/12/2023 06:00:00 AM,01/12/2023 11:00:00 PM,01/10/2023 09:02:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690311,Shooting Permit,01/12/2023 06:00:00 AM,01/12/2023 11:00:00 PM,01/10/2023 12:19:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690309,Shooting Permit,01/12/2023 08:00:00 AM,01/12/2023 11:00:00 PM,01/10/2023 12:10:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 10 STREET and 11 STREET, 44 AVENUE between 10 STREET and 11 STREET, 10 STREET between 44 ROAD and 44 DRIVE, 11 STREET between 44 AVENUE and 44 DRIVE, 45 ROAD between 11 STREET and 21 STREET, 21 STREET between 44 ROAD and 45 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+690295,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 09:00:00 PM,01/09/2023 08:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+690268,Theater Load in and Load Outs,01/12/2023 12:01:00 AM,01/13/2023 08:00:00 AM,01/09/2023 06:35:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,28,Theater,Theater,United States of America,10027
+690266,Shooting Permit,01/13/2023 07:00:00 AM,01/13/2023 07:00:00 PM,01/09/2023 06:22:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",NINTH AVENUE between WEST 20 STREET and WEST 22 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+690245,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 11:00:00 PM,01/09/2023 04:28:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690162,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 11:00:00 PM,01/09/2023 01:10:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 7 AVENUE and BROADWAY, WEST 50 STREET between 7 AVENUE and BROADWAY",Manhattan,5,"14, 18",Film,Feature,United States of America,"10018, 10019, 10036"
+690151,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 09:00:00 PM,01/09/2023 12:34:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+690145,Shooting Permit,01/12/2023 06:00:00 AM,01/12/2023 07:00:00 PM,01/09/2023 12:14:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 10 AVENUE and 9 AVENUE, W14TH ST between 10 AVENUE and 9TH AVE, BROADWAY between EAST 18 STREET and EAST 19 STREET, EAST 18 STREET between BROADWAY and 5 AVENUE",Manhattan,"4, 5","10, 13",Commercial,Commercial,United States of America,"10003, 10011, 10014"
+690134,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 11:00:00 PM,01/09/2023 11:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690133,Shooting Permit,01/12/2023 02:00:00 PM,01/13/2023 03:00:00 AM,01/09/2023 11:31:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 2 STREET between 1 AVENUE and AVENUE A, EAST 2 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 2 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST HOUSTON STREET and EAST 2 STREET, EAST 3 STREET between 1 AVENUE and AVENUE A, EAST 3 STREET between AVENUE A and AVENUE B, EAST 1 STREET between 1 AVENUE and EAST HOUSTON STREET, EAST HOUSTON STREET between EAST 1 STREET and AVENUE A, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+690127,Shooting Permit,01/13/2023 07:00:00 AM,01/13/2023 10:00:00 PM,01/09/2023 11:23:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690118,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 11:00:00 PM,01/09/2023 10:59:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+690087,Shooting Permit,01/13/2023 06:00:00 AM,01/13/2023 11:00:00 PM,01/09/2023 09:04:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+690086,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 07:00:00 PM,01/09/2023 09:04:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, 6 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE",Manhattan,"5, 64","18, 22",Television,Cable-episodic,United States of America,10019
+690084,Shooting Permit,01/12/2023 06:00:00 AM,01/12/2023 11:00:00 PM,01/09/2023 09:00:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+690044,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 09:00:00 PM,01/08/2023 04:43:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, BROADWAY between KENT AVENUE and BERRY STREET, SOUTH 5 STREET between KENT AVENUE and BEDFORD AVENUE, KENT AVENUE between SOUTH 5 STREET and SOUTH 6 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+689898,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 11:00:00 PM,01/06/2023 05:29:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 28 STREET and WEST 24 STREET, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+689874,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 10:00:00 PM,01/06/2023 02:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between DEAN STREET and BERGEN STREET,Brooklyn,2,84,Film,Short,United States of America,11201
+689870,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 06:00:00 PM,01/06/2023 02:36:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 83 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 85 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 82 STREET and EAST 84 STREET, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 79 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+689869,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 10:00:00 PM,01/06/2023 02:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between WYTHE AVENUE and BERRY STREET, CLASSON AVENUE between LAFAYETTE AVENUE and CLIFTON PLACE",Brooklyn,"1, 2, 3","79, 88, 90",Film,Short,United States of America,"11238, 11249"
+689867,Shooting Permit,01/18/2023 07:00:00 AM,01/18/2023 11:00:00 PM,01/06/2023 02:31:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689866,Shooting Permit,01/17/2023 07:00:00 AM,01/17/2023 11:00:00 PM,01/06/2023 02:30:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689863,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 10:00:00 PM,01/06/2023 02:27:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 6 AVENUE and 5 AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE, EAST 36 STREET between 5 AVENUE and PARK AVENUE, PARK AVENUE between EAST 35 STREET and EAST 38 STREET, EAST 35 STREET between MADISON AVENUE and PARK AVENUE, EAST 35 STREET between 5 AVENUE and MADISON AVENUE, EAST 37 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 34 STREET and EAST 35 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10001, 10016, 10018"
+689847,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 09:00:00 PM,01/06/2023 02:05:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 122 STREET and TIEMANN PLACE, RIVERSIDE DR E between W 122ND ST and RIVERSIDE DR VIADUCT, CLAREMONT AVENUE between TIEMANN PLACE and WEST 122 STREET, WEST 122 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DR W between W 122ND ST and RIVERSIDE DR VIADUCT, RIVERSIDE DRIVE between WEST 122 STREET and WEST 120 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,"10024, 10027"
+689843,Shooting Permit,01/09/2023 06:00:00 AM,01/09/2023 10:00:00 PM,01/06/2023 02:01:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 6 STREET between WYTHE AVENUE and BERRY STREET,Brooklyn,1,90,Film,Short,United States of America,11249
+689816,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 11:00:00 PM,01/06/2023 01:30:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+689807,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 09:00:00 PM,01/06/2023 01:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689771,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 07:00:00 PM,01/06/2023 11:41:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WELLINGTON COURT between RUGBY ROAD and EAST 17 STREET,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+689762,Shooting Permit,01/11/2023 08:00:00 AM,01/11/2023 07:00:00 PM,01/06/2023 11:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10036, 10105"
+689761,Shooting Permit,01/11/2023 06:30:00 AM,01/11/2023 08:30:00 PM,01/06/2023 11:25:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between WEIRFIELD STREET and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and JEFFERSON STREET, HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+689701,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 10:00:00 PM,01/06/2023 01:38:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11237
+689700,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 08:00:00 PM,01/06/2023 01:29:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and HOWARD STREET, LAFAYETTE STREET between HOWARD STREET and GRAND STREET",Manhattan,2,5,Commercial,Commercial,United States of America,10013
+689667,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 11:00:00 PM,01/05/2023 05:16:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689666,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 11:00:00 PM,01/05/2023 05:15:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+689655,Shooting Permit,01/11/2023 08:00:00 AM,01/11/2023 10:00:00 PM,01/05/2023 04:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between SUFFOLK STREET and ATTORNEY STREET, ATTORNEY STREET between STANTON STREET and EAST HOUSTON STREET, AVENUE B between EAST HOUSTON STREET and EAST 2 STREET, NORFOLK STREET between STANTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET, EAST 1 STREET between 1 AVENUE and EAST HOUSTON STREET, EAST HOUSTON STREET between EAST 1 STREET and AVENUE A, EAST HOUSTON STREET between ATTORNEY STREET and RIDGE STREET, AVENUE A between EAST HOUSTON STREET and EAST 2 STREET, AVENUE A between EAST 2 STREET and EAST 5 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+689641,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 11:59:00 PM,01/05/2023 03:13:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 23 STREET and WEST 28 STREET, WEST 27 STREET between 6 AVENUE and BROADWAY, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 23 STREET between 6 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+689617,Shooting Permit,01/12/2023 07:30:00 AM,01/12/2023 11:00:00 PM,01/05/2023 02:34:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, BEVERLEY ROAD between EAST 17 STREET and EAST 16 STREET, BEVERLEY ROAD between EAST 16 STREET and MARLBOROUGH ROAD, BEVERLEY ROAD between MARLBOROUGH ROAD and RUGBY ROAD, BEVERLEY ROAD between RUGBY ROAD and ARGYLE ROAD, BEVERLEY ROAD between ARGYLE ROAD and WESTMINSTER ROAD, OCEAN AVENUE between CHURCH AVENUE and BEVERLEY ROAD, BEVERLEY ROAD between OCEAN AVENUE and EAST 21 STREET",Brooklyn,14,70,Television,Cable-episodic,United States of America,"11218, 11226"
+689604,Shooting Permit,01/09/2023 06:00:00 AM,01/09/2023 11:00:00 PM,01/05/2023 01:49:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689592,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 06:00:00 PM,01/05/2023 01:31:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 82 STREET and EAST 85 STREET, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 83 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between MADISON AVENUE and PARK AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 85 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 82 STREET and EAST 84 STREET, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 79 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+689589,Shooting Permit,01/13/2023 12:00:00 PM,01/13/2023 11:00:00 PM,01/05/2023 01:18:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10036
+689571,Theater Load in and Load Outs,01/11/2023 07:00:00 AM,01/12/2023 11:59:00 PM,01/05/2023 12:37:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+689570,Shooting Permit,01/11/2023 09:00:00 AM,01/12/2023 01:00:00 AM,01/05/2023 12:33:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689563,Theater Load in and Load Outs,01/18/2023 12:01:00 AM,01/18/2023 11:59:00 PM,01/05/2023 12:21:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 56 STREET and WEST 57 STREET, WEST 56 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+689555,Theater Load in and Load Outs,01/06/2023 07:00:00 AM,01/08/2023 11:00:00 PM,01/05/2023 12:12:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+689540,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 11:00:00 PM,01/05/2023 11:54:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, BEVERLEY ROAD between EAST 17 STREET and EAST 16 STREET, BEVERLEY ROAD between EAST 16 STREET and MARLBOROUGH ROAD, BEVERLEY ROAD between MARLBOROUGH ROAD and RUGBY ROAD, BEVERLEY ROAD between RUGBY ROAD and ARGYLE ROAD, BEVERLEY ROAD between ARGYLE ROAD and WESTMINSTER ROAD, OCEAN AVENUE between CHURCH AVENUE and BEVERLEY ROAD",Brooklyn,14,70,Television,Cable-episodic,United States of America,"11218, 11226"
+689491,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 09:00:00 PM,01/05/2023 10:15:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689489,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 09:00:00 PM,01/05/2023 10:09:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 47 ROAD and 48 AVENUE, 46 ROAD between VERNON BOULEVARD and 11 STREET, 47 ROAD between CENTER BOULEVARD and DEAD END, 49 AVENUE between CENTER BOULEVARD and 5 STREET, 47 ROAD between CENTER BOULEVARD and 5 STREET, 5 STREET between 47 AVENUE and 47 ROAD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, 47 ROAD between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between VERNON BOULEVARD and 5 STREET",Queens,2,108,Television,Cable-episodic,United States of America,"11101, 11109"
+689438,Theater Load in and Load Outs,01/08/2023 06:00:00 AM,01/10/2023 10:00:00 PM,01/04/2023 06:13:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+689435,Shooting Permit,01/19/2023 07:00:00 AM,01/19/2023 09:00:00 PM,01/04/2023 06:01:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 46 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10167, 10171, 10172, 10177"
+689432,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 11:59:00 PM,01/04/2023 05:38:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between ASH STREET and BOX STREET, MANHATTAN AVENUE between ASH STREET and DEAD END, MANHATTAN AVENUE between ASH STREET and DEAD END, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, CLAY STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between CLAY STREET and DUPONT STREET, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, COMMERCIAL STREET between MANHATTAN AVENUE and BOX STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MANHATTAN AVENUE between HURON STREET and EAGLE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689398,Theater Load in and Load Outs,01/09/2023 06:00:00 AM,01/10/2023 11:59:00 PM,01/04/2023 03:17:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Brooklyn,"3, 8","19, 79",Theater,Theater,United States of America,"10065, 11206"
+689381,Shooting Permit,01/18/2023 06:00:00 AM,01/18/2023 08:00:00 PM,01/04/2023 02:38:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, 84 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+689373,Shooting Permit,01/17/2023 06:00:00 AM,01/17/2023 06:00:00 PM,01/04/2023 02:20:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between HICKS STREET and HENRY STREET, HENRY STREET between BALTIC STREET and KANE STREET, KANE STREET between HENRY STREET and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, COLUMBIA PLACE between JORALEMON STREET and STATE STREET, ATLANTIC AVENUE between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11231"
+689361,Shooting Permit,01/13/2023 01:00:00 PM,01/14/2023 02:00:00 AM,01/04/2023 01:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between BROOME STREET and SPRING STREET, SPRING STREET between WEST BROADWAY and THOMPSON STREET, THOMPSON STREET between BROOME STREET and SPRING STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, BLEECKER STREET between LAGUARDIA PLACE and WOOSTER STREET",Manhattan,2,"1, 6",Television,Episodic series,United States of America,"10012, 10013"
+689345,Shooting Permit,01/13/2023 07:00:00 AM,01/13/2023 09:00:00 PM,01/04/2023 01:24:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689338,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 09:00:00 PM,01/04/2023 01:20:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689326,Shooting Permit,01/07/2023 07:00:00 AM,01/07/2023 09:00:00 PM,01/04/2023 01:09:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+689310,Shooting Permit,01/06/2023 01:00:00 PM,01/07/2023 04:00:00 PM,01/04/2023 12:42:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WARREN STREET and MURRAY STREET, BROADWAY between CHAMBERS STREET and READE STREET, READE STREET between BROADWAY and CHURCH STREET, NASSAU STREET between PINE STREET and CEDAR STREET, NASSAU STREET between CEDAR STREET and LIBERTY STREET, CEDAR STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between NASSAU STREET and BROADWAY, LIBERTY STREET between BROADWAY and TRINITY PLACE, BROADWAY between CEDAR STREET and LIBERTY STREET, BROADWAY between THAMES STREET and RECTOR STREET, PINE STREET between BROADWAY and NASSAU STREET, MAIDEN LANE between WILLIAM STREET and LIBERTY STREET, MAIDEN LANE between SOUTH STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and WATER STREET, MAIDEN LANE between WATER STREET and PEARL STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, JOHN STREET between WATER STREET and PEARL STREET, CORTLANDT STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10005, 10006, 10007, 10038, 10045, 10271"
+689305,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 09:00:00 PM,01/04/2023 12:30:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689293,Rigging Permit,01/06/2023 07:00:00 AM,01/06/2023 09:00:00 PM,01/04/2023 12:22:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,8,19,Television,Episodic series,United States of America,10021
+689285,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 09:00:00 PM,01/04/2023 12:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+689280,Shooting Permit,01/10/2023 09:00:00 AM,01/10/2023 09:00:00 PM,01/04/2023 12:14:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between DEAD END and WEST STREET, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, JAVA STREET between DEAD END and WEST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689257,Shooting Permit,01/09/2023 09:00:00 AM,01/09/2023 09:00:00 PM,01/04/2023 11:57:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+689198,Shooting Permit,01/09/2023 06:00:00 AM,01/09/2023 10:00:00 PM,01/04/2023 10:11:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","51 AVENUE between 25 STREET and 27 STREET, 25 STREET between 50 AVENUE and 51 AVENUE, 25 STREET between 51 AVENUE and BORDEN AVENUE, 27 STREET between 50 AVENUE and 51 AVENUE, 27 STREET between 51 AVENUE and BORDEN AVENUE, 51 AVENUE between 23 STREET and 25 STREET, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET, SKILLMAN AVENUE between 47 AVENUE and THOMSON AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+689197,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 11:00:00 PM,01/04/2023 10:10:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+689189,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 10:00:00 PM,01/04/2023 09:54:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+689165,Theater Load in and Load Outs,01/05/2023 05:00:00 AM,01/11/2023 11:00:00 PM,01/04/2023 04:54:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between ROCKEFELLER PLAZA and 6 AVENUE, WEST 50 STREET between 6 AVENUE and ROCKEFELLER PLAZA",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+689143,Shooting Permit,01/07/2023 06:00:00 AM,01/07/2023 05:00:00 PM,01/03/2023 09:49:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT WASHINGTON AVENUE between WEST 179 STREET and WEST 180 STREET, BROADWAY between WEST 179 STREET and WEST 180 STREET, LAFAYETTE STREET between GRAND STREET and BROOME STREET, BROOME STREET between LAFAYETTE STREET and CROSBY STREET, GRAND STREET between LAFAYETTE STREET and CENTRE STREET, GRAND STREET between LAFAYETTE STREET and CROSBY STREET, CENTRE STREET between HOWARD STREET and GRAND STREET, CENTRE STREET between GRAND STREET and BROOME STREET",Manhattan,"12, 2","33, 34, 5",Television,Episodic series,United States of America,"10013, 10033"
+689116,Shooting Permit,01/06/2023 06:00:00 AM,01/06/2023 12:00:00 PM,01/03/2023 08:21:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+689023,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 08:00:00 PM,01/03/2023 04:53:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHOLES STREET between WATERBURY STREET and BOGART STREET, MESEROLE STREET between WATERBURY STREET and BOGART STREET, MESEROLE STREET between WATERBURY STREET and BUSHWICK PLACE, BUSHWICK PLACE between MESEROLE STREET and MONTROSE AVENUE, WATERBURY STREET between SCHOLES STREET and MESEROLE STREET, BOGART STREET between MESEROLE STREET and SCHOLES STREET, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+689013,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 08:00:00 PM,01/03/2023 04:33:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 25 STREET, WEST 23 STREET between 11 AVENUE and 10 AVENUE, WEST 24 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE, 12 AVENUE between WEST 26 STREET and WEST 24 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+689005,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 09:00:00 PM,01/03/2023 04:26:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 72 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 72 STREET and EAST 68 STREET, 5 AVENUE between EAST 70 STREET and EAST 66 STREET, EAST 66 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and PARK AVENUE, EAST 69 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10065"
+688975,Shooting Permit,01/09/2023 08:00:00 AM,01/09/2023 11:00:00 PM,01/03/2023 03:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 16 STREET and WEST 15 STREET, WEST 17 STREET between 10 AVENUE and 9 AVENUE, WEST 19 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 20 STREET and WEST 17 STREET",Manhattan,"0, 4","0, 10",Television,Episodic series,United States of America,"0, 10011"
+688890,Shooting Permit,01/06/2023 01:30:00 PM,01/07/2023 02:30:00 AM,01/03/2023 01:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","30TH AVE between CORPORAL KENNEDY STREET and 210 STREET, 210 STREET between 29 AVENUE and 32 AVENUE, 210 STREET between 29 AVENUE and 32 AVENUE, 32 AVENUE between CORPORAL KENNEDY STREET and 211 STREET, CORPORAL KENNEDY STREET between 28 ROAD and 32 AVENUE, CLEARVIEW EXPRESSWAY SR SB between 29 AVENUE and 32nd Ave, 29 AVENUE between 206 STREET and CLEARVIEW EXPRESSWAY SR SB",Queens,11,111,Television,Episodic series,United States of America,"11360, 11361"
+688858,Shooting Permit,01/05/2023 07:00:00 AM,01/05/2023 09:00:00 PM,01/03/2023 12:51:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between BOX STREET and ASH STREET, MCGUINNESS BOULEVARD between PAIDGE AVENUE and CLAY STREET, PAIDGE AVENUE between MCGUINNESS BOULEVARD and CLAY STREET, MCGUINNESS BOULEVARD between BOX STREET and DUPONT STREET, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between ASH STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+688834,Shooting Permit,01/05/2023 06:30:00 AM,01/05/2023 08:00:00 PM,01/03/2023 12:23:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 AVENUE between CRESCENT STREET and 27 STREET, SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH",Queens,1,114,Television,Episodic series,United States of America,11105
+688824,Shooting Permit,01/04/2023 06:00:00 AM,01/04/2023 08:00:00 PM,01/03/2023 12:16:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, 84 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+688761,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 09:00:00 PM,01/03/2023 10:24:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 19 STREET and EAST 18 STREET",Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+688754,Shooting Permit,01/05/2023 11:00:00 AM,01/06/2023 02:00:00 AM,01/03/2023 10:10:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+688748,Shooting Permit,01/08/2023 12:00:00 AM,01/08/2023 11:59:00 PM,01/03/2023 09:40:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+688730,Shooting Permit,01/07/2023 12:00:00 AM,01/07/2023 11:59:00 PM,01/03/2023 08:28:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+688727,Shooting Permit,01/06/2023 06:00:00 AM,01/06/2023 11:59:00 PM,01/03/2023 07:59:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+688645,Shooting Permit,01/05/2023 09:00:00 AM,01/05/2023 11:59:00 PM,01/02/2023 06:16:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between MADISON AVENUE and 5 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 56 STREET, MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, WEST 32 STREET between 5 AVENUE and BROADWAY, 5 AVENUE between EAST 32 STREET and EAST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, BROADWAY between WEST 30 STREET and WEST 31 STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 31 STREET and EAST 32 STREET, EAST 32 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10001, 10016, 10019, 10022"
+688636,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 11:59:00 PM,01/02/2023 05:38:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRESH POND ROAD between PUTNAM AVENUE and MADISON STREET, FRESH POND ROAD between WOODBINE STREET and MADISON STREET, MADISON STREET between FRESH POND ROAD and 64 STREET, MADISON STREET between FRESH POND ROAD and 60 PLACE, FRESH POND ROAD between 68 AVENUE and CYPRESS HILLS ROAD, FRESH POND ROAD between 69 AVENUE and MYRTLE AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET, HUMBOLDT STREET between SKILLMAN AVENUE and CONSELYEA STREET, SKILLMAN AVENUE between HUMBOLDT STREET and WOODPOINT ROAD, CONSELYEA STREET between HUMBOLDT STREET and WOODPOINT ROAD, WOODPOINT ROAD between CONSELYEA STREET and SKILLMAN AVENUE, CONSELYEA STREET between HUMBOLDT STREET and GRAHAM AVENUE, WOODPOINT ROAD between SKILLMAN AVENUE and JACKSON STREET, METROPOLITAN AVENUE between HUMBOLDT STREET and LEONARD STREET",Queens,"1, 5","104, 90, 94",Television,Episodic series,United States of America,"11211, 11385"
+688594,Shooting Permit,01/04/2023 12:00:00 PM,01/05/2023 02:00:00 AM,01/02/2023 03:27:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+688549,Shooting Permit,01/03/2023 10:00:00 AM,01/03/2023 11:00:00 PM,01/02/2023 01:25:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+688537,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 09:00:00 PM,01/02/2023 12:30:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 72 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, EAST 71 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 71 STREET and EAST 68 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 70 STREET and EAST 66 STREET, EAST 66 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10065"
+688490,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 07:00:00 PM,01/02/2023 08:55:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 1 STREET between BERRY STREET and BEDFORD AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11249
+687492,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 09:00:00 PM,12/30/2022 01:29:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DEAD END and COMMERCIAL STREET, MANHATTAN AVENUE between DEAD END and ASH STREET, MANHATTAN AVENUE between ASH STREET and CLAY STREET, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+687490,Shooting Permit,01/05/2023 07:00:00 AM,01/05/2023 09:00:00 PM,12/30/2022 12:43:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 7 AVENUE and 9 AVENUE, WEST 37 STREET between 9 AVENUE and 10th Ave, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 33 STREET, 11 AVENUE between WEST 29 STREET and WEST 27 STREET",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,"10001, 10018"
+687455,Shooting Permit,01/04/2023 05:00:00 AM,01/04/2023 11:00:00 AM,12/30/2022 07:56:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Television,Morning Show,United States of America,"10020, 10036"
+687454,Shooting Permit,01/01/2023 04:00:00 AM,01/01/2023 11:00:00 AM,12/30/2022 06:46:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+687392,Shooting Permit,01/05/2023 06:00:00 AM,01/05/2023 08:00:00 PM,12/29/2022 02:05:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 72 STREET and EAST 75 STREET,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+687391,Shooting Permit,01/06/2023 06:00:00 AM,01/06/2023 08:00:00 PM,12/29/2022 02:05:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 72 STREET and EAST 75 STREET,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+687371,Shooting Permit,01/02/2023 04:00:00 AM,01/02/2023 10:00:00 AM,12/29/2022 12:41:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+687210,Theater Load in and Load Outs,01/05/2023 12:01:00 AM,01/09/2023 10:00:00 AM,12/28/2022 08:46:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+687142,Shooting Permit,01/05/2023 12:00:00 PM,01/05/2023 11:00:00 PM,12/27/2022 12:40:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 50 STREET and WEST 51 STREET,Manhattan,5,18,Theater,Theater,United States of America,10019
+687128,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 10:00:00 PM,12/27/2022 10:49:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 24 STREET and WEST 28 STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 27 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+687126,Shooting Permit,01/09/2023 09:00:00 AM,01/09/2023 09:00:00 PM,12/27/2022 10:40:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between LAFAYETTE STREET and BROADWAY, WORTH STREET between CENTRE STREET and BAXTER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between LEONARD STREET and WHITE STREET, BROADWAY between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between FRANKLIN PLACE and BROADWAY, WORTH STREET between BROADWAY and HUDSON STREET, CHURCH STREET between WORTH STREET and LEONARD STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+687010,Shooting Permit,01/12/2023 09:00:00 AM,01/13/2023 01:00:00 AM,12/23/2022 12:55:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 6 STREET and SAINT MARKS PLACE, EAST 7 STREET between TARAS SHEVCHENKO PLACE and 2 AVENUE, ST MARKS PLACE between 2 AVENUE and 3 AVENUE, EAST 6 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 6 STREET and EAST 7 STREET, EAST 7 STREET between AVENUE A and 1 AVENUE, 1 AVENUE between EAST 6 STREET and EAST 7 STREET, EAST 7 STREET between 1 AVENUE and 2 AVENUE, AVENUE A between EAST 7 STREET and EAST 10 STREET, EAST 7 STREET between AVENUE A and AVENUE B, TARAS SHEVCHENKO PLACE between EAST 6 STREET and EAST 7 STREET, EAST 10 STREET between AVENUE A and AVENUE B, EAST 10 STREET between 1 AVENUE and AVENUE A, 2 AVENUE between ST MARKS PLACE and EAST 9 STREET",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+687009,Shooting Permit,01/13/2023 06:00:00 AM,01/13/2023 11:30:00 PM,12/23/2022 12:54:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEEKMAN STREET between WILLIAM STREET and GOLD STREET, WILLIAM STREET between BEEKMAN STREET and ANN STREET, SPRUCE STREET between PARK ROW and GOLD STREET, ANN STREET between NASSAU STREET and WILLIAM STREET, GOLD STREET between FULTON STREET and BEEKMAN STREET, GOLD STREET between SPRUCE STREET and BEEKMAN STREET, FULTON STREET between GOLD STREET and CLIFF STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, HANOVER SQUARE between PEARL STREET and WATER STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET, SOUTH STREET between MAIDEN LANE and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+687007,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 11:59:00 PM,12/23/2022 12:34:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA BOULEVARD between 28 STREET and CRESCENT STREET, ASTORIA BOULEVARD between CRESCENT STREET and 23 STREET, ASTORIA BOULEVARD between 23 STREET and 29 STREET",Queens,1,114,Commercial,Commercial,United States of America,11102
+686960,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 08:00:00 PM,12/22/2022 01:56:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between SHORE PARKWAY and AVENUE Z, AVENUE Z between OCEAN PARKWAY and EAST 6 STREET, EAST 6 STREET between AVENUE Z and BRIGHTON COURT, AVENUE Z between EAST 7 STREET and CONEY ISLAND AVENUE, EAST 7 STREET between AVENUE Z and AVENUE Y, CONEY ISLAND AVENUE between AVENUE Z and KATHLEEN PLACE",Brooklyn,"13, 15","60, 61",Television,Episodic series,United States of America,11235
+686956,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 08:00:00 PM,12/22/2022 01:49:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between SHORE PARKWAY and AVENUE Z, AVENUE Z between OCEAN PARKWAY and EAST 6 STREET, EAST 6 STREET between AVENUE Z and BRIGHTON COURT, AVENUE Z between EAST 7 STREET and CONEY ISLAND AVENUE, EAST 7 STREET between AVENUE Z and AVENUE Y, CONEY ISLAND AVENUE between AVENUE Z and KATHLEEN PLACE",Brooklyn,"13, 15","60, 61",Television,Episodic series,United States of America,11235
+686926,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 11:00:00 PM,12/22/2022 10:27:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686923,Shooting Permit,01/04/2023 06:00:00 AM,01/04/2023 10:00:00 PM,12/22/2022 10:21:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686899,Theater Load in and Load Outs,01/16/2023 06:00:00 AM,02/20/2023 06:00:00 PM,12/21/2022 07:53:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 50 STREET and WEST 51 STREET,Manhattan,5,18,Theater,Theater,United States of America,10019
+686868,Theater Load in and Load Outs,01/08/2023 12:01:00 AM,01/16/2023 06:00:00 AM,12/21/2022 03:29:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+686849,Shooting Permit,12/26/2022 08:00:00 AM,12/27/2022 02:00:00 AM,12/21/2022 02:15:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET",Brooklyn,1,90,Music Video,Not Applicable,United States of America,11237
+686807,Shooting Permit,12/25/2022 02:00:00 AM,12/25/2022 02:00:00 PM,12/21/2022 08:27:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686805,Shooting Permit,12/24/2022 02:00:00 AM,12/24/2022 02:00:00 PM,12/21/2022 08:17:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686740,Theater Load in and Load Outs,01/13/2023 01:00:00 AM,01/14/2023 01:00:00 PM,12/20/2022 01:00:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+686735,Shooting Permit,01/06/2023 06:00:00 AM,01/06/2023 11:00:00 PM,12/20/2022 12:32:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","58 STREET between 41 AVENUE and 41 DRIVE, 41 DRIVE between 58 STREET and 60 STREET, 58 STREET between 41 DRIVE and 43 AVENUE, 58 STREET between 43 AVENUE and 44 AVENUE, 58 STREET between 44 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 58 STREET and 59 PLACE, QUEENS BOULEVARD between 58 STREET and 57 STREET, QUEENS BOULEVARD between 57 STREET and 56 STREET, QUEENS BOULEVARD between 56 STREET and 54 STREET, QUEENS BOULEVARD between 54 STREET and 52 STREET, QUEENS BOULEVARD between 52 STREET and 51 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+686706,Shooting Permit,01/11/2023 06:00:00 AM,01/11/2023 09:00:00 PM,12/20/2022 10:22:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10018
+686696,Shooting Permit,12/22/2022 09:00:00 AM,12/22/2022 09:00:00 PM,12/20/2022 08:18:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between CHARLES STREET and WEST 10 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+686692,Theater Load in and Load Outs,01/12/2023 12:12:00 AM,01/13/2023 09:00:00 PM,12/20/2022 03:45:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+686690,Theater Load in and Load Outs,01/13/2023 06:00:00 AM,01/14/2023 04:00:00 AM,12/20/2022 01:53:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Theater,Theater,United States of America,10019
+686686,Shooting Permit,01/05/2023 06:00:00 AM,01/05/2023 11:00:00 PM,12/19/2022 10:24:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 241 STREET between RICHARDSON AVENUE and WHITE PLAINS ROAD, RICHARDSON AVENUE between EAST 242 STREET and EAST 241 STREET, RICHARDSON AVENUE between EAST 241 STREET and EAST 240 STREET",Bronx,12,47,Television,Cable-episodic,United States of America,10470
+686685,Shooting Permit,01/04/2023 07:00:00 AM,01/04/2023 11:00:00 PM,12/19/2022 10:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between NEWEL STREET and DIAMOND STREET, NASSAU AVENUE between JEWEL STREET and HUMBOLDT STREET, NASSAU AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, NEWEL STREET between NASSAU AVENUE and DRIGGS AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+686672,Shooting Permit,01/10/2023 06:00:00 AM,01/10/2023 08:00:00 PM,12/19/2022 04:46:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+686671,Theater Load in and Load Outs,01/06/2023 12:01:00 AM,01/08/2023 06:00:00 AM,12/19/2022 04:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+686658,Theater Load in and Load Outs,01/01/2023 12:01:00 AM,01/02/2023 06:00:00 AM,12/19/2022 03:35:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+686654,Shooting Permit,12/21/2022 06:00:00 AM,12/21/2022 09:00:00 PM,12/19/2022 03:27:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",52 STREET between 1 AVENUE and 2 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11232
+686650,Shooting Permit,01/06/2023 06:00:00 AM,01/07/2023 02:00:00 AM,12/19/2022 02:49:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 67 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 68 STREET and WEST 67 STREET, COLUMBUS AVENUE between WEST 67 STREET and WEST 66 STREET, WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 70 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 68 STREET and WEST 67 STREET, WEST 68 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,7,20,Television,Cable-episodic,United States of America,10023
+686638,Shooting Permit,01/05/2023 06:00:00 AM,01/05/2023 11:59:00 PM,12/19/2022 01:10:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Documentary,Not Applicable,United States of America,10036
+686637,Shooting Permit,01/04/2023 06:00:00 AM,01/05/2023 12:00:00 AM,12/19/2022 01:02:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Documentary,Not Applicable,United States of America,10036
+686633,Shooting Permit,01/04/2023 06:00:00 AM,01/05/2023 10:00:00 PM,12/19/2022 12:53:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, SKILLMAN AVENUE between AUSTELL PLACE and 49 AVENUE, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+686631,Shooting Permit,01/06/2023 10:00:00 AM,01/07/2023 02:00:00 AM,12/19/2022 12:49:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+686630,Shooting Permit,01/05/2023 10:00:00 AM,01/06/2023 03:00:00 AM,12/19/2022 12:49:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, NORTH 11 STREET between WYTHE AVENUE and BERRY STREET, NORTH 11 STREET between WYTHE AVENUE and KENT AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+686629,Rigging Permit,01/03/2023 05:00:00 PM,01/04/2023 12:00:00 AM,12/19/2022 12:45:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Documentary,Not Applicable,United States of America,10036
+686567,Theater Load in and Load Outs,01/07/2023 06:00:00 AM,01/07/2023 11:59:00 PM,12/16/2022 05:56:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+686563,Shooting Permit,01/11/2023 07:00:00 AM,01/11/2023 09:00:00 PM,12/16/2022 04:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+686561,Shooting Permit,01/12/2023 07:00:00 AM,01/12/2023 09:00:00 PM,12/16/2022 03:57:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+686560,Shooting Permit,01/03/2023 07:00:00 AM,01/03/2023 09:00:00 PM,12/16/2022 03:52:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+686557,Shooting Permit,01/13/2023 07:00:00 AM,01/13/2023 09:00:00 PM,12/16/2022 03:39:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+686556,Shooting Permit,01/09/2023 06:00:00 AM,01/09/2023 08:00:00 PM,12/16/2022 03:37:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between SHORE PARKWAY and AVENUE Z, AVENUE Z between OCEAN PARKWAY and EAST 6 STREET, EAST 6 STREET between AVENUE Z and BRIGHTON COURT, AVENUE Z between EAST 7 STREET and CONEY ISLAND AVENUE, EAST 7 STREET between AVENUE Z and AVENUE Y, CONEY ISLAND AVENUE between AVENUE Z and KATHLEEN PLACE",Brooklyn,"13, 15","60, 61",Television,Episodic series,United States of America,11235
+686549,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 09:00:00 PM,12/16/2022 02:50:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST MAIN STREET between WEST ROAD and NORTH LOOP ROAD, WEST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD",Manhattan,8,114,Television,Episodic series,United States of America,10044
+686548,Shooting Permit,01/05/2023 06:00:00 AM,01/05/2023 08:00:00 PM,12/16/2022 02:46:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST MAIN STREET between WEST ROAD and NORTH LOOP ROAD, WEST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD",Manhattan,8,114,Television,Episodic series,United States of America,10044
+686543,Shooting Permit,01/04/2023 07:00:00 AM,01/04/2023 10:00:00 PM,12/16/2022 02:32:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+686534,Shooting Permit,01/05/2023 07:00:00 AM,01/05/2023 09:00:00 PM,12/16/2022 01:47:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 ST between QUEENS PLAZA S and 43RD AVE, 43 AVE between 22 ST and 21 ST, 21 ST between QUEENS PLAZA S and 43 AVE, QUEENS PLAZA S between 22 ST and 21 ST",Queens,2,108,Television,Episodic series,United States of America,11101
+686527,Shooting Permit,01/04/2023 07:00:00 AM,01/04/2023 09:00:00 PM,12/16/2022 01:08:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 109 STREET and EAST 104 STREET, 5 AVENUE between EAST 103 STREET and EAST 102 STREET, EAST 106 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 106 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 104 STREET and EAST 103 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+686513,Shooting Permit,12/21/2022 07:00:00 PM,12/22/2022 06:00:00 AM,12/16/2022 11:25:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between LEXINGTON AVENUE and 3 AVENUE, WEST 43 STREET between 9 AVENUE and 10 AVENUE",Queens,"3, 4, 6, 7, 8","10, 110, 17, 18",Film,Feature,United States of America,"10016, 10036, 11354, 11355, 11367, 11368"
+686496,Shooting Permit,12/21/2022 06:00:00 AM,12/21/2022 11:00:00 PM,12/16/2022 09:25:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 42 STREET and EAST 47 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 49 STREET and EAST 47 STREET, EAST 48 STREET between 3 AVENUE and 2 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10017
+686470,Theater Load in and Load Outs,12/19/2022 12:01:00 AM,12/23/2022 11:59:00 PM,12/15/2022 06:28:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+686468,Shooting Permit,12/17/2022 06:00:00 AM,12/17/2022 09:00:00 PM,12/15/2022 05:47:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686464,Shooting Permit,12/17/2022 06:00:00 AM,12/17/2022 08:00:00 PM,12/15/2022 04:41:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between NORFOLK STREET and SUFFOLK STREET, NORFOLK STREET between RIVINGTON STREET and DELANCEY STREET",Manhattan,3,7,Music Video,Signed Artist,United States of America,10002
+686457,Shooting Permit,01/06/2023 06:00:00 AM,01/07/2023 01:00:00 AM,12/15/2022 03:50:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 8 STREET between DRIGGS AVENUE and ROEBLING STREET, ROEBLING STREET between NORTH 7 STREET and NORTH 9 STREET, ROEBLING STREET between NORTH 9 STREET and NORTH 10 STREET, NORTH 8 STREET between ROEBLING STREET and HAVEMEYER STREET, MESEROLE AVENUE between FRANKLIN STREET and BANKER STREET, FRANKLIN ST between CALYER STREET and QUAY STREET, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, BEDFORD AVENUE between NASSAU AVENUE and NORTH 12 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+686455,Theater Load in and Load Outs,01/09/2023 06:00:00 AM,01/09/2023 11:59:00 PM,12/15/2022 03:42:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+686450,Shooting Permit,01/05/2023 07:00:00 AM,01/05/2023 11:00:00 PM,12/15/2022 02:52:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and GUERNSEY STREET, LORIMER STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686433,Theater Load in and Load Outs,12/20/2022 12:01:00 AM,12/20/2022 11:59:00 PM,12/15/2022 01:05:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+686418,Shooting Permit,01/04/2023 06:00:00 AM,01/04/2023 11:00:00 PM,12/15/2022 12:16:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686408,Shooting Permit,12/19/2022 04:00:00 AM,12/19/2022 10:00:00 AM,12/15/2022 10:09:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686403,Shooting Permit,12/18/2022 08:00:00 AM,12/18/2022 04:00:00 PM,12/15/2022 09:00:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 166 STREET between GRAND CONCOURSE and WALTON AVENUE,Bronx,4,44,Music Video,Independent Artist,United States of America,10452
+686395,Shooting Permit,12/18/2022 02:00:00 AM,12/18/2022 02:00:00 PM,12/15/2022 08:38:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686392,Shooting Permit,12/20/2022 06:00:00 AM,12/21/2022 12:00:00 AM,12/15/2022 08:10:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEDGWICK AVENUE between HALL OF FAME TERRACE and WEST BURNSIDE AVENUE, Hall of Fame Terrace between WEST 181 STREET and W 180th Street, HALL OF FAME TERRACE between SEDGWICK AVENUE and UNIVERSITY AVENUE, UNIVERSITY AVENUE between HALL OF FAME TERRACE and WEST 183 STREET",Bronx,"5, 7","46, 52",Television,Episodic series,United States of America,10453
+686391,Shooting Permit,12/17/2022 02:00:00 AM,12/17/2022 02:00:00 PM,12/15/2022 08:02:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686390,Shooting Permit,12/16/2022 04:00:00 AM,12/16/2022 11:00:00 AM,12/15/2022 07:58:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+686365,Shooting Permit,12/19/2022 12:00:00 PM,12/20/2022 02:00:00 AM,12/14/2022 04:43:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 8 STREET between FRIEL PLACE and CATON AVENUE,Brooklyn,"12, 7","66, 72",Film,Short,United States of America,11218
+686361,Shooting Permit,12/16/2022 06:00:00 AM,12/16/2022 11:00:00 PM,12/14/2022 04:36:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686336,Shooting Permit,12/18/2022 06:00:00 AM,12/18/2022 09:00:00 PM,12/14/2022 02:32:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK PLACE between BROADWAY and CHURCH STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10007, 10279"
+686330,Shooting Permit,01/04/2023 07:00:00 AM,01/04/2023 10:00:00 PM,12/14/2022 02:21:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686301,Shooting Permit,12/16/2022 06:00:00 AM,12/16/2022 08:00:00 PM,12/14/2022 12:29:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, 84 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+686285,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 11:00:00 PM,12/14/2022 10:57:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686275,Shooting Permit,12/16/2022 04:00:00 PM,12/17/2022 05:00:00 AM,12/14/2022 10:19:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","MACOMBS PLACE between WEST 150 STREET and WEST 151 STREET, WEST 151 STREET between MACOMBS PLACE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 151 STREET between MACOMBS PLACE and FREDERICK DOUGLASS BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 151 STREET and WEST 152 STREET, FREDERICK DOUGLASS BLVD between MACOMBS PLACE and WEST 150 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 150 STREET and WEST 151 STREET, WEST 151 STREET between BRADHURST AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 153 STREET between FREDERICK DOUGLASS BOULEVARD and BRADHURST AVENUE, BRADHURST AVENUE between WEST 151 STREET and WEST 153 STREET, BRADHURST AVENUE between WEST 150 STREET and WEST 151 STREET, BRADHURST AVENUE between WEST 153 STREET and WEST 154 STREET, MACOMBS PLACE between WEST 151 STREET and WEST 152 STREET",Manhattan,10,"30, 32",Television,Episodic series,United States of America,10039
+686272,Shooting Permit,12/23/2022 08:00:00 AM,12/25/2022 03:00:00 AM,12/14/2022 09:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 50 STREET and EAST 51 STREET,Manhattan,5,18,Television,News,United States of America,"10020, 10022"
+686268,Shooting Permit,12/19/2022 06:00:00 AM,12/19/2022 11:00:00 PM,12/14/2022 09:20:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686267,Shooting Permit,12/16/2022 06:00:00 AM,12/16/2022 11:00:00 PM,12/14/2022 09:14:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686231,Rigging Permit,12/15/2022 05:30:00 AM,12/15/2022 12:00:00 PM,12/13/2022 04:48:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 49 STREET between ROCKEFELLER PLAZA and 5 AVENUE,Manhattan,5,18,Television,Variety,United States of America,10020
+686219,Shooting Permit,12/20/2022 09:00:00 AM,12/21/2022 01:00:00 AM,12/13/2022 04:01:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSSBAY BOULEVARD between 165 AVENUE and 163 AVENUE,Queens,10,106,Film,Feature,United States of America,11414
+686213,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 11:00:00 PM,12/13/2022 03:35:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686209,Shooting Permit,12/16/2022 08:00:00 AM,12/16/2022 08:00:00 PM,12/13/2022 03:15:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between CHARLES STREET and CHRISTOPHER STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+686206,Shooting Permit,12/19/2022 08:00:00 AM,12/19/2022 10:00:00 PM,12/13/2022 03:06:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN STREET between FOREST AVENUE and MYRTLE AVENUE, SUMMERFIELD STREET between FOREST AVENUE and MYRTLE AVENUE, DECATUR STREET between MYRTLE AVENUE and FOREST AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+686202,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 08:00:00 PM,12/13/2022 02:48:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between NEWEL STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+686186,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 09:00:00 PM,12/13/2022 01:12:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 22 DRIVE and DITMARS BOULEVARD, DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, 19 STREET between DITMARS BOULEVARD and 22 ROAD, DITMARS BOULEVARD between 19 STREET and 21 STREET, 21 STREET between 22 ROAD and 21 DRIVE, 22 ROAD between 21 STREET and 23 STREET, 23 AVENUE between CRESCENT STREET and 27 STREET, 23 AVENUE between 27 STREET and 31 STREET, 37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 38 STREET, 38 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,"11101, 11105, 11106"
+686171,Shooting Permit,12/19/2022 06:00:00 AM,12/19/2022 10:00:00 PM,12/13/2022 12:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 101 STREET between AVENUE D and FOSTER AVENUE, FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET, AVENUE D between EAST 101 STREET and EAST 105 STREET",Brooklyn,18,69,Television,Episodic series,United States of America,11236
+686150,Shooting Permit,12/16/2022 06:00:00 AM,12/16/2022 11:00:00 PM,12/13/2022 10:36:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, HUMBOLDT STREET between DRIGGS AVENUE and BROOME STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+686147,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 09:00:00 PM,12/13/2022 10:31:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",81 STREET between COLONIAL ROAD and NARROWS AVENUE,Brooklyn,10,68,WEB,Not Applicable,United States of America,11209
+686134,Shooting Permit,12/20/2022 06:00:00 AM,12/20/2022 10:00:00 PM,12/13/2022 10:02:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 156 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 153 STREET and WEST 157 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET, BROADWAY between WEST 144 STREET and WEST 145 STREET, SAINT NICHOLAS AVENUE between WEST 154 STREET and WEST 155 STREET, WEST 155 STREET between RIVERSIDE DRIVE and BROADWAY",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+686120,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 09:00:00 PM,12/13/2022 09:11:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",81 STREET between NARROWS AVENUE and COLONIAL ROAD,Brooklyn,10,68,WEB,Not Applicable,United States of America,11209
+686111,Shooting Permit,12/19/2022 07:00:00 AM,12/19/2022 10:00:00 PM,12/13/2022 08:07:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between NORTH MOORE STREET and CHAMBERS STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, NORTH MOORE STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between HARRISON STREET and FRANKLIN STREET, HARRISON STREET between WEST STREET and GREENWICH STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,10013
+686077,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 11:00:00 PM,12/12/2022 06:52:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+686076,Shooting Permit,12/15/2022 08:00:00 AM,12/16/2022 01:00:00 AM,12/12/2022 06:50:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+686072,DCAS Prep/Shoot/Wrap Permit,12/17/2022 08:00:00 AM,12/17/2022 04:00:00 PM,12/12/2022 06:17:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between WORTH STREET and DUANE STREET,Manhattan,1,5,Film,Feature,United States of America,10007
+686065,Shooting Permit,12/15/2022 02:00:00 PM,12/16/2022 03:00:00 AM,12/12/2022 05:15:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 215 STREET and WEST 218 STREET, WEST 216 STREET between BROADWAY and 10 AVENUE, BROADWAY between WEST 213 STREET and WEST 218 STREET, WEST 216 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 205 STREET and WEST 206 STREET, 9 AVENUE between WEST 204 STREET and WEST 205 STREET, 9 AVENUE between WEST 203 STREET and WEST 204 STREET, WEST 204 STREET between 9 AVENUE and DEAD END, WEST 204 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 204 STREET and WEST 205 STREET, WEST 203 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 202 STREET and WEST 203 STREET, WEST 202 STREET between 9 AVENUE and DEAD END, WEST 202 STREET between 9 AVENUE and 10 AVENUE, BROADWAY between ACADEMY STREET and WEST 204 STREET, BROADWAY between WEST 204 STREET and WEST 207 STREET, WEST 207 STREET between COOPER STREET and BROADWAY, BROADWAY between WEST 207 STREET and ISHAM STREET",Manhattan,12,34,Television,Episodic series,United States of America,10034
+686025,Theater Load in and Load Outs,12/19/2022 12:01:00 AM,12/20/2022 06:00:00 AM,12/12/2022 02:27:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+686024,Shooting Permit,12/15/2022 10:00:00 AM,12/16/2022 03:00:00 PM,12/12/2022 02:23:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","PITKIN AVENUE between LINWOOD STREET and ATKINS AVENUE, SHEPHERD AVENUE between GLENMORE AVENUE and PITKIN AVENUE, GLENMORE AVENUE between ESSEX STREET and BERRIMAN STREET, BERRIMAN STREET between GLENMORE AVENUE and PITKIN AVENUE, ASHFORD STREET between ATLANTIC AVENUE and FULTON STREET",Brooklyn,5,75,Television,Episodic series,United States of America,"11207, 11208"
+685996,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 10:00:00 PM,12/12/2022 01:25:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION AVENUE between WITHERS STREET and JACKSON STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET, FROST STREET between UNION AVENUE and LORIMER STREET, MEEKER AVENUE between WITHERS STREET and JACKSON STREET, NORTH 8 STREET between MEEKER AVENUE and ROEBLING STREET, NORTH 9 STREET between ROEBLING STREET and HAVEMEYER STREET, ROEBLING STREET between NORTH 9 STREET and NORTH 7 STREET, KENT STREET between WEST STREET and DEAD END, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+685994,Shooting Permit,12/16/2022 09:00:00 AM,12/16/2022 11:30:00 PM,12/12/2022 01:23:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, QUEENS PLAZA SOUTH between 9 STREET and 11 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between 40 AVENUE and 41 AVENUE, 40 AVENUE between 21 STREET and 22 STREET, 40 AVENUE between 22 STREET and 23 STREET, 41 AVENUE between 21 STREET and 23 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+685986,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 10:00:00 PM,12/12/2022 01:17:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685954,Shooting Permit,12/13/2022 05:00:00 AM,12/13/2022 09:30:00 AM,12/12/2022 12:30:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685923,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 09:00:00 PM,12/12/2022 11:24:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",81 STREET between NARROWS AVENUE and COLONIAL ROAD,Brooklyn,10,68,WEB,Not Applicable,United States of America,11209
+685913,Theater Load in and Load Outs,12/16/2022 12:01:00 AM,12/16/2022 11:59:00 PM,12/12/2022 11:15:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+685860,Shooting Permit,12/14/2022 10:00:00 AM,12/14/2022 11:30:00 PM,12/12/2022 09:29:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 11 AVENUE and 12 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 24 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+685819,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 05:00:00 PM,12/11/2022 07:32:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, READE STREET between ELK STREET and LAFAYETTE STREET, LAFAYETTE STREET between READE STREET and DUANE STREET, LAFAYETTE STREET between WORTH STREET and DUANE STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013, 10282"
+685808,DCAS Prep/Shoot/Wrap Permit,12/15/2022 05:00:00 PM,12/16/2022 01:00:00 AM,12/11/2022 03:55:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between BAXTER STREET and CENTRE STREET, CENTRE STREET between LEONARD STREET and WORTH STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, LAFAYETTE STREET between READE STREET and DUANE STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+685805,Shooting Permit,12/14/2022 06:00:00 AM,12/14/2022 11:59:00 PM,12/11/2022 07:40:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between AUSTELL PLACE and 49 AVENUE, DAVIS COURT between PEARSON PLACE and 49 AVENUE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, PEARSON PLACE between 27 STREET and DAVIS COURT, SKILLMAN AVENUE between AUSTELL PLACE and THOMSON AVENUE, SKILLMAN AVENUE between 39 STREET and 34 STREET, 46 STREET between 43 AVENUE and SKILLMAN AVENUE, 46 STREET between SKILLMAN AVENUE and 39 AVENUE, SKILLMAN AVENUE between 45 STREET and 46 STREET, SKILLMAN AVENUE between 46 STREET and 47 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104"
+685738,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 08:00:00 PM,12/09/2022 06:23:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Cable-episodic,United States of America,11101
+685737,Shooting Permit,12/15/2022 08:00:00 AM,12/15/2022 10:00:00 PM,12/09/2022 05:22:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between DECATUR STREET and SCHAEFER STREET, COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between COVERT STREET and SCHAEFER STREET, KNICKERBOCKER AVENUE between SCHAEFER STREET and COVERT STREET, DECATUR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, DECATUR STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, SCHAEFER STREET between IRVING AVENUE and KNICKERBOCKER AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+685729,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 06:00:00 PM,12/09/2022 03:46:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between DOVER STREET and PECK SLIP, DOVER STREET between PEARL STREET and WATER STREET, WATER STREET between DOVER STREET and PECK SLIP",Manhattan,"1, 2, 3","1, 5, 84",Film,Feature,United States of America,"10002, 10038, 11201"
+685716,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 08:00:00 PM,12/09/2022 03:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between COURT STREET and BOERUM PLACE, COURT STREET between PACIFIC STREET and DEAN STREET",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,11201
+685715,Shooting Permit,12/20/2022 06:00:00 AM,12/20/2022 10:00:00 PM,12/09/2022 03:11:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685714,Shooting Permit,12/19/2022 06:00:00 AM,12/19/2022 11:00:00 PM,12/09/2022 03:09:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685713,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 11:00:00 PM,12/09/2022 03:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685711,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 10:00:00 PM,12/09/2022 02:39:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between 5 AVENUE and MADISON AVENUE, EAST 44 STREET between MADISON AVENUE and VANDERBILT AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 43 STREET, DELANCEY STREET between SUFFOLK STREET and ATTORNEY STREET, DELANCEY STREET between SUFFOLK STREET and NORFOLK STREET, NORFOLK STREET between RIVINGTON STREET and DELANCEY STREET, RIVINGTON STREET between NORFOLK STREET and RIDGE STREET, ESSEX STREET between DELANCEY STREET and EAST HOUSTON STREET",Manhattan,"3, 5","14, 7",Television,Episodic series,United States of America,"10002, 10017, 10036, 10173"
+685706,Shooting Permit,12/13/2022 06:30:00 AM,12/13/2022 10:30:00 PM,12/09/2022 02:21:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between FRANKLIN STREET and MANHATTAN AVENUE, FRANKLIN STREET between KENT STREET and JAVA STREET, JAVA STREET between FRANKLIN STREET and MANHATTAN AVENUE, KENT STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685704,Theater Load in and Load Outs,01/04/2023 07:00:00 AM,01/04/2023 05:00:00 PM,12/09/2022 02:04:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+685703,Theater Load in and Load Outs,01/03/2023 07:00:00 AM,01/03/2023 05:00:00 PM,12/09/2022 02:00:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+685692,Shooting Permit,12/13/2022 09:30:00 AM,12/13/2022 09:00:00 PM,12/09/2022 01:27:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","FURMAN STREET between DOUGHTY STREET and MONTAGUE STREET, FURMAN STREET between DOUGHTY STREET and MONTAGUE STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, HENRY STREET between OLD FULTON STREET and MIDDAGH STREET, HENRY STREET between ORANGE STREET and PINEAPPLE STREET, HENRY STREET between CLARK STREET and PINEAPPLE STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, WATER STREET between MAIN STREET and DOCK STREET, ATLANTIC AVENUE between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+685686,Shooting Permit,12/18/2022 06:00:00 AM,12/18/2022 09:00:00 PM,12/09/2022 01:03:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 38 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 38 STREET and EAST 37 STREET",Manhattan,6,17,Commercial,Commercial,United States of America,10016
+685681,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 06:30:00 PM,12/09/2022 12:39:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON STREET between CADMAN PLAZA WEST and BROOKLYN BRIDGE BOULEVARD, HENRY STREET between CLARK STREET and PIERREPONT STREET, PIERREPONT STREET between HENRY STREET and HICKS STREET, COLLEGE PLACE between LOVE LANE and DEAD END, CADMAN PLAZA EAST between TILLARY STREET and JOHNSON STREET, REMSEN STREET between COURT STREET and CLINTON STREET, MONTAGUE STREET between CLINTON STREET and COURT STREET, MONTAGUE STREET between HICKS STREET and CLINTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+685677,Shooting Permit,12/16/2022 07:00:00 PM,12/17/2022 09:00:00 AM,12/09/2022 12:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 33 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 34 STREET and EAST 33 STREET, 1 AVENUE between EAST 33 STREET and EAST 30 STREET",Manhattan,6,17,Commercial,Commercial,United States of America,10016
+685676,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 10:00:00 PM,12/09/2022 12:15:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DRIGGS AVENUE and NASSAU AVENUE, MANHATTAN AVENUE between DRIGGS AVENUE and ENGERT AVENUE, DRIGGS AVENUE between LEONARD STREET and ECKFORD STREET, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET, LEONARD STREET between SKILLMAN AVENUE and CONSELYEA STREET, CONSELYEA STREET between LEONARD STREET and MANHATTAN AVENUE, LEONARD STREET between DEVOE STREET and METROPOLITAN AVENUE, CONSELYEA STREET between LEONARD STREET and LORIMER STREET, METROPOLITAN AVENUE between LEONARD STREET and MANHATTAN AVENUE, METROPOLITAN AVENUE between MANHATTAN AVENUE and GRAHAM AVENUE, METROPOLITAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11211, 11222"
+685674,Theater Load in and Load Outs,12/29/2022 12:01:00 AM,01/02/2023 11:59:00 PM,12/09/2022 12:08:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+685673,Shooting Permit,12/15/2022 04:00:00 PM,12/16/2022 07:00:00 AM,12/09/2022 12:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 54 STREET and EAST 55 STREET, 1 AVENUE between EAST 33 STREET and EAST 34 STREET, 1 AVENUE between EAST 33 STREET and EAST 30 STREET, EAST 33 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"5, 6","17, 18",Commercial,Commercial,United States of America,"10016, 10022"
+685665,Shooting Permit,12/12/2022 09:00:00 AM,12/13/2022 01:00:00 AM,12/09/2022 11:28:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, RUSSELL STREET between NORMAN AVENUE and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685662,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 11:59:00 PM,12/09/2022 10:57:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 176 STREET and WEST 174 STREET, WEST 176 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, BROADWAY between WEST 174 STREET and WEST 176 STREET",Manhattan,12,33,Commercial,Commercial,United States of America,10033
+685653,Theater Load in and Load Outs,12/11/2022 07:00:00 AM,12/12/2022 11:00:00 PM,12/09/2022 10:29:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 74 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+685648,Shooting Permit,12/14/2022 07:00:00 AM,12/15/2022 12:00:00 AM,12/09/2022 09:30:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","PITKIN AVENUE between LINWOOD STREET and ATKINS AVENUE, SHEPHERD AVENUE between GLENMORE AVENUE and PITKIN AVENUE, GLENMORE AVENUE between ESSEX STREET and BERRIMAN STREET, BERRIMAN STREET between GLENMORE AVENUE and PITKIN AVENUE, ASHFORD STREET between ATLANTIC AVENUE and FULTON STREET",Brooklyn,5,75,Television,Episodic series,United States of America,"11207, 11208"
+685647,Shooting Permit,12/13/2022 07:00:00 AM,12/14/2022 12:00:00 AM,12/09/2022 09:27:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","PITKIN AVENUE between LINWOOD STREET and ATKINS AVENUE, SHEPHERD AVENUE between GLENMORE AVENUE and PITKIN AVENUE, GLENMORE AVENUE between ESSEX STREET and BERRIMAN STREET, BERRIMAN STREET between GLENMORE AVENUE and PITKIN AVENUE, ASHFORD STREET between ATLANTIC AVENUE and FULTON STREET",Brooklyn,5,75,Television,Episodic series,United States of America,"11207, 11208"
+685644,Shooting Permit,12/13/2022 10:00:00 AM,12/13/2022 11:59:00 PM,12/09/2022 08:31:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","81 STREET between DITMARS BOULEVARD and GRAND CENTRAL PARKWAY, DITMARS BOULEVARD between 80 STREET and 81 STREET, 81 STREET between DITMARS BOULEVARD and 19 AVENUE, 112 STREET between 107 AVENUE and 109 AVENUE, 107 AVENUE between 110 STREET and 111 STREET, 107 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 112 STREET and 113 STREET, 113 STREET between 107 AVENUE and 109 AVENUE, 107 AVENUE between 113 STREET and 114 STREET",Queens,"1, 10, 80","106, 114, 115",Television,Made for TV/mini-series,United States of America,"11370, 11371, 11419"
+685639,Shooting Permit,12/10/2022 01:01:00 PM,12/10/2022 11:59:00 PM,12/09/2022 06:16:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685631,Shooting Permit,12/16/2022 06:00:00 AM,12/16/2022 10:00:00 PM,12/08/2022 09:56:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10018
+685630,Shooting Permit,12/15/2022 08:00:00 AM,12/15/2022 10:00:00 PM,12/08/2022 09:51:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10018
+685616,Shooting Permit,12/13/2022 09:00:00 AM,12/13/2022 01:00:00 PM,12/08/2022 05:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",47 STREET between 39 AVENUE and SKILLMAN AVENUE,Queens,2,108,Television,Episodic series,United States of America,11104
+685607,Shooting Permit,12/09/2022 07:00:00 AM,12/09/2022 09:00:00 PM,12/08/2022 04:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685599,Shooting Permit,12/09/2022 07:00:00 AM,12/10/2022 01:00:00 AM,12/08/2022 03:46:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 71 STREET and EAST 68 STREET, EAST 71 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, EAST 72 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, EAST 80 STREET between 3 AVENUE and 2 AVENUE, EAST 81 STREET between 3 AVENUE and 2 AVENUE, EAST 81 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 80 STREET and EAST 81 STREET, 3 AVENUE between EAST 81 STREET and EAST 82 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 70 STREET and EAST 66 STREET, EAST 66 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10028, 10065, 10075"
+685598,Shooting Permit,12/14/2022 08:00:00 AM,12/15/2022 12:00:00 AM,12/08/2022 03:45:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between EVERIT STREET and ELIZABETH PLACE, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+685575,Shooting Permit,01/09/2023 06:00:00 AM,01/09/2023 11:00:00 PM,12/08/2022 02:22:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+685564,Theater Load in and Load Outs,12/13/2022 12:01:00 AM,12/13/2022 11:59:00 PM,12/08/2022 01:52:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 56 STREET and WEST 57 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+685563,Shooting Permit,12/14/2022 06:00:00 AM,12/14/2022 08:00:00 PM,12/08/2022 01:51:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between WEIRFIELD STREET and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and JEFFERSON STREET, HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+685558,Shooting Permit,12/15/2022 06:00:00 AM,12/15/2022 06:00:00 PM,12/08/2022 01:41:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between 5 AVENUE and 6 AVENUE, FLATBUSH AVENUE between SAINT MARKS AVENUE and PARK PLACE, 7 AVENUE between PARK PLACE and STERLING PLACE, 7 AVENUE between STERLING PLACE and LINCOLN PLACE, EASTERN PARKWAY between WASHINGTON AVENUE and UNDERHILL AVENUE, WASHINGTON AVENUE between EASTERN PARKWAY and CLASSON AVENUE, OCEAN AVENUE between FLATBUSH AVENUE and LINCOLN ROAD, OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE",Brooklyn,"55, 6, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11215, 11217, 11225, 11238"
+685530,Shooting Permit,12/10/2022 08:00:00 AM,12/10/2022 09:00:00 PM,12/08/2022 12:36:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, HENRY STREET between OLD FULTON STREET and MIDDAGH STREET, HENRY STREET between ORANGE STREET and PINEAPPLE STREET, HENRY STREET between CLARK STREET and PINEAPPLE STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, FURMAN STREET between DOUGHTY STREET and MONTAGUE STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, WATER STREET between MAIN STREET and DOCK STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+685510,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 08:00:00 PM,12/08/2022 11:34:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, SCHAEFER STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, DECATUR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+685481,Shooting Permit,12/14/2022 08:00:00 AM,12/14/2022 10:00:00 PM,12/08/2022 09:36:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+685473,Shooting Permit,12/12/2022 10:00:00 AM,12/12/2022 11:59:00 PM,12/08/2022 07:57:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY, 57 ROAD between 59 STREET and 61 STREET, 61 STREET between MASPETH AVENUE and 57 ROAD, MASPETH AVENUE between 61 STREET and 60 STREET",Queens,"2, 5","104, 108",Television,Made for TV/mini-series,United States of America,"11101, 11378"
+685472,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 11:00:00 PM,12/08/2022 07:38:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 42 STREET and EAST 47 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 49 STREET and EAST 47 STREET, EAST 48 STREET between 3 AVENUE and 2 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10017
+685464,Shooting Permit,12/12/2022 05:00:00 AM,12/12/2022 11:00:00 PM,12/07/2022 11:47:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between BROADWAY and 6 AVENUE, WEST 42 STREET between BROADWAY and 6 AVENUE, BROADWAY between WEST 42 STREET and WEST 41 STREET, WEST 38 STREET between 7 AVENUE and 5 AVENUE",Manhattan,5,14,Television,Cable-episodic,United States of America,"10018, 10036"
+685449,Shooting Permit,12/12/2022 04:00:00 AM,12/12/2022 06:00:00 PM,12/07/2022 06:33:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10019, 10020"
+685448,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 11:00:00 PM,12/07/2022 06:14:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","14 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 14 STREET and 13 STREET, 8 AVENUE between 13 STREET and 12 STREET, 8 AVENUE between 12 STREET and 11 STREET, 13 STREET between 7 AVENUE and 8 AVENUE, 14 STREET between 7 AVENUE and 8 AVENUE, PROSPECT AVENUE between HOWARD PLACE and PROSPECT PARK WEST, PROSPECT PARK SOUTHWEST between PROSPECT PARK WEST and 10 AVENUE, PROSPECT PARK SOUTHWEST between 10 AVENUE and 11 AVENUE",Brooklyn,"55, 6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+685436,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 11:00:00 PM,12/07/2022 05:23:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between FROST STREET and RICHARDSON STREET, BAYARD STREET between MANHATTAN AVENUE and LEONARD STREET, LORIMER STREET between RICHARDSON STREET and BAYARD STREET, BAYARD STREET between LORIMER STREET and LEONARD STREET, BAYARD STREET between LORIMER STREET and UNION AVENUE, LEONARD STREET between BAYARD STREET and RICHARDSON STREET, LORIMER STREET between BAYARD STREET and DRIGGS AVENUE, NORTH 12 STREET between UNION AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+685432,Shooting Permit,12/12/2022 02:00:00 PM,12/12/2022 09:00:00 PM,12/07/2022 05:12:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDSON STREET between UNION AVENUE and LORIMER STREET, LORIMER ST between FROST STREET and MEEKER AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11211
+685419,Shooting Permit,12/14/2022 06:00:00 AM,12/14/2022 11:59:00 PM,12/07/2022 04:21:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between BROOME STREET and HOWARD STREET, GRAND STREET between BROADWAY and LAFAYETTE STREET",Manhattan,2,5,Commercial,Commercial,United States of America,10013
+685415,Shooting Permit,12/10/2022 07:00:00 AM,12/10/2022 07:00:00 PM,12/07/2022 04:09:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between EAST 59 STREET and EAST 58 STREET,Manhattan,"5, 6","17, 18",Commercial,Commercial,United States of America,10022
+685413,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 08:00:00 PM,12/07/2022 04:03:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+685370,Shooting Permit,12/13/2022 07:00:00 AM,12/13/2022 06:00:00 PM,12/07/2022 02:16:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOBLE STREET between WEST STREET and FRANKLIN STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, FRANKLIN STREET between NOBLE STREET and OAK STREET, WEST STREET between GREENPOINT AVENUE and NOBLE STREET, GREENPOINT AVENUE between WEST STREET and FRANKLIN STREET, FRANKLIN STREET between GREENPOINT AVENUE and MILTON STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685369,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 05:00:00 PM,12/07/2022 02:11:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685366,Shooting Permit,12/11/2022 06:00:00 AM,12/11/2022 02:00:00 PM,12/07/2022 02:02:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between FULTON STREET and GREENE AVENUE, CLERMONT AVENUE between FULTON STREET and GREENE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET",Brooklyn,"1, 2","88, 94",Still Photography,Not Applicable,United States of America,"11222, 11238"
+685365,Shooting Permit,12/13/2022 07:00:00 AM,12/13/2022 07:00:00 PM,12/07/2022 01:53:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685355,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 07:00:00 PM,12/07/2022 01:05:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685352,Shooting Permit,12/10/2022 06:00:00 AM,12/10/2022 06:00:00 PM,12/07/2022 12:52:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE, MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE, MESEROLE AVENUE between ECKFORD STREET and MANHATTAN AVENUE, CLERMONT AVENUE between FULTON STREET and GREENE AVENUE, CLERMONT AVENUE between FULTON STREET and GREENE AVENUE",Brooklyn,"1, 2, 3","79, 88, 94",Still Photography,Not Applicable,United States of America,"11222, 11238"
+685351,Shooting Permit,12/09/2022 07:00:00 AM,12/09/2022 07:00:00 PM,12/07/2022 12:50:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685349,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 06:00:00 PM,12/07/2022 12:44:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685335,Shooting Permit,12/12/2022 04:00:00 AM,12/12/2022 10:00:00 AM,12/07/2022 11:20:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685327,Shooting Permit,12/11/2022 12:00:00 AM,12/11/2022 01:00:00 PM,12/07/2022 10:37:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685325,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 10:00:00 PM,12/07/2022 10:35:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between 14 STREET and 13 STREET, 8 AVENUE between 14 STREET and 15 STREET, 14 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 13 STREET and 12 STREET, 8 AVENUE between 12 STREET and 11 STREET, 13 STREET between 7 AVENUE and 8 AVENUE, 14 STREET between 7 AVENUE and 8 AVENUE, PROSPECT AVENUE between HOWARD PLACE and PROSPECT PARK WEST, PROSPECT PARK SOUTHWEST between PROSPECT PARK WEST and 10 AVENUE, PROSPECT PARK SOUTHWEST between 10 AVENUE and 11 AVENUE",Brooklyn,"55, 6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+685324,Shooting Permit,12/10/2022 12:00:00 AM,12/10/2022 01:00:00 PM,12/07/2022 10:32:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685316,Shooting Permit,12/09/2022 08:00:00 AM,12/09/2022 10:00:00 PM,12/07/2022 08:30:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, WYTHE AVENUE between BANKER STREET and NORTH 15 STREET, WYTHE AVENUE between NORTH 15 STREET and NORTH 14 STREET, NORTH 15 STREET between WYTHE AVENUE and NASSAU AVENUE, NORTH 15 STREET between GEM STREET and FRANKLIN STREET, BANKER STREET between NORTH 15 STREET and NASSAU AVENUE, NORMAN AVENUE between DOBBIN STREET and BANKER STREET, NORMAN AVENUE between GUERNSEY STREET and LORIMER STREET, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, BEDFORD AVENUE between NASSAU AVENUE and NORTH 12 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222, 11249"
+685294,Shooting Permit,01/06/2023 07:00:00 AM,01/06/2023 11:00:00 PM,12/06/2022 07:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685293,Shooting Permit,01/05/2023 07:00:00 AM,01/05/2023 11:00:00 PM,12/06/2022 07:38:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685292,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 11:00:00 PM,12/06/2022 07:37:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685291,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 11:00:00 PM,12/06/2022 07:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685290,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 11:00:00 PM,12/06/2022 07:36:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685289,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 09:00:00 PM,12/06/2022 07:35:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between WALL STREET and OLD SLIP, OLD SLIP between WATER STREET and FRONT STREET, OLD SLIP between FRONT STREET and SOUTH STREET, HANOVER SQUARE between STONE STREET and WATER STREET, PEARL STREET between COENTIES SLIP and WALL STREET, WALL STREET between PEARL STREET and WATER STREET, SOUTH STREET between OLD SLIP and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+685280,Shooting Permit,12/09/2022 09:00:00 AM,12/10/2022 01:00:00 AM,12/06/2022 05:43:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MELBOURNE AVENUE between 149 STREET and KISSENA BOULEVARD, 38 AVENUE between CORPORAL KENNEDY STREET and BELL BOULEVARD, BELL BOULEVARD between 38 AVENUE and 39 AVENUE, 212 STREET between 38 AVENUE and 39 AVENUE",Queens,"11, 8","107, 111",Television,Episodic series,United States of America,"11361, 11367"
+685278,Shooting Permit,12/09/2022 12:00:00 PM,12/10/2022 02:00:00 AM,12/06/2022 05:39:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLES STREET between WAVERLY PLACE and GREENWICH AVENUE, WAVERLY PLACE between WEST 10 STREET and CHARLES STREET, GREENWICH AVENUE between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between CHARLES STREET and PERRY STREET, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE, 6 AVENUE between WEST 10 STREET and WEST 9 STREET, 6 AVENUE between WEST 8 STREET and WEST 9 STREET, 7 AVENUE SOUTH between PERRY STREET and WEST 11 STREET, GREENWICH AVENUE between WEST 11 STREET and HORATIO STREET",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10011, 10014"
+685274,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 07:00:00 PM,12/06/2022 05:07:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST MAIN STREET between WEST ROAD and NORTH LOOP ROAD, WEST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD",Manhattan,8,114,Television,Episodic series,United States of America,10044
+685273,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 11:59:00 PM,12/06/2022 05:04:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","50 STREET between SKILLMAN AVENUE and 43 AVENUE, QUEENS BOULEVARD between 52 STREET and 58 STREET, SKILLMAN AVENUE between 48 STREET and 51 STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11104, 11222, 11377"
+685270,Shooting Permit,12/13/2022 07:00:00 AM,12/13/2022 09:00:00 PM,12/06/2022 04:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, FRANKLIN STREET between EAGLE STREET and FREEMAN STREET, WEST STREET between EAGLE STREET and GREEN STREET, MANHATTAN AVENUE between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685267,Shooting Permit,12/15/2022 08:30:00 AM,12/15/2022 11:00:00 PM,12/06/2022 04:31:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 6 AVENUE and 5 AVENUE, WEST 12 STREET between 6 AVENUE and 5 AVENUE, WEST 11 STREET between 6 AVENUE and 5 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011"
+685265,Shooting Permit,12/08/2022 04:00:00 AM,12/08/2022 10:00:00 AM,12/06/2022 04:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+685264,Shooting Permit,12/09/2022 07:00:00 AM,12/09/2022 11:00:00 PM,12/06/2022 04:08:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+685258,Theater Load in and Load Outs,12/28/2022 07:00:00 AM,12/28/2022 10:00:00 PM,12/06/2022 03:39:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+685257,Shooting Permit,12/14/2022 08:00:00 AM,12/14/2022 09:00:00 PM,12/06/2022 03:35:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between DEAD END and WEST STREET, KENT STREET between DEAD END and WEST STREET, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685219,Rigging Permit,12/07/2022 05:30:00 PM,12/07/2022 10:30:00 PM,12/06/2022 01:55:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+685218,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 09:00:00 PM,12/06/2022 01:55:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 10 AVENUE and 11 AVENUE, WEST 21 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+685216,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 09:00:00 PM,12/06/2022 01:47:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE, ST JAMES PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, DEKALB AVENUE between WAVERLY AVENUE and HALL STREET, DEKALB AVENUE between HALL STREET and CLASSON AVENUE, WASHINGTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, WILLOUGHBY AVENUE between WAVERLY AVENUE and HALL STREET, MYRTLE AVENUE between VANDERBILT AVENUE and WAVERLY AVENUE, MYRTLE AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, MYRTLE AVENUE between WASHINGTON AVENUE and HALL STREET, MYRTLE AVENUE between HALL STREET and CLASSON AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+685205,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 11:00:00 PM,12/06/2022 01:05:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685202,Shooting Permit,12/09/2022 06:00:00 AM,12/09/2022 05:00:00 PM,12/06/2022 12:56:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",PROSPECT PARK WEST between 3 STREET and 4 STREET,Brooklyn,"55, 6",78,Still Photography,Not Applicable,United States of America,11215
+685197,Shooting Permit,12/13/2022 09:00:00 AM,12/13/2022 09:00:00 PM,12/06/2022 12:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 6 AVENUE and 5 AVENUE, WEST 12 STREET between 6 AVENUE and 5 AVENUE, WEST 11 STREET between 6 AVENUE and 5 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011"
+685194,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 11:00:00 PM,12/06/2022 12:26:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685190,Shooting Permit,12/09/2022 10:00:00 AM,12/09/2022 11:30:00 PM,12/06/2022 12:15:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 16 STREET between NEWKIRK AVENUE and DITMAS AVENUE, NEWKIRK AVENUE between EAST 16 STREET and EAST 17 STREET, EAST 16 STREET between NEWKIRK AVENUE and FOSTER AVENUE, EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD, PINE STREET between NASSAU STREET and BROADWAY, BROADWAY between JOHN STREET and MAIDEN LANE, BROADWAY between MAIDEN LANE and LIBERTY STREET, DORCHESTER ROAD between EAST 19 STREET and EAST 18 STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET",Brooklyn,"1, 14","1, 70",Film,Feature,United States of America,"10005, 10006, 10007, 10038, 10045, 11226"
+685159,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 09:00:00 PM,12/06/2022 08:07:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between VARICK STREET and HUDSON STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+685158,Shooting Permit,12/08/2022 08:00:00 AM,12/08/2022 10:00:00 PM,12/06/2022 08:03:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLES STREET between WAVERLY PLACE and GREENWICH AVENUE, WAVERLY PLACE between WEST 10 STREET and CHARLES STREET, GREENWICH AVENUE between WEST 10 STREET and CHARLES STREET, GREENWICH AVENUE between CHARLES STREET and PERRY STREET, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE, 6 AVENUE between WEST 10 STREET and WEST 9 STREET, 6 AVENUE between WEST 9 STREET and WEST 8 STREET, 7 AVENUE SOUTH between PERRY STREET and WEST 11 STREET, GREENWICH AVENUE between WEST 11 STREET and HORATIO STREET, PERRY STREET between WEST 4 STREET and 7 AVENUE SOUTH",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10011, 10014"
+685143,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 11:00:00 PM,12/05/2022 07:48:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between FLUSHING AVENUE and WOODWARD AVENUE, WOODWARD AVENUE between STARR STREET and HART STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+685141,Shooting Permit,12/08/2022 07:30:00 AM,12/08/2022 11:00:00 PM,12/05/2022 07:12:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between 149 STREET and 150 STREET, 9 AVENUE between 149 STREET and 150 STREET, 149 STREET between 7 AVENUE and 10 AVENUE, 8 AVENUE between 149 STREET and 147 STREET, 7 AVENUE between 149 STREET and 147 STREET, 3 AVENUE between WHITESTONE EXPRESSWAY and 147 STREET, WHITESTONE EXPY between 3 AVE and 4 AVE, 147 STREET between 3 AVENUE and 4 AVENUE",Queens,7,109,Television,Cable-episodic,United States of America,11357
+685135,Shooting Permit,12/14/2022 06:00:00 AM,12/14/2022 11:00:00 PM,12/05/2022 05:38:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685134,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 11:00:00 PM,12/05/2022 05:38:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685122,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 06:00:00 PM,12/05/2022 04:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK ROW between ANN STREET and BEEKMAN STREET, BROAD STREET between SOUTH STREET and WATER STREET",Manhattan,"1, 3","1, 5",Still Photography,Not Applicable,United States of America,"10004, 10005, 10007, 10013, 10038, 10279"
+685117,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 11:00:00 PM,12/05/2022 04:09:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685100,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 04:00:00 PM,12/05/2022 03:34:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",HENRY STREET between CRANBERRY STREET and PINEAPPLE STREET,Brooklyn,"1, 2","1, 84",Commercial,Commercial,United States of America,"10007, 11201"
+685091,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 09:00:00 PM,12/05/2022 03:10:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 47 STREET and EAST 51 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 47 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 47 STREET and EAST 46 STREET, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10171, 10172, 10173"
+685086,Shooting Permit,12/08/2022 09:00:00 AM,12/08/2022 11:00:00 PM,12/05/2022 03:02:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 47 STREET and EAST 51 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 47 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 47 STREET and EAST 46 STREET, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10171, 10172, 10173"
+685076,Theater Load in and Load Outs,12/08/2022 12:01:00 AM,12/09/2022 11:59:00 PM,12/05/2022 02:44:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+685074,Theater Load in and Load Outs,01/01/2023 12:01:00 AM,01/15/2023 06:00:00 AM,12/05/2022 02:32:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+685073,Shooting Permit,12/09/2022 06:00:00 AM,12/09/2022 08:00:00 PM,12/05/2022 02:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+685072,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 08:00:00 PM,12/05/2022 02:27:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+685071,Shooting Permit,12/12/2022 08:00:00 AM,12/12/2022 10:00:00 PM,12/05/2022 02:24:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WILSON AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET,Brooklyn,4,83,Film,Short,United States of America,11237
+685055,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 07:00:00 PM,12/05/2022 01:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10001
+685052,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 11:00:00 PM,12/05/2022 12:46:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+685042,Shooting Permit,12/11/2022 07:00:00 AM,12/11/2022 08:00:00 PM,12/05/2022 12:13:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685038,Shooting Permit,12/09/2022 11:00:00 AM,12/10/2022 01:00:00 AM,12/05/2022 11:58:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685036,Shooting Permit,12/15/2022 07:00:00 AM,12/15/2022 09:00:00 PM,12/05/2022 11:48:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+685029,Shooting Permit,12/16/2022 07:00:00 AM,12/16/2022 09:00:00 PM,12/05/2022 11:36:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+685024,Shooting Permit,12/14/2022 07:00:00 AM,12/14/2022 09:00:00 PM,12/05/2022 11:30:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+685021,Shooting Permit,12/13/2022 07:00:00 AM,12/13/2022 09:00:00 PM,12/05/2022 11:24:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+685018,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 11:00:00 PM,12/05/2022 11:14:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+685017,Shooting Permit,12/08/2022 06:00:00 AM,12/09/2022 11:59:00 PM,12/05/2022 11:11:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET, SKILLMAN AVENUE between 47 AVENUE and THOMSON AVENUE, OAK STREET between FRANKLIN STREET and GUERNSEY STREET, OAK STREET between FRANKLIN STREET and GUERNSEY STREET, GUERNSEY STREET between OAK STREET and CALYER STREET, FRANKLIN ST between OAK STREET and BANKER STREET, CALYER STREET between CLIFFORD PLACE and GUERNSEY STREET, CALYER STREET between GUERNSEY STREET and LORIMER STREET, CALYER STREET between LORIMER STREET and MANHATTAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+685016,Shooting Permit,12/09/2022 06:00:00 AM,12/09/2022 11:00:00 PM,12/05/2022 10:59:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685015,Shooting Permit,12/12/2022 07:00:00 AM,12/12/2022 09:00:00 PM,12/05/2022 10:51:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+685014,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 08:00:00 PM,12/05/2022 10:46:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and EAST 10 STREET, EAST 9 STREET between AVENUE A and 1 AVENUE, EAST 10 STREET between AVENUE A and 1 AVENUE, EAST 35 STREET between 5 AVENUE and MADISON AVENUE, EAST 35 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"3, 5, 6","14, 17, 9",Commercial,Commercial,United States of America,"10009, 10016"
+685012,Shooting Permit,12/09/2022 09:00:00 AM,12/09/2022 11:00:00 PM,12/05/2022 10:45:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between BROADWAY and 7 AVENUE, WEST 56 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, 7 AVENUE between WEST 56 STREET and WEST 57 STREET, PARK AVENUE between EAST 47 STREET and EAST 51 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10019, 10022, 10106, 10171, 10172"
+685011,Shooting Permit,12/08/2022 10:00:00 AM,12/09/2022 01:00:00 AM,12/05/2022 10:40:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685010,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 10:00:00 PM,12/05/2022 10:39:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+685007,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 08:00:00 PM,12/05/2022 10:28:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 22 STREET and WEST 23 STREET, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+685003,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 11:00:00 PM,12/05/2022 09:58:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 26 STREET and EAST 27 STREET, EAST 27 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 30 STREET, EAST 28 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, EAST 28 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"13, 14",Television,Episodic series,United States of America,"10010, 10016"
+685002,Shooting Permit,12/09/2022 08:00:00 AM,12/09/2022 11:30:00 PM,12/05/2022 09:47:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+685000,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 11:00:00 PM,12/05/2022 09:44:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+684999,Shooting Permit,12/07/2022 09:00:00 AM,12/07/2022 10:00:00 PM,12/05/2022 09:40:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALBION AVENUE between BARNWELL AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 76 STREET and BARNWELL AVENUE, BARNWELL AVENUE between QUEENS BOULEVARD and POYER STREET, SOUTH RAILROAD AVENUE between POYER STREET and BROADWAY, BROADWAY between SOUTH RAILROAD AVENUE and CORONA AVENUE",Queens,4,110,Television,Cable-episodic,United States of America,11373
+684997,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 08:00:00 PM,12/05/2022 09:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+684982,Shooting Permit,12/07/2022 05:00:00 PM,12/08/2022 09:00:00 AM,12/05/2022 09:00:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between WEST STREET and WASHINGTON STREET, READE STREET between GREENWICH STREET and WEST BROADWAY, PARK PLACE between GREENWICH STREET and WEST BROADWAY, WORTH STREET between HUDSON STREET and BROADWAY, CHURCH STREET between WORTH STREET and LEONARD STREET, GREENWICH STREET between READE STREET and DUANE STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10007, 10013"
+684980,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 11:00:00 PM,12/05/2022 08:59:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+684978,Shooting Permit,12/07/2022 08:00:00 AM,12/07/2022 10:00:00 PM,12/05/2022 08:54:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","149 STREET between 95 AVENUE and 97 AVENUE, 95 AVENUE between 150 STREET and 149 STREET, 95 AVENUE between 149 STREET and 148 STREET, 95 AVENUE between 148 STREET and SUTPHIN BOULEVARD, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,"12, 2","103, 108",Television,Made for TV/mini-series,United States of America,"11101, 11378, 11435"
+684907,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 11:00:00 PM,12/04/2022 11:58:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684867,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 11:00:00 PM,12/02/2022 04:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+684866,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 11:00:00 PM,12/02/2022 04:18:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+684865,Shooting Permit,12/15/2022 10:00:00 AM,12/16/2022 12:00:00 AM,12/02/2022 04:15:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 72 STREET, CENTRAL PARK WEST between WEST 81 STREET and WEST 77 STREET, WEST 72 STREET between AMSTERDAM AVENUE and CENTRAL PARK WEST, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, EAST 32 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, EAST 31 STREET between 3 AVENUE and 2 AVENUE, WEST 83 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,"6, 64, 7","17, 20, 22",Television,Episodic series,United States of America,"10016, 10023, 10024"
+684860,Theater Load in and Load Outs,12/05/2022 12:01:00 AM,12/05/2022 11:59:00 PM,12/02/2022 03:47:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+684848,Shooting Permit,12/07/2022 01:00:00 AM,12/07/2022 04:00:00 PM,12/02/2022 03:25:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684831,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 10:00:00 PM,12/02/2022 02:25:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+684826,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 11:00:00 PM,12/02/2022 02:14:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WAVERLY PLACE and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10012, 10014"
+684796,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 10:00:00 PM,12/02/2022 12:50:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, BOERUM PLACE between STATE STREET and LIVINGSTON STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET, 10 STREET between 43 AVENUE and 44 AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET",Brooklyn,2,"108, 84",Television,Episodic series,United States of America,"11101, 11201"
+684788,Shooting Permit,12/13/2022 09:00:00 AM,12/13/2022 11:00:00 PM,12/02/2022 12:14:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 19 STREET and EAST 18 STREET, EAST 19 STREET between BROADWAY and 5 AVENUE",Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+684787,Shooting Permit,12/12/2022 09:00:00 AM,12/12/2022 10:00:00 PM,12/02/2022 12:14:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between EAST 18 STREET and EAST 19 STREET,Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+684778,Shooting Permit,12/14/2022 06:00:00 AM,12/14/2022 10:00:00 PM,12/02/2022 11:36:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 173 STREET, WEST 176 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, BROADWAY between WEST 176 STREET and WEST 174 STREET",Manhattan,12,33,Commercial,Commercial,United States of America,10033
+684777,Shooting Permit,12/13/2022 06:00:00 AM,12/13/2022 10:00:00 PM,12/02/2022 11:36:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 173 STREET, WEST 176 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, BROADWAY between WEST 176 STREET and WEST 174 STREET",Manhattan,12,33,Commercial,Commercial,United States of America,10033
+684776,Shooting Permit,12/07/2022 06:00:00 AM,12/08/2022 12:00:00 AM,12/02/2022 11:21:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 23 STREET and WEST 28 STREET, WEST 27 STREET between 6 AVENUE and BROADWAY, WEST 25 STREET between 6 AVENUE and BROADWAY, EAST 21 STREET between GRAMERCY PARK WEST and LEXINGTON AVENUE, GRAMERCY PARK W between EAST 21 STREET and EAST 20 STREET, EAST 22 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 20 STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, E 20TH ST between PARK AVENUE SOUTH and GRAMERCY PARK WEST, IRVING PLACE between EAST 20 STREET and EAST 19 STREET, EAST 23 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 26 STREET",Manhattan,"4, 5, 6",13,Television,Episodic series,United States of America,"10001, 10003, 10010"
+684774,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 10:00:00 PM,12/02/2022 10:59:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between PEARL STREET and WATER STREET, WALL STREET between WATER STREET and FRONT STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between MAIDEN LANE and WALL STREET, FRONT STREET between WALL STREET and GOUVERNEUR LANE, FRONT STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, JOHN STREET between WATER STREET and FRONT STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+684769,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 09:00:00 PM,12/02/2022 10:41:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROTONA AVENUE between EAST 187 STREET and EAST FORDHAM ROAD, EAST 189 STREET between CROTONA AVENUE and BEAUMONT AVENUE",Manhattan,"11, 6","25, 48",Television,Episodic series,United States of America,"10035, 10458"
+684766,Theater Load in and Load Outs,12/03/2022 12:01:00 AM,12/03/2022 11:59:00 PM,12/02/2022 10:32:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+684762,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 08:00:00 PM,12/02/2022 10:10:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between BEVERLEY ROAD and TURNER PLACE, PARKSIDE AVENUE between PARADE PLACE and PARK CIRCLE",Brooklyn,"14, 55","70, 78",Commercial,Commercial,United States of America,"11215, 11218, 11226"
+684758,Shooting Permit,12/06/2022 10:00:00 AM,12/06/2022 11:00:00 PM,12/02/2022 09:36:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","81 STREET between DITMARS BOULEVARD and GRAND CENTRAL PARKWAY, DITMARS BOULEVARD between 81 STREET and 80 STREET, 81 STREET between DITMARS BOULEVARD and 19 AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY, 57 ROAD between 59 STREET and 61 STREET, MASPETH AVENUE between 61 STREET and 60 STREET",Queens,"1, 2, 5, 80","104, 108, 114, 115",Television,Made for TV/mini-series,United States of America,"11101, 11370, 11371, 11378"
+684750,Theater Load in and Load Outs,12/12/2022 12:01:00 AM,12/13/2022 11:59:00 PM,12/02/2022 09:07:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+684747,Shooting Permit,12/06/2022 05:00:00 PM,12/07/2022 09:00:00 AM,12/02/2022 08:57:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between WEST STREET and WASHINGTON STREET, READE STREET between GREENWICH STREET and WEST BROADWAY, PARK PLACE between GREENWICH STREET and WEST BROADWAY, WORTH STREET between HUDSON STREET and BROADWAY, CHURCH STREET between WORTH STREET and LEONARD STREET, GREENWICH STREET between READE STREET and DUANE STREET",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+684742,Rigging Permit,12/05/2022 10:00:00 PM,12/06/2022 01:00:00 PM,12/02/2022 08:19:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 21 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+684741,Rigging Permit,12/05/2022 07:00:00 AM,12/05/2022 02:00:00 PM,12/02/2022 08:18:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 21 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+684740,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 10:00:00 PM,12/02/2022 08:18:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 20 STREET and WEST 21 STREET, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, WEST 21 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+684722,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 11:00:00 PM,12/01/2022 11:00:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684720,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 11:00:00 PM,12/01/2022 10:38:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between GREENWICH STREET and CHURCH STREET, WEST BROADWAY between WARREN STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, WEST BROADWAY between MURRAY STREET and PARK PLACE, WEST STREET between CHAMBERS STREET and NORTH MOORE STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10007, 10013"
+684718,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 08:00:00 PM,12/01/2022 10:33:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, KENT STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684691,Shooting Permit,12/12/2022 06:00:00 AM,12/12/2022 10:00:00 PM,12/01/2022 06:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between VARICK STREET and 6 AVENUE, YORK STREET between SAINT JOHN'S LANE and 6 AVENUE, BEACH STREET between VARICK STREET and SAINT JOHN'S LANE, WALKER STREET between BEACH STREET and BROADWAY, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and LEONARD STREET, DUANE STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between DUANE STREET and READE STREET, READE STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between DUANE STREET and READE STREET, HUDSON STREET between DUANE STREET and HARRISON STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+684668,Shooting Permit,12/06/2022 07:00:00 AM,12/07/2022 02:00:00 AM,12/01/2022 04:06:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 24 STREET and WEST 28 STREET, WEST 27 STREET between 6 AVENUE and BROADWAY, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 23 STREET between 6 AVENUE and 9 AVENUE, 8 AVENUE between WEST 22 STREET and WEST 23 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+684651,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 06:30:00 PM,12/01/2022 03:29:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 41 STREET and EAST 40 STREET, PARK AVENUE between EAST 34 STREET and EAST 35 STREET, PARK AVENUE between EAST 35 STREET and EAST 36 STREET, PARK AVENUE between EAST 36 STREET and EAST 37 STREET, PARK AVENUE between EAST 36 STREET and EAST 37 STREET, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 38 STREET, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, EAST 35 STREET between MADISON AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,"10016, 10017"
+684641,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 07:00:00 PM,12/01/2022 03:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11237
+684618,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 04:00:00 PM,12/01/2022 01:45:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"4, 5, 64","18, 22",Television,Reality,United States of America,"10019, 10023, 10024, 10025"
+684614,Shooting Permit,12/09/2022 06:00:00 AM,12/09/2022 10:00:00 PM,12/01/2022 01:38:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between COMMERCE STREET and SEABRING STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+684611,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 10:00:00 PM,12/01/2022 01:29:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between COMMERCE STREET and SEABRING STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+684609,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 10:00:00 PM,12/01/2022 01:19:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between SEABRING STREET and COMMERCE STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+684606,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 10:00:00 PM,12/01/2022 01:14:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, PARK AVENUE between EAST 66 STREET and EAST 64 STREET, EAST 65 STREET between MADISON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 66 STREET and EAST 64 STREET, JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Manhattan,"1, 8","19, 94",Television,Episodic series,United States of America,"10065, 11222"
+684604,Theater Load in and Load Outs,12/05/2022 12:01:00 AM,12/06/2022 06:00:00 AM,12/01/2022 01:09:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+684584,Theater Load in and Load Outs,12/31/2022 12:01:00 AM,01/01/2023 06:00:00 AM,12/01/2022 12:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+684583,Theater Load in and Load Outs,12/31/2022 12:01:00 AM,01/01/2023 06:00:00 AM,12/01/2022 12:29:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+684581,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 10:00:00 PM,12/01/2022 12:28:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOERUM PLACE between LIVINGSTON STREET and SCHERMERHORN STREET, BOERUM PLACE between SCHERMERHORN STREET and STATE STREET, SCHERMERHORN STREET between BOERUM PLACE and COURT STREET, COURT STREET between LIVINGSTON STREET and SCHERMERHORN STREET, SCHERMERHORN STREET between COURT STREET and CLINTON STREET",Brooklyn,"12, 2, 7","66, 72, 84",Film,Feature,United States of America,"11201, 11215, 11218, 11232"
+684580,Theater Load in and Load Outs,12/31/2022 12:01:00 AM,01/01/2023 06:00:00 AM,12/01/2022 12:28:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+684575,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 07:00:00 PM,12/01/2022 12:24:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 108 STREET and EAST 109 STREET, 5TH AVE between EAST 109 STREET and DUKE ELLINGTON CIRCLE",Manhattan,"11, 64","22, 23",Still Photography,Not Applicable,United States of America,"10023, 10024, 10025, 10029"
+684555,Shooting Permit,12/03/2022 06:00:00 AM,12/03/2022 11:00:00 PM,12/01/2022 11:44:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684550,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 09:00:00 PM,12/01/2022 11:39:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 67 STREET and EAST 62 STREET, PARK AVENUE between EAST 67 STREET and EAST 64 STREET, PARK AVENUE between EAST 62 STREET and EAST 61 STREET, PARK AVENUE between EAST 61 STREET and EAST 60 STREET, EAST 61 STREET between MADISON AVENUE and PARK AVENUE, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 64 STREET and EAST 62 STREET, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+684530,Shooting Permit,01/10/2023 07:00:00 AM,01/10/2023 09:00:00 PM,12/01/2022 10:58:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and 47 AVENUE, 48 AVENUE between 30 PLACE and 30 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+684529,Shooting Permit,01/09/2023 07:00:00 AM,01/09/2023 09:00:00 PM,12/01/2022 10:58:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+684522,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 10:00:00 PM,12/01/2022 10:34:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+684520,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 11:00:00 PM,12/01/2022 10:26:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+684516,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 10:00:00 PM,12/01/2022 10:20:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEWIS AVENUE between MACDONOUGH STREET and DECATUR STREET, LEWIS AVENUE between DECATUR STREET and BAINBRIDGE STREET, LEWIS AVENUE between MACDONOUGH STREET and MACON STREET, MACON STREET between LEWIS AVENUE and STUYVESANT AVENUE, MACDONOUGH STREET between LEWIS AVENUE and STUYVESANT AVENUE, STUYVESANT AVENUE between MACDONOUGH STREET and DECATUR STREET, DECATUR STREET between LEWIS AVENUE and STUYVESANT AVENUE, FULTON STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE, FULTON STREET between LEWIS AVENUE and STUYVESANT AVENUE",Brooklyn,3,81,Television,Cable-episodic,United States of America,"11213, 11233"
+684511,Shooting Permit,12/07/2022 11:00:00 AM,12/08/2022 01:00:00 AM,12/01/2022 10:09:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684501,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 07:00:00 PM,12/01/2022 09:50:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONTROSE AVENUE between MANHATTAN AVENUE and LEONARD STREET,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11206
+684496,Shooting Permit,12/05/2022 01:00:00 PM,12/06/2022 02:00:00 AM,12/01/2022 09:47:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 110 STREET and 111 STREET, JAMAICA AVENUE between 110 STREET and 109 STREET, JAMAICA AVENUE between 111 STREET and 112 STREET, JAMAICA AVENUE between 112 STREET and 113 STREET, 110 STREET between JAMAICA AVENUE and 86 AVENUE, 111 STREET between JAMAICA AVENUE and 86 AVENUE, 108 STREET between LIBERTY AVENUE and 107 AVENUE, LIBERTY AVENUE between 107 STREET and 108 STREET, LIBERTY AVENUE between 108 STREET and 109 STREET, LIBERTY AVENUE between 106 STREET and 107 STREET, LIBERTY AVENUE between 105 STREET and 106 STREET, 107 STREET between LIBERTY AVENUE and 103 AVENUE, 108 STREET between LIBERTY AVENUE and 103 AVENUE, 112 STREET between 107 AVENUE and 109 AVENUE, 107 AVENUE between 110 STREET and 111 STREET, 107 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 112 STREET and 113 STREET, 113 STREET between 107 AVENUE and 109 AVENUE, 107 AVENUE between 113 STREET and 114 STREET, 101 AVENUE between 107 STREET and 108 STREET",Queens,"10, 9","102, 106",Television,Made for TV/mini-series,United States of America,"11416, 11417, 11418, 11419"
+684495,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 10:00:00 PM,12/01/2022 09:46:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between TALBOT PLACE and BAY STREET,Staten Island,1,120,Television,Episodic series,United States of America,10304
+684481,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 10:00:00 PM,12/01/2022 08:58:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 61 STREET between CENTRAL PARK WEST and BROADWAY, CENTRAL PARK WEST between WEST 61 STREET and WEST 62 STREET, WEST 62 STREET between CENTRAL PARK WEST and BROADWAY, BROADWAY between WEST 62 STREET and WEST 63 STREET, WEST 63 STREET between CENTRAL PARK WEST and BROADWAY, WEST 64 STREET between CENTRAL PARK WEST and BROADWAY, BROADWAY between WEST 65 STREET and WEST 64 STREET, BROADWAY between WEST 64 STREET and WEST 63 STREET",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,10023
+684472,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 11:59:00 PM,12/01/2022 08:32:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and CALYER STREET, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, CALYER STREET between RUSSELL STREET and HUMBOLDT STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684339,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 09:00:00 PM,11/30/2022 04:21:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODWARD AVENUE between GROVE STREET and LINDEN STREET, LINDEN STREET between WOODWARD AVENUE and FAIRVIEW AVENUE, GROVE STREET between FAIRVIEW AVENUE and WOODWARD AVENUE, LINDEN STREET between ONDERDONK AVENUE and WOODWARD AVENUE, ONDERDONK AVENUE between GATES AVENUE and GROVE STREET, GROVE STREET between ONDERDONK AVENUE and WOODWARD AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+684325,Shooting Permit,12/06/2022 08:00:00 AM,12/06/2022 10:00:00 PM,11/30/2022 03:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 82 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Film,Feature,United States of America,10024
+684324,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 09:00:00 PM,11/30/2022 03:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 79 STREET and EAST 80 STREET, PARK AVENUE between EAST 79 STREET and EAST 75 STREET, PARK AVENUE between EAST 71 STREET and EAST 70 STREET, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 72 STREET between MADISON AVENUE and PARK AVENUE, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 78 STREET and EAST 76 STREET, EAST 76 STREET between MADISON AVENUE and 5 AVENUE, EAST 80 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+684320,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 09:00:00 PM,11/30/2022 03:30:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684319,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 09:00:00 PM,11/30/2022 03:30:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684318,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 09:00:00 PM,11/30/2022 03:29:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684317,Shooting Permit,12/05/2022 10:00:00 AM,12/05/2022 11:00:00 PM,11/30/2022 03:22:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","VIELE AVENUE between WHITTIER STREET and BRYANT AVENUE, LONGFELLOW AVENUE between VIELE AVENUE and EAST BAY AVENUE, WHITTIER STREET between VIELE AVENUE and EAST BAY AVENUE, BRYANT AVENUE between VIELE AVENUE and EAST BAY AVENUE, HUNTS POINT AVENUE between SPOFFORD AVENUE and BRYANT AVENUE, BRYANT AVENUE between HUNTS POINT AVENUE and RANDALL AVENUE, BRYANT AVENUE between HUNTS POINT AVENUE and RANDALL AVENUE, HUNTS POINT AVENUE between SPOFFORD AVENUE and LONGFELLOW AVENUE, LONGFELLOW AVENUE between SPOFFORD AVENUE and HUNTS POINT AVENUE, HUNTS POINT AVENUE between BRYANT AVENUE and RANDALL AVENUE, OAK POINT AVENUE between HUNTS POINT AVENUE and LONGFELLOW AVENUE, LONGFELLOW AVENUE between OAK POINT AVENUE and DRAKE PARK SOUTH, DRAKE PARK SOUTH between LONGFELLOW AVENUE and HUNTS POINT AVENUE",Bronx,2,41,Television,Episodic series,United States of America,10474
+684310,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 11:00:00 PM,11/30/2022 03:01:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+684307,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 09:00:00 PM,11/30/2022 02:58:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+684288,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 11:00:00 PM,11/30/2022 02:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between BUSHWICK AVENUE and CHARLES PLACE, MYRTLE AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET, WILLOUGHBY AVENUE between CHARLES PLACE and EVERGREEN AVENUE, CHARLES PLACE between MYRTLE AVENUE and DEAD END, BUSHWICK AVENUE between WILLOUGHBY AVENUE and HART STREET, SUYDAM STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between WILLOUGHBY AVENUE and HART STREET, BROADWAY between HART STREET and LAWTON STREET, BROADWAY between LAWTON STREET and KOSSUTH PLACE",Brooklyn,"3, 4","81, 83",Television,Episodic series,United States of America,11221
+684287,Shooting Permit,12/06/2022 07:00:00 AM,12/06/2022 09:00:00 PM,11/30/2022 02:22:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 69 STREET and EAST 73 STREET, PARK AVENUE between EAST 69 STREET and EAST 68 STREET, PARK AVENUE between EAST 79 STREET and EAST 75 STREET, EAST 71 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, LEXINGTON AVENUE between EAST 75 STREET and EAST 72 STREET, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 73 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065, 10075"
+684284,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 09:00:00 PM,11/30/2022 02:15:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 69 STREET and EAST 74 STREET, PARK AVENUE between EAST 69 STREET and EAST 68 STREET, PARK AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 71 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 72 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, LEXINGTON AVENUE between EAST 75 STREET and EAST 72 STREET, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 73 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065, 10075"
+684283,Shooting Permit,12/04/2022 02:00:00 AM,12/04/2022 02:00:00 PM,11/30/2022 02:13:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+684235,Rigging Permit,12/05/2022 05:45:00 PM,12/05/2022 10:45:00 PM,11/30/2022 12:37:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+684226,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 11:00:00 PM,11/30/2022 12:15:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+684215,Shooting Permit,12/02/2022 08:00:00 AM,12/02/2022 08:00:00 PM,11/30/2022 11:41:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 125 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,11,25,Commercial,Commercial,United States of America,10035
+684214,Shooting Permit,12/02/2022 11:00:00 AM,12/03/2022 01:00:00 AM,11/30/2022 11:39:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+684204,Shooting Permit,12/02/2022 10:00:00 AM,12/03/2022 03:00:00 AM,11/30/2022 11:13:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","HURON STREET between PROVOST STREET and MCGUINESS BOULEVARD, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, PROVOST STREET between INDIA STREET and HURON STREET, PROVOST STREET between PAIDGE AVENUE and HURON STREET, PROVOST STREET between INDIA STREET and KENT STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684202,Shooting Permit,12/03/2022 07:00:00 AM,12/03/2022 04:00:00 PM,11/30/2022 10:48:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 52 STREET and WEST 54 STREET, 11 AVENUE between WEST 52 STREET and WEST 51 STREET",Manhattan,4,18,Television,Reality,United States of America,10019
+684197,Shooting Permit,12/03/2022 08:00:00 AM,12/03/2022 05:00:00 PM,11/30/2022 10:25:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",ST MARKS AVENUE between ROGERS AVENUE and NOSTRAND AVENUE,Brooklyn,8,77,Still Photography,Not Applicable,United States of America,11216
+684177,Shooting Permit,12/03/2022 02:00:00 AM,12/03/2022 02:00:00 PM,11/30/2022 07:47:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+684170,Shooting Permit,12/02/2022 08:00:00 AM,12/03/2022 12:00:00 AM,11/30/2022 05:56:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between DITMARS BOULEVARD and 22 ROAD, DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, 21 STREET between 22 DRIVE and DITMARS BOULEVARD, 21 STREET between 23 AVENUE and 22 DRIVE, 21 STREET between DITMARS BOULEVARD and 21 DRIVE, 22 DRIVE between 21 STREET and 19 STREET, 19 STREET between 22 ROAD and 23 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11105
+684137,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 08:00:00 PM,11/29/2022 05:22:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between HALSEY STREET and ELDERT STREET, HALSEY STREET between WYCKOFF AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+684114,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 09:00:00 PM,11/29/2022 04:06:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, MILTON STREET between FRANKLIN STREET and MANHATTAN AVENUE, FRANKLIN STREET between MILTON STREET and NOBLE STREET, GREENPOINT AVENUE between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684077,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 10:00:00 PM,11/29/2022 02:32:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARYLAND AVENUE between REYNOLDS STREET and COLTON STREET, REYNOLDS STREET between HYLAN BOULEVARD and MARYLAND AVENUE, REYNOLDS STREET between HYLAN BOULEVARD and CLIFTON AVENUE, CLIFTON AVENUE between DONLEY AVENUE and COLTON STREET, DONLEY AVENUE between CLIFTON AVENUE and VIRGINIA AVENUE, VIRGINIA AVENUE between DONLEY AVENUE and DEAD END, COLTON STREET between VIRGINIA AVENUE and CLIFTON AVENUE, HYLAN BOULEVARD between DONLEY AVENUE and COLTON STREET",Staten Island,1,120,Television,Episodic series,United States of America,"10304, 10305"
+684073,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 09:00:00 PM,11/29/2022 02:18:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","OLD SLIP between WATER STREET and SOUTH STREET, FRONT STREET between GOUVERNEUR LANE and OLD SLIP, SOUTH STREET between BROAD STREET and OLD SLIP, PEARL STREET between WALL STREET and COENTIES SLIP, HANOVER SQUARE between PEARL STREET and WATER STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, BROAD STREET between WATER STREET and SOUTH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+684061,Shooting Permit,12/09/2022 08:00:00 AM,12/09/2022 10:00:00 PM,11/29/2022 01:34:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 11 AVENUE and DYER AVENUE, WEST 38 STREET between DYER AVENUE and 7 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10018
+684056,Shooting Permit,12/07/2022 07:00:00 AM,12/07/2022 09:00:00 PM,11/29/2022 01:14:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, NOBLE STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+684055,Shooting Permit,12/02/2022 07:00:00 AM,12/03/2022 01:00:00 AM,11/29/2022 01:11:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","LYMAN AVENUE between BAY STREET and SUMMER STREET, SCHOOL ROAD between BAY STREET and DENNIS TORRICELLI SR STREET, WADSWORTH AVENUE between BAY STREET and TOMPKINS AVENUE, BAY STREET between SCHOOL ROAD and WADSWORTH AVENUE, LYMAN AVENUE between DENNIS TORRICELLI SR STREET and TOMPKINS AVENUE, DENNIS TORRICELLI SR STREET between LYMAN AVENUE and SCHOOL ROAD, SCHOOL ROAD between DENNIS TORRICELLI SR STREET and TOMPKINS AVENUE, TOMPKINS AVENUE between SCHOOL ROAD and GARFIELD AVENUE, DONGAN HILLS AVENUE between RICHMOND ROAD and JEFFERSON STREET, RICHMOND ROAD between DONGAN HILLS AVENUE and SEAVER AVENUE, SEAVER AVENUE between RICHMOND ROAD and JEFFERSON STREET, RICHMOND ROAD between SEAVER AVENUE and HULL AVENUE, STOBE AVENUE between RICHMOND ROAD and NORTH RAILROAD AVENUE, JEFFERSON AVENUE between RICHMOND ROAD and NORTH RAILROAD AVENUE",Staten Island,"1, 2","120, 122",Television,Episodic series,United States of America,"10305, 10306"
+684054,Shooting Permit,12/06/2022 08:00:00 AM,12/06/2022 10:00:00 PM,11/29/2022 01:11:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 48 STREET and WEST 53 STREET, WEST 51 STREET between 10 AVENUE and 11 AVENUE, WEST 51 STREET between 11 AVENUE and 12 AVENUE, WEST 48 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,"10019, 10036"
+684051,Shooting Permit,12/02/2022 09:30:00 AM,12/02/2022 10:00:00 PM,11/29/2022 01:03:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 28 STREET and WEST 29 STREET, 8 AVENUE between WEST 26 STREET and WEST 28 STREET, WEST 28 STREET between 7 AVENUE and 8 AVENUE, WEST 26 STREET between 7 AVENUE and 8 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",10,Television,Episodic series,United States of America,"10001, 10011"
+684047,Theater Load in and Load Outs,12/29/2022 12:01:00 AM,12/30/2022 11:59:00 PM,11/29/2022 12:47:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+684045,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 08:00:00 PM,11/29/2022 12:45:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","NANSEN STREET between 71 AVENUE and 72 AVENUE, 71 AVENUE between NANSEN STREET and METROPOLITAN AVENUE, EDGEWATER STREET between CLIFTON AVENUE and HYLAN BOULEVARD, ST MARYS AVENUE between TOMPKINS AVENUE and WHITE PLAINS AVENUE",Queens,"1, 6","112, 120",Television,Episodic series,United States of America,"10305, 11375"
+684044,Theater Load in and Load Outs,12/27/2022 12:01:00 AM,12/31/2022 11:59:00 PM,11/29/2022 12:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+684042,Theater Load in and Load Outs,12/21/2022 12:01:00 AM,12/22/2022 06:00:00 AM,11/29/2022 12:39:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+684038,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 10:00:00 AM,11/29/2022 12:18:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+684027,Theater Load in and Load Outs,12/17/2022 12:01:00 AM,12/18/2022 06:00:00 AM,11/29/2022 11:47:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+684022,Shooting Permit,12/02/2022 11:00:00 AM,12/02/2022 04:30:00 PM,11/29/2022 11:19:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5","13, 18",Television,Reality,United States of America,"10010, 10019"
+684021,Theater Load in and Load Outs,12/13/2022 12:01:00 AM,12/14/2022 06:00:00 AM,11/29/2022 11:18:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+684019,Shooting Permit,12/01/2022 10:00:00 AM,12/01/2022 11:00:00 PM,11/29/2022 11:01:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 13 STREET and WEST 14 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WASHINGTON STREET between WEST 13 STREET and GANSEVOORT STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, W 14TH ST between WASHINGTON STREET and 10TH AVE, W 14TH ST between WASHINGTON STREET and 9TH AVE",Manhattan,"2, 4","10, 18, 6",Television,Episodic series,United States of America,"10001, 10011, 10014, 10018, 10019, 10036"
+684008,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 09:00:00 PM,11/29/2022 10:21:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN STREET between CYPRESS AVENUE and SENECA AVENUE, CYPRESS AVENUE between STEPHEN STREET and SUMMERFIELD STREET, SENECA AVENUE between STEPHEN STREET and SUMMERFIELD STREET, IRVING AVENUE between ELDERT STREET and COVERT STREET, WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WEIRFIELD STREET between WILSON AVENUE and CENTRAL AVENUE, WILSON AVENUE between JEFFERSON STREET and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and WEIRFIELD STREET, REVIEW AVENUE between 30 STREET and 35 STREET, 35 ST between REVIEW AVENUE and STARR AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE",Queens,"2, 4, 5","104, 108, 83",Television,Episodic series,United States of America,"11101, 11207, 11221, 11237, 11385"
+683985,Shooting Permit,12/02/2022 06:00:00 AM,12/02/2022 11:00:00 PM,11/29/2022 09:30:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683984,Shooting Permit,12/01/2022 06:00:00 AM,12/01/2022 11:00:00 PM,11/29/2022 09:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683980,Shooting Permit,12/01/2022 06:00:00 AM,12/01/2022 11:00:00 PM,11/29/2022 04:21:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","N Henry Street between GREENPOINT AVENUE and Calyer Street, RUSSELL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683948,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 09:00:00 PM,11/28/2022 04:53:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 17 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 16 STREET and EAST 18 STREET, WEST 19 STREET between 5 AVENUE and AVENUE OF THE AMERICAS, WEST 20 STREET between 5 AVENUE and AVENUE OF THE AMERICAS, 5 AVENUE between WEST 19 STREET and WEST 21 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010, 10011, 10016"
+683936,Shooting Permit,11/30/2022 08:30:00 AM,11/30/2022 10:00:00 PM,11/28/2022 03:46:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 31 STREET and WEST 30 STREET, 8 AVENUE between WEST 29 STREET and WEST 30 STREET, 8 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 28 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 26 STREET and WEST 28 STREET, WEST 30 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Television,Episodic series,United States of America,"10001, 10011"
+683933,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 09:00:00 PM,11/28/2022 03:39:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 48 STREET and WEST 53 STREET, WEST 51 STREET between 10 AVENUE and 11 AVENUE, WEST 51 STREET between 11 AVENUE and 12 AVENUE, WEST 48 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,"10019, 10036"
+683932,Shooting Permit,12/02/2022 06:00:00 AM,12/02/2022 11:00:00 PM,11/28/2022 03:37:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERONA STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between DELAVAN STREET and VERONA STREET, RICHARDS STREET between VERONA STREET and VISITATION PLACE, VERONA STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VISITATION PLACE and KING STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+683931,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 11:59:00 PM,11/28/2022 03:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between COLUMBUS AVENUE and BROADWAY,Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+683919,Shooting Permit,11/30/2022 07:00:00 AM,11/30/2022 09:00:00 PM,11/28/2022 02:24:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+683917,Shooting Permit,12/01/2022 06:30:00 AM,12/01/2022 08:30:00 PM,11/28/2022 02:22:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILSON AVENUE between DECATUR STREET and COOPER STREET, WILSON AVENUE between SCHAEFFER STREET and DECATUR STREET, SCHAEFFER STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, DECATUR STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between COVERT STREET and ELDERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+683910,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/28/2022 02:02:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683906,DCAS Prep/Shoot/Wrap Permit,12/01/2022 11:00:00 AM,12/02/2022 02:00:00 AM,11/28/2022 01:47:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CHURCH STREET and CENTRE STREET, CHAMBERS STREET between ELK STREET and BROADWAY, BROADWAY between READE STREET and CHAMBERS STREET, CENTRE STREET between DUANE STREET and READE STREET, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, WALKER STREET between 6 AVENUE and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+683903,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 07:00:00 PM,11/28/2022 01:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+683893,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 11:00:00 PM,11/28/2022 12:51:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683890,Theater Load in and Load Outs,12/28/2022 12:01:00 AM,01/01/2023 08:00:00 AM,11/28/2022 12:45:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+683888,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 11:00:00 PM,11/28/2022 12:41:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683885,Shooting Permit,11/30/2022 08:00:00 AM,11/30/2022 02:00:00 PM,11/28/2022 12:33:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WYTHE AVENUE between NORTH 15 STREET and NORTH 14 STREET,Brooklyn,1,94,Commercial,Commercial,United States of America,11249
+683874,Shooting Permit,12/02/2022 11:00:00 AM,12/03/2022 02:00:00 AM,11/28/2022 11:44:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683872,Theater Load in and Load Outs,12/24/2022 12:01:00 AM,01/07/2023 11:59:00 PM,11/28/2022 11:43:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683871,Shooting Permit,12/02/2022 08:00:00 AM,12/02/2022 10:00:00 PM,11/28/2022 11:27:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","135 AVENUE between VAN WYCK EXPRESSWAY and 140 STREET, 140 STREET between NORTH CONDUIT AVENUE and 135 AVENUE, 135 AVENUE between 140 STREET and 142 STREET, 135 AVENUE between 142 STREET and 143 STREET",Queens,12,113,Television,Made for TV/mini-series,United States of America,11436
+683841,Theater Load in and Load Outs,12/30/2022 06:00:00 AM,01/01/2023 06:00:00 AM,11/28/2022 08:28:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683840,Theater Load in and Load Outs,12/16/2022 06:00:00 AM,12/18/2022 06:00:00 AM,11/28/2022 08:27:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683839,Theater Load in and Load Outs,12/09/2022 06:00:00 AM,12/11/2022 05:30:00 AM,11/28/2022 08:26:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683838,Theater Load in and Load Outs,12/08/2022 06:00:00 AM,12/09/2022 05:30:00 AM,11/28/2022 08:25:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683837,Theater Load in and Load Outs,12/06/2022 06:00:00 AM,12/07/2022 06:00:00 PM,11/28/2022 08:24:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683836,Theater Load in and Load Outs,12/05/2022 06:00:00 AM,12/06/2022 05:30:00 AM,11/28/2022 08:24:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683835,Theater Load in and Load Outs,12/03/2022 06:00:00 AM,12/04/2022 06:00:00 AM,11/28/2022 08:22:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683834,Theater Load in and Load Outs,12/02/2022 06:00:00 AM,12/03/2022 05:30:00 AM,11/28/2022 08:22:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683640,Shooting Permit,11/30/2022 09:00:00 AM,12/01/2022 01:00:00 AM,11/26/2022 11:43:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MEEKER AVE between MCGUINNESS BLVD and MONITOR STREET, MONITOR STREET between ENGERT AVENUE and DRIGGS AVENUE, MONITOR STREET between ENGERT AVENUE and MEEKER AVE, NORTH HENRY STREET between DRIGGS AVENUE and ENGERT AVENUE, ENGERT AVENUE between NORTH HENRY STREET and MONITOR STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683597,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 08:00:00 PM,11/25/2022 02:02:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 33 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10016
+683530,Shooting Permit,12/03/2022 06:00:00 AM,12/03/2022 09:00:00 PM,11/23/2022 04:43:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between WASHINGTON AVENUE and WAVERLY AVENUE, WASHINGTON AVENUE between LAFAYETTE AVENUE and GREENE AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+683529,Shooting Permit,12/02/2022 06:00:00 AM,12/02/2022 09:00:00 PM,11/23/2022 04:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between LAFAYETTE AVENUE and GREENE AVENUE",Brooklyn,"2, 4","13, 88",WEB,Not Applicable,United States of America,"10011, 11238"
+683518,Shooting Permit,12/02/2022 03:00:00 AM,12/02/2022 11:59:00 PM,11/23/2022 03:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 14 STREET and WEST 13 STREET, 6 AVENUE between CARMINE STREET and MINETTA STREET, 6 AVENUE between WAVERLY PLACE and WEST 3 STREET, WEST 3 STREET between MACDOUGAL STREET and 6 AVENUE, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE SOUTH between MACDOUGAL STREET and SULLIVAN STREET, GREENWICH AVENUE between CHARLES STREET and WEST 10 STREET, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE, WAVERLY PLACE between GROVE STREET and 6 AVENUE, 6 AVENUE between WAVERLY PLACE and GREENWICH AVENUE, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between GREENWICH AVENUE and WAVERLY PLACE, GAY STREET between CHRISTOPHER STREET and WAVERLY PLACE",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+683514,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 07:00:00 PM,11/23/2022 02:59:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH ELLIOTT PLACE between HANSON PLACE and FULTON STREET, HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11217
+683512,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 07:00:00 PM,11/23/2022 02:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH ELLIOTT PLACE between HANSON PLACE and FULTON STREET, HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11217
+683511,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 10:00:00 PM,11/23/2022 02:42:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between BROADWAY and 5 AVENUE, EAST 28 STREET between 5 AVENUE and MADISON AVENUE, EAST 27 STREET between 5 AVENUE and MADISON AVENUE, WEST 27 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between EAST 26 STREET and EAST 27 STREET, PARK AVENUE SOUTH between EAST 27 STREET and EAST 29 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 25 STREET, EAST 32 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, EAST 31 STREET between 2 AVENUE and 3 AVENUE, BROADWAY between WEST 28 STREET and WEST 29 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10001, 10010, 10016"
+683503,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 08:00:00 PM,11/23/2022 02:27:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+683494,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 10:00:00 PM,11/23/2022 01:56:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 8 AVENUE and BROADWAY, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,"1, 5","1, 18",Commercial,Commercial,United States of America,"10004, 10036"
+683493,Theater Load in and Load Outs,11/28/2022 12:01:00 AM,12/10/2022 11:59:00 PM,11/23/2022 01:55:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+683486,Shooting Permit,11/30/2022 07:00:00 AM,11/30/2022 09:00:00 PM,11/23/2022 01:25:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683484,Shooting Permit,11/30/2022 10:00:00 AM,12/01/2022 01:00:00 AM,11/23/2022 01:19:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 11 STREET and 21 STREET, 11 STREET between 44 ROAD and 44 DRIVE, JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+683481,Theater Load in and Load Outs,12/07/2022 06:00:00 AM,12/11/2022 11:59:00 PM,11/23/2022 01:12:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+683471,Rigging Permit,11/29/2022 05:45:00 PM,11/29/2022 10:45:00 PM,11/23/2022 12:32:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+683469,Shooting Permit,12/01/2022 11:00:00 AM,12/02/2022 02:00:00 AM,11/23/2022 12:29:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683466,Rigging Permit,11/28/2022 05:30:00 PM,11/28/2022 10:30:00 PM,11/23/2022 12:23:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+683421,Theater Load in and Load Outs,11/28/2022 06:00:00 AM,11/28/2022 06:00:00 PM,11/23/2022 10:40:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+683405,Theater Load in and Load Outs,12/10/2022 12:01:00 AM,12/23/2022 11:59:00 PM,11/23/2022 09:29:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683403,Theater Load in and Load Outs,11/25/2022 06:00:00 AM,12/09/2022 11:59:00 PM,11/23/2022 09:25:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+683398,Shooting Permit,12/01/2022 08:00:00 AM,12/01/2022 10:00:00 PM,11/23/2022 08:58:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON STREET between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+683397,Shooting Permit,12/02/2022 07:00:00 AM,12/02/2022 09:00:00 PM,11/23/2022 08:51:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+683396,Shooting Permit,12/01/2022 07:00:00 AM,12/01/2022 09:00:00 PM,11/23/2022 08:50:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+683390,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 11:00:00 PM,11/23/2022 07:26:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,"14, 2","100, 108",Television,Cable-episodic,United States of America,"11101, 11697"
+683384,Theater Load in and Load Outs,11/30/2022 12:01:00 AM,12/02/2022 06:00:00 AM,11/23/2022 03:27:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+683379,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 11:00:00 PM,11/22/2022 10:10:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between READE STREET and DUANE STREET, GREENWICH STREET between CHAMBERS STREET and DUANE STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET, DUANE STREET between GREENWICH STREET and HUDSON STREET, READE STREET between GREENWICH STREET and WEST BROADWAY, JAY STREET between GREENWICH STREET and HUDSON STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, STAPLE STREET between JAY STREET and HARRISON STREET, GREENWICH STREET between FRANKLIN STREET and HARRISON STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+683365,DCAS Prep/Shoot/Wrap Permit,11/30/2022 09:00:00 AM,11/30/2022 10:00:00 PM,11/22/2022 06:52:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, READE STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, BROADWAY between WARREN STREET and MURRAY STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+683356,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 08:00:00 PM,11/22/2022 05:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 44 ROAD and 44 DRIVE, 44 DRIVE between 21 STREET and 23 STREET, 44 DRIVE between 23 STREET and HUNTER STREET, 23 STREET between 44 DRIVE and 45 AVENUE, 44 ROAD between 24 STREET and CRESCENT STREET, 43 AVENUE between 23 STREET and CRESCENT STREET, 43 AVENUE between CRESCENT STREET and 27 STREET, CRESCENT STREET between 42 ROAD and 43 AVENUE, 24 STREET between 43 AVENUE and 44 ROAD, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, COURT SQ E between THOMSON AVE and DEAD END",Queens,2,108,Television,Cable-episodic,United States of America,11101
+683343,Shooting Permit,12/01/2022 06:00:00 AM,12/01/2022 08:00:00 PM,11/22/2022 04:12:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between BEVERLY ROAD and CORTELYOU ROAD,Brooklyn,"14, 19","70, 78",Commercial,Industrial/Corporate,United States of America,"11215, 11226"
+683340,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 04:00:00 PM,11/22/2022 04:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 71 STREET and EAST 68 STREET, EAST 71 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 72 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 72 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between PARK AVENUE and MADISON AVENUE, 5 AVENUE between EAST 66 STREET and EAST 70 STREET, EAST 66 STREET between MADISON AVENUE and 5 AVENUE, EAST 73 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10065"
+683331,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/22/2022 03:37:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 123 STREET and 124 STREET, JAMAICA AVENUE between 124 STREET and 125 STREET, JAMAICA AVENUE between 125 STREET and 126 STREET, 124 STREET between JAMAICA AVENUE and 89 AVENUE, 89 AVENUE between 123 STREET and 125 STREET, 124 STREET between JAMAICA AVENUE and HILLSIDE AVENUE, 125 STREET between JAMAICA AVENUE and HILLSIDE AVENUE, JAMAICA AVENUE between 131 STREET and METROPOLITAN AVENUE, 132 STREET between JAMAICA AVENUE and METROPOLITAN AVENUE, MAIN STREET between 71 ROAD and 72 AVENUE",Queens,"8, 81, 9","102, 107, 110",Television,Cable-episodic,United States of America,"11367, 11418"
+683328,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 11:00:00 PM,11/22/2022 03:29:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between BUSHWICK AVENUE and CHARLES PLACE, MYRTLE AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET, WILLOUGHBY AVENUE between CHARLES PLACE and EVERGREEN AVENUE, CHARLES PLACE between MYRTLE AVENUE and DEAD END, BUSHWICK AVENUE between WILLOUGHBY AVENUE and HART STREET, SUYDAM STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between WILLOUGHBY AVENUE and HART STREET, BROADWAY between HART STREET and LAWTON STREET, BROADWAY between LAWTON STREET and KOSCIUSZKO STREET",Brooklyn,"3, 4","81, 83",Television,Episodic series,United States of America,11221
+683326,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 10:00:00 PM,11/22/2022 03:26:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+683311,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 09:00:00 PM,11/22/2022 02:28:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 5 STREET and DEAD END, 44 DRIVE between 5 STREET and VERNON BOULEVARD, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 44 DRIVE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between 44 DRIVE and 45 AVENUE, 45 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 10TH ST between 44 DRIVE and VERNON BOULEVARD",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11106"
+683306,Shooting Permit,11/29/2022 11:00:00 AM,11/29/2022 09:00:00 PM,11/22/2022 02:08:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",24 AVENUE between BELL BOULEVARD and WATERS EDGE DRIVE,Queens,"11, 7","109, 111",Television,Episodic series,United States of America,11360
+683305,Shooting Permit,12/01/2022 09:00:00 AM,12/01/2022 04:00:00 PM,11/22/2022 02:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5","13, 18",Television,Reality,United States of America,"10010, 10019"
+683303,Shooting Permit,11/27/2022 02:00:00 AM,11/27/2022 02:00:00 PM,11/22/2022 02:05:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+683301,Shooting Permit,11/26/2022 02:00:00 AM,11/26/2022 02:00:00 PM,11/22/2022 02:02:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+683292,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 10:00:00 PM,11/22/2022 01:05:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLY ROAD, MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLY ROAD, EAST 18 STREET between ALBEMARLE ROAD and BEVERLEY ROAD, EAST 18 STREET between ALBEMARLE ROAD and BEVERLEY ROAD, BEVERLEY ROAD between OCEAN AVENUE and EAST 21 STREET, BEDFORD AVENUE between BEVERLEY ROAD and TILDEN AVENUE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+683283,Shooting Permit,12/02/2022 09:00:00 AM,12/02/2022 11:00:00 PM,11/22/2022 12:32:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between GRAND STREET and BROOME STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+683282,Shooting Permit,11/25/2022 05:00:00 AM,11/25/2022 10:00:00 PM,11/22/2022 12:31:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+683273,Shooting Permit,11/30/2022 08:00:00 AM,11/30/2022 09:30:00 PM,11/22/2022 11:44:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+683271,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 08:30:00 PM,11/22/2022 11:26:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 17 STREET and WEST 18 STREET, 9 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+683270,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/22/2022 11:23:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 88 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 88 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 86 STREET and EAST 88 STREET, LEXINGTON AVENUE between EAST 87 STREET and EAST 88 STREET, LEXINGTON AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 86 STREET between 2 AVENUE and 3 AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10028, 10128"
+683257,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 11:00:00 PM,11/22/2022 10:25:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 11 AVENUE and 9 AVENUE, 10 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 58 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,10019
+683253,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 11:00:00 PM,11/22/2022 10:17:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 11 AVENUE and 9 AVENUE, 10 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 58 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,10019
+683250,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 11:00:00 PM,11/22/2022 10:05:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683244,Shooting Permit,11/30/2022 07:00:00 AM,11/30/2022 08:00:00 PM,11/22/2022 09:31:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between UNION STREET and BERKELEY PLACE, 7 AVENUE between UNION STREET and PRESIDENT STREET, 7 AVENUE between PRESIDENT STREET and 1 STREET, GARFIELD PLACE between 7 AVENUE and 6 AVENUE, CARROLL STREET between 7 AVENUE and 6 AVENUE, BERKELEY PLACE between 7 AVENUE and PLAZA ST WEST, PLAZA ST W between BERKELEY PLACE and UNION STREET, PROSPECT PARK WEST between PLAZA ST WEST and PRESIDENT STREET",Brooklyn,"55, 6",78,Television,Cable-episodic,United States of America,"11215, 11217, 11238"
+683241,Shooting Permit,11/30/2022 07:00:00 AM,11/30/2022 09:00:00 PM,11/22/2022 09:25:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+683188,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 07:00:00 PM,11/21/2022 05:38:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 10 AVENUE and 11 AVENUE,Manhattan,"2, 4","10, 6",Commercial,Promo,United States of America,"10011, 10014"
+683187,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 07:00:00 PM,11/21/2022 05:38:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10011
+683186,Shooting Permit,12/05/2022 06:00:00 AM,12/05/2022 06:00:00 PM,11/21/2022 05:38:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10011
+683166,Theater Load in and Load Outs,12/04/2022 12:01:00 AM,12/04/2022 11:59:00 PM,11/21/2022 04:32:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+683164,Theater Load in and Load Outs,12/02/2022 12:01:00 AM,12/03/2022 11:59:00 PM,11/21/2022 04:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+683162,Theater Load in and Load Outs,12/01/2022 12:01:00 AM,12/01/2022 11:59:00 PM,11/21/2022 04:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+683161,Theater Load in and Load Outs,11/29/2022 12:01:00 AM,11/30/2022 11:59:00 PM,11/21/2022 04:24:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+683148,Shooting Permit,11/30/2022 07:00:00 AM,11/30/2022 09:00:00 PM,11/21/2022 03:29:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+683141,Shooting Permit,11/28/2022 07:30:00 AM,11/28/2022 09:30:00 PM,11/21/2022 03:07:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 80 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Film,Feature,United States of America,10024
+683140,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/21/2022 03:06:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+683139,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/21/2022 03:04:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 11 AVENUE and DYER AVENUE, WEST 38 STREET between DYER AVENUE and 7 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10018
+683138,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/21/2022 03:03:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+683103,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/21/2022 01:20:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between WATER STREET and SOUTH STREET, WATER STREET between WHITEHALL STREET and BROAD STREET, BROAD STREET between WATER STREET and PEARL STREET, PEARL STREET between BROAD STREET and WHITEHALL STREET, PEARL STREET between BROAD STREET and COENTIES SLIP, MAIDEN LANE between PEARL STREET and SOUTH STREET, 33 ROAD between 214 PLACE and 215 PLACE, 33 ROAD between 214 PLACE and 215 PLACE, 215 PLACE between 32 ROAD and 33 ROAD",Manhattan,"1, 11","1, 111",Television,Episodic series,United States of America,"10004, 10005, 10038, 11361"
+683098,Shooting Permit,11/30/2022 08:00:00 AM,11/30/2022 10:00:00 PM,11/21/2022 01:05:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+683086,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/21/2022 12:26:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+683082,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/21/2022 12:21:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","67 PLACE between 70 AVENUE and MYRTLE AVENUE, CENTRAL AVENUE between 66 PLACE and 67 PLACE, 68 STREET between 70 AVENUE and CENTRAL AVENUE, CENTRAL AVENUE between 67 PLACE and 68 STREET, MYRTLE AVENUE between 67 STREET and 68 STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+683076,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 10:00:00 PM,11/21/2022 12:13:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between WEST 9 STREET and HUNTINGTON STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+683061,Theater Load in and Load Outs,11/26/2022 12:01:00 AM,11/26/2022 11:59:00 PM,11/21/2022 11:23:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+683053,Shooting Permit,11/23/2022 01:00:00 PM,11/23/2022 06:00:00 PM,11/21/2022 11:05:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+683052,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/21/2022 11:04:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+683029,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/21/2022 10:18:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+683027,Theater Load in and Load Outs,11/28/2022 08:00:00 PM,11/29/2022 02:00:00 AM,11/21/2022 09:47:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between EAST 41 STREET and EAST 42 STREET,Manhattan,6,17,Television,News,United States of America,10017
+683026,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/21/2022 09:46:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+683024,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 PM,11/21/2022 09:26:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+683019,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 08:00:00 PM,11/21/2022 08:25:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+682878,Shooting Permit,11/23/2022 06:00:00 AM,11/23/2022 01:00:00 PM,11/18/2022 06:30:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 49 STREET between 6 AVENUE and ROCKEFELLER PLAZA,Manhattan,5,18,Television,Variety,United States of America,"10020, 10112"
+682850,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 10:00:00 PM,11/18/2022 04:08:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+682844,Shooting Permit,12/06/2022 06:00:00 AM,12/06/2022 08:00:00 PM,11/18/2022 03:44:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHAUNCEY STREET between STUYVESANT AVENUE and MALCOM X BOULEVARD,Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11233
+682843,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 09:00:00 PM,11/18/2022 03:44:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+682842,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 11:00:00 PM,11/18/2022 03:35:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCIAL STREET between BOX STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between DEAD END and COMMERCIAL STREET, ASH STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and DUPONT STREET, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682841,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 08:00:00 PM,11/18/2022 03:32:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE,Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+682828,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/18/2022 03:14:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between COMMERCIAL STREET and GREEN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682824,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 07:00:00 PM,11/18/2022 03:10:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",STEPHEN STREET between CYPRESS AVENUE and WYCKOFF AVENUE,Queens,5,104,Still Photography,Not Applicable,United States of America,11385
+682817,Shooting Permit,11/23/2022 06:00:00 AM,11/23/2022 09:00:00 PM,11/18/2022 02:46:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RAILROAD AVE between DEAD END and GREENPOINT AVE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+682816,Shooting Permit,11/23/2022 10:00:00 AM,11/23/2022 11:00:00 PM,11/18/2022 02:40:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between MOULTRIE STREET and HUMBOLDT STREET, JAVA STREET between DEAD END and WEST STREET, WEST STREET between GREENPOINT AVENUE and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682793,Shooting Permit,11/23/2022 06:00:00 AM,11/23/2022 11:00:00 PM,11/18/2022 01:40:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between CENTER BOULEVARD and 5 STREET, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 5 STREET between 46 AVENUE and CENTER BOULEVARD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+682770,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 09:00:00 PM,11/18/2022 12:14:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682769,Shooting Permit,12/01/2022 06:00:00 AM,12/01/2022 10:00:00 PM,11/18/2022 12:14:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARYLAND AVENUE between REYNOLDS STREET and COLTON STREET, REYNOLDS STREET between HYLAN BOULEVARD and MARYLAND AVENUE, REYNOLDS STREET between HYLAN BOULEVARD and CLIFTON AVENUE, CLIFTON AVENUE between DONLEY AVENUE and COLTON STREET, DONLEY AVENUE between CLIFTON AVENUE and VIRGINIA AVENUE, VIRGINIA AVENUE between DONLEY AVENUE and DEAD END, COLTON STREET between VIRGINIA AVENUE and CLIFTON AVENUE, HYLAN BOULEVARD between DONLEY AVENUE and COLTON STREET",Staten Island,1,120,Television,Episodic series,United States of America,10305
+682767,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 09:00:00 PM,11/18/2022 12:11:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY STREET between BELAIR ROAD and ANCHOR PLACE, BAY STREET between MARYLAND AVENUE and NEW LANE, BAY STREET between NAUTILUS STREET and CLIFF STREET, LYMAN AVENUE between DENNIS TORRICELLI SR STREET and TOMPKINS AVENUE, DENNIS TORRICELLI SR STREET between LYMAN AVENUE and SCHOOL ROAD, SCHOOL ROAD between DENNIS TORRICELLI SR STREET and TOMPKINS AVENUE, TOMPKINS AVENUE between SCHOOL ROAD and GARFIELD AVENUE, JOHN STREET between INNIS STREET and DEAD END, EATON PLACE between INNIS STREET and JOHN STREET, INNIS STREET between MORNINGSTAR ROAD and JOHN STREET, TRANTOR PLACE between INNIS STREET and HOOKER PLACE, WALKER STREET between MORNINGSTAR ROAD and TRANTOR PLACE, TRANTOR PLACE between WALKER STREET and PORT RICHMOND AVENUE",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10303, 10305"
+682741,Shooting Permit,11/22/2022 11:00:00 AM,11/23/2022 01:00:00 AM,11/18/2022 11:35:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","112 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between 111 STREET and 113 STREET, MYRTLE AVENUE between 113 STREET and 115 STREET, 86 AVENUE between 111 STREET and 112 STREET, 86 AVENUE between 112 STREET and 113 STREET, 111 STREET between MYRTLE AVENUE and 86 AVENUE, 122 STREET between 149 AVENUE and 150 AVENUE, 122 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 150 AVENUE between 121 STREET and 122 PLACE, 120 STREET between 149 AVENUE and NORTH CONDUIT AVENUE, 121 STREET between 149 AVENUE and 150 AVENUE, LEFFERTS BOULEVARD between 135 AVENUE and 149 AVENUE, 150 AVENUE between 122 PLACE and 123 STREET, 150 AVENUE between 123 STREET and NORTH CONDUIT AVENUE, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 122 PLACE between 149 AVENUE and NORTH CONDUIT AVENUE, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE",Queens,"10, 9","102, 106",Television,Made for TV/mini-series,United States of America,"11418, 11420"
+682683,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 09:00:00 PM,11/18/2022 09:52:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between NORWOOD AVENUE and LOGAN STREET, JAMAICA AVENUE between CHESTNUT STREET and RICHMOND STREET, TROUTMAN STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between STARR STREET and SUYDAM STREET, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between TROUTMAN STREET and STARR STREET, SUYDAM STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, JAMAICA AVENUE between LINWOOD STREET and NORWOOD AVENUE",Brooklyn,"4, 5","75, 83",Television,Episodic series,United States of America,"11208, 11237"
+682677,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/18/2022 09:46:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+682670,Shooting Permit,11/23/2022 04:00:00 PM,11/24/2022 02:00:00 AM,11/18/2022 09:27:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 9 AVENUE, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WEST 14TH STREET between WASHINGTON STREET and 9TH AVENUE, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, GANSEVOORT STREET between WASHINGTON STREET and 9 AVENUE, WASHINGTON STREET between GANSEVOORT STREET and HORATIO STREET, WASHINGTON STREET between HORATIO STREET and JANE STREET, WEST 14 STREET between 9 AVENUE and 8 AVENUE, WEST HOUSTON STREET between LAGUARDIA PLACE and WOOSTER STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and BLEECKER STREET, LAGUARDIA PLACE between BLEECKER STREET and WASHINGTON SQUARE SOUTH",Manhattan,"2, 4","1, 10, 6",Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+682668,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 10:00:00 PM,11/18/2022 08:54:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 86 STREET and EAST 88 STREET, EAST 88 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 87 STREET and EAST 88 STREET, LEXINGTON AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 86 STREET between 2 AVENUE and 3 AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10028, 10128"
+682658,Shooting Permit,11/21/2022 05:00:00 AM,11/21/2022 10:00:00 AM,11/18/2022 06:26:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+682593,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 08:00:00 PM,11/17/2022 04:33:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 6 AVENUE and 5 AVENUE, WEST 18 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 18 STREET and WEST 17 STREET, W 14TH STREET between 9TH AVENUE and 7TH AVENUE, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET, GREENWICH STREET between HORATIO STREET and JANE STREET, JANE STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between JANE STREET and WEST 12 STREET, HORATIO STREET between HUDSON STREET and WEST 4 STREET, WEST 15 STREET between 9 AVENUE and 10 AVENUE, HUDSON STREET between HORATIO STREET and JANE STREET",Manhattan,"2, 4, 5","10, 13, 6",Television,Episodic series,United States of America,"10003, 10011, 10014"
+682592,Shooting Permit,12/05/2022 07:00:00 AM,12/05/2022 11:00:00 PM,11/17/2022 04:33:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+682582,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 09:00:00 AM,11/17/2022 04:12:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between BROADWAY and 6 AVENUE,Manhattan,5,"14, 18",Television,Not Applicable,United States of America,10036
+682564,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 11:00:00 PM,11/17/2022 03:51:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between MONTANA PLACE and ARKANSAS DRIVE, MONTANA PLACE between ARKANSAS DRIVE and NATIONAL DRIVE, NATIONAL DRIVE between ARKANSAS DRIVE and MONTANA PLACE, ARKANSAS DRIVE between KANSAS PLACE and NATIONAL DRIVE, STRICKLAND AVENUE between MILL AVENUE and EAST 60 PLACE, MILL AVENUE between STRICKLAND AVENUE and MAYFAIR DRIVE NORTH, EAST 60 PLACE between STRICKLAND AVENUE and MILL AVENUE",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+682558,Shooting Permit,12/08/2022 07:00:00 AM,12/08/2022 11:00:00 PM,11/17/2022 03:36:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682549,Shooting Permit,11/21/2022 12:00:00 PM,11/22/2022 02:00:00 AM,11/17/2022 03:04:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682543,Theater Load in and Load Outs,11/18/2022 06:00:00 AM,11/18/2022 11:59:00 PM,11/17/2022 02:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+682542,Shooting Permit,12/04/2022 01:00:00 AM,12/09/2022 01:00:00 PM,11/17/2022 02:52:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 52 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,10019
+682540,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 09:00:00 PM,11/17/2022 02:45:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+682531,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 10:00:00 PM,11/17/2022 02:26:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+682523,Shooting Permit,11/23/2022 08:00:00 AM,11/23/2022 04:00:00 PM,11/17/2022 01:59:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 52 STREET and WEST 54 STREET, WEST 52 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Reality,United States of America,10019
+682511,Shooting Permit,11/22/2022 08:00:00 AM,11/22/2022 11:00:00 PM,11/17/2022 01:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 10 AVENUE and 11 AVENUE, HUDSON BOULEVARD WEST between WEST 36 STREET and W 35th St, WEST 35 STREET between HUDSON BOULEVARD EAST and HUDSON BOULEVARD WEST, WEST 37 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 35 STREET and WEST 37 STREET, WEST 37 STREET between DYER AVENUE and 10 AVENUE, WEST 37 STREET between DYER AVENUE and 9 AVENUE, WEST 36 STREET between 8 AVENUE and 9 AVENUE, WEST 36 STREET between 8 AVENUE and 7 AVENUE, WEST 90 STREET between BROADWAY and WEST END AVENUE, BROADWAY between WEST 87 STREET and WEST 91 STREET, WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 85 STREET and WEST 87 STREET",Manhattan,"4, 5, 7","10, 14, 20, 24",Television,Cable-episodic,United States of America,"10001, 10018, 10024"
+682480,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 09:00:00 PM,11/17/2022 12:21:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, WEST STREET between GREENPOINT AVENUE and KENT STREET, EAGLE STREET between FRANKLIN STREET and WEST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682478,Shooting Permit,12/01/2022 09:00:00 AM,12/01/2022 11:00:00 PM,11/17/2022 12:19:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between BROOME STREET and GRAND STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+682476,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/17/2022 12:16:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+682474,Shooting Permit,11/30/2022 08:00:00 AM,11/30/2022 10:00:00 PM,11/17/2022 12:15:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between BROOME STREET and GRAND STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+682459,Shooting Permit,11/22/2022 08:00:00 AM,11/23/2022 02:00:00 AM,11/17/2022 11:51:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, COOPER AVENUE between 82 STREET and 83 STREET, COOPER AVENUE between 83 STREET and WOODHAVEN BOULEVARD, 84 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11374, 11385"
+682431,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 10:00:00 PM,11/17/2022 10:39:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WASHINGTON STREET between HORATIO STREET and GANSEVOORT STREET, WASHINGTON STREET between WEST 12 STREET and HORATIO STREET, JANE STREET between WASHINGTON STREET and WEST STREET, WEST STREET between JANE STREET and HORATIO STREET, WEST STREET between WEST 12 STREET and JANE STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+682429,Theater Load in and Load Outs,11/29/2022 08:00:00 AM,11/29/2022 06:00:00 PM,11/17/2022 10:36:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+682428,Theater Load in and Load Outs,11/23/2022 08:00:00 AM,11/23/2022 06:00:00 PM,11/17/2022 10:36:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+682425,Theater Load in and Load Outs,12/17/2022 12:01:00 AM,12/20/2022 06:00:00 AM,11/17/2022 10:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682416,Shooting Permit,11/22/2022 08:00:00 AM,11/22/2022 06:00:00 PM,11/17/2022 10:10:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 120 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and ST NICHOLAS AVENUE",Manhattan,10,28,Still Photography,Not Applicable,United States of America,10027
+682411,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/17/2022 10:00:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+682404,Theater Load in and Load Outs,12/17/2022 12:01:00 AM,12/18/2022 06:00:00 AM,11/17/2022 09:42:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682402,Theater Load in and Load Outs,12/14/2022 12:01:00 AM,12/15/2022 06:00:00 AM,11/17/2022 09:35:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682400,Theater Load in and Load Outs,12/13/2022 12:01:00 AM,12/13/2022 11:59:00 PM,11/17/2022 09:30:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682398,Theater Load in and Load Outs,12/12/2022 12:01:00 AM,12/12/2022 11:59:00 PM,11/17/2022 09:27:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682397,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 07:00:00 PM,11/17/2022 09:26:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 8 AVENUE and 9 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and BROADWAY, 8 AVENUE between WEST 39 STREET and WEST 38 STREET, 7 AVENUE between WEST 40 STREET and WEST 39 STREET, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"4, 5","14, 18",Television,Made for TV/mini-series,United States of America,"10018, 10036"
+682396,Theater Load in and Load Outs,12/11/2022 12:01:00 AM,12/11/2022 11:59:00 PM,11/17/2022 09:22:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682395,Theater Load in and Load Outs,12/10/2022 12:01:00 AM,12/10/2022 11:59:00 PM,11/17/2022 09:18:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682393,Theater Load in and Load Outs,12/09/2022 12:01:00 AM,12/09/2022 11:59:00 PM,11/17/2022 09:14:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682390,Theater Load in and Load Outs,12/08/2022 12:01:00 AM,12/08/2022 11:59:00 PM,11/17/2022 09:10:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682389,Theater Load in and Load Outs,12/07/2022 12:01:00 AM,12/07/2022 11:59:00 PM,11/17/2022 09:06:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682388,Theater Load in and Load Outs,12/06/2022 12:01:00 AM,12/06/2022 11:59:00 PM,11/17/2022 09:01:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682386,Theater Load in and Load Outs,12/05/2022 12:01:00 AM,12/05/2022 11:59:00 PM,11/17/2022 08:57:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682385,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 10:00:00 PM,11/17/2022 08:55:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 86 STREET and EAST 88 STREET, EAST 88 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 87 STREET and EAST 88 STREET, LEXINGTON AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 86 STREET between 2 AVENUE and 3 AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10028, 10128"
+682347,Shooting Permit,11/21/2022 06:00:00 AM,11/21/2022 11:00:00 PM,11/16/2022 07:22:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682307,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 11:00:00 PM,11/16/2022 05:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+682292,Theater Load in and Load Outs,12/10/2022 12:01:00 AM,12/18/2022 08:00:00 AM,11/16/2022 04:36:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+682291,Theater Load in and Load Outs,12/01/2022 12:01:00 AM,12/09/2022 11:59:00 PM,11/16/2022 04:36:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+682285,Theater Load in and Load Outs,11/21/2022 12:01:00 AM,11/30/2022 11:59:00 PM,11/16/2022 04:28:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+682270,Shooting Permit,11/28/2022 08:00:00 AM,11/28/2022 10:00:00 PM,11/16/2022 04:09:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+682262,Theater Load in and Load Outs,11/27/2022 12:01:00 AM,11/29/2022 06:00:00 AM,11/16/2022 03:54:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+682261,Shooting Permit,11/30/2022 06:00:00 AM,11/30/2022 10:00:00 PM,11/16/2022 03:54:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARYLAND AVENUE between REYNOLDS STREET and COLTON STREET, REYNOLDS STREET between HYLAN BOULEVARD and MARYLAND AVENUE, REYNOLDS STREET between HYLAN BOULEVARD and CLIFTON AVENUE, CLIFTON AVENUE between DONLEY AVENUE and COLTON STREET, DONLEY AVENUE between CLIFTON AVENUE and VIRGINIA AVENUE, VIRGINIA AVENUE between DONLEY AVENUE and DEAD END, COLTON STREET between VIRGINIA AVENUE and CLIFTON AVENUE",Staten Island,1,120,Television,Episodic series,United States of America,10305
+682252,Theater Load in and Load Outs,12/16/2022 12:01:00 AM,12/16/2022 11:59:00 PM,11/16/2022 03:37:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682250,Theater Load in and Load Outs,12/15/2022 12:01:00 AM,12/15/2022 11:59:00 PM,11/16/2022 03:33:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682247,Shooting Permit,11/21/2022 06:00:00 AM,11/21/2022 09:00:00 PM,11/16/2022 03:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between 3 AVENUE and 1 AVENUE, EAST 17 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 19 STREET and EAST 18 STREET, RUTHERFORD PLACE between EAST 17 STREET and EAST 16 STREET",Manhattan,6,13,Television,Episodic series,United States of America,"10003, 10009"
+682246,Theater Load in and Load Outs,12/10/2022 12:01:00 AM,12/11/2022 06:00:00 AM,11/16/2022 03:26:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682239,Theater Load in and Load Outs,12/09/2022 12:01:00 AM,12/09/2022 11:59:00 PM,11/16/2022 03:19:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682236,Theater Load in and Load Outs,12/06/2022 12:01:00 AM,12/07/2022 11:59:00 PM,11/16/2022 03:15:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Theater,Theater,United States of America,10019
+682231,Theater Load in and Load Outs,12/03/2022 12:01:00 AM,12/04/2022 06:00:00 AM,11/16/2022 03:05:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682227,Theater Load in and Load Outs,12/01/2022 12:01:00 AM,12/02/2022 11:59:00 PM,11/16/2022 03:01:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+682202,Theater Load in and Load Outs,11/30/2022 12:01:00 AM,11/30/2022 11:59:00 PM,11/16/2022 02:13:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682198,Shooting Permit,11/21/2022 08:30:00 AM,11/21/2022 08:30:00 PM,11/16/2022 02:11:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LOWERRE PLACE between EAST 229 STREET and EAST 230 STREET, EAST 230 STREET between LOWERRE PLACE and WHITE PLAINS ROAD, EAST 229 STREET between LOWERRE PLACE and WHITE PLAINS ROAD, EAST 228 STREET between WHITE PLAINS ROAD and BARNES AVENUE, WHITE PLAINS ROAD between EAST 228 STREET and EAST 229 STREET, EAST 229 STREET between WHITE PLAINS ROAD and BARNES AVENUE, EAST 230 STREET between WHITE PLAINS ROAD and BARNES AVENUE, EAST 231 STREET between WHITE PLAINS ROAD and BARNES AVENUE, WHITE PLAINS ROAD between EAST 230 STREET and EAST 231 STREET, WEBSTER AVENUE between EAST 233 STREET and EAST GUN HILL ROAD",Bronx,"12, 7","47, 52",Television,Episodic series,United States of America,"10466, 10467"
+682195,Theater Load in and Load Outs,11/29/2022 12:01:00 AM,11/29/2022 11:59:00 PM,11/16/2022 02:07:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682192,Shooting Permit,11/28/2022 07:00:00 AM,11/28/2022 09:00:00 PM,11/16/2022 02:05:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682189,Theater Load in and Load Outs,11/20/2022 12:01:00 AM,11/20/2022 11:59:00 PM,11/16/2022 02:03:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682186,Theater Load in and Load Outs,11/19/2022 12:01:00 AM,11/19/2022 11:59:00 PM,11/16/2022 02:00:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 11 STREET between 3 AVENUE and 4 AVENUE,Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+682180,Shooting Permit,11/23/2022 06:00:00 AM,11/23/2022 08:00:00 PM,11/16/2022 01:51:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+682158,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 09:00:00 PM,11/16/2022 01:18:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682155,Theater Load in and Load Outs,11/23/2022 12:01:00 AM,11/23/2022 11:59:00 PM,11/16/2022 01:13:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+682121,Shooting Permit,11/18/2022 06:00:00 AM,11/18/2022 09:00:00 PM,11/16/2022 12:41:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682102,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 09:00:00 PM,11/16/2022 12:13:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682101,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 09:00:00 PM,11/16/2022 12:11:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE,Brooklyn,5,75,Commercial,Commercial,United States of America,11207
+682099,Shooting Permit,11/21/2022 08:00:00 AM,11/21/2022 06:00:00 PM,11/16/2022 12:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 122 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 122 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 124 STREET and WEST 121 STREET",Manhattan,10,28,Still Photography,Not Applicable,United States of America,10027
+682096,Shooting Permit,11/20/2022 07:00:00 AM,11/20/2022 09:00:00 PM,11/16/2022 12:08:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE,Brooklyn,5,75,Commercial,Commercial,United States of America,11207
+682095,Shooting Permit,11/19/2022 07:00:00 AM,11/19/2022 09:00:00 PM,11/16/2022 12:06:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE,Brooklyn,5,75,Commercial,Commercial,United States of America,11207
+682052,Shooting Permit,11/22/2022 11:00:00 AM,11/23/2022 02:00:00 AM,11/16/2022 11:05:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+682021,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 09:00:00 PM,11/16/2022 10:19:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARLINGTON AVENUE between CLEVELAND STREET and JEROME STREET, WARWICK STREET between RIDGEWOOD AVENUE and ARLINGTON AVENUE, ASHFORD STREET between RIDGEWOOD AVENUE and ARLINGTON AVENUE, WARWICK STREET between ARLINGTON AVENUE and FULTON STREET, JAMAICA AVENUE between JEROME STREET and ELTON STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 75, 83",Television,Episodic series,United States of America,"11207, 11208, 11237, 11385"
+682016,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 09:00:00 PM,11/16/2022 10:16:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+681984,Shooting Permit,11/18/2022 03:00:00 PM,11/19/2022 06:00:00 AM,11/16/2022 08:54:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between READE STREET and CHAMBERS STREET, READE STREET between CHURCH STREET and BROADWAY, BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between CHAMBERS STREET and WARREN STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between WEST BROADWAY and CHURCH STREET, WARREN STREET between CHURCH STREET and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10007
+681980,Shooting Permit,11/18/2022 01:00:00 PM,11/19/2022 04:00:00 AM,11/16/2022 08:32:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","112 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between 111 STREET and 113 STREET, MYRTLE AVENUE between 113 STREET and 115 STREET, 86 AVENUE between 111 STREET and 112 STREET, 86 AVENUE between 112 STREET and 113 STREET, 111 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE",Queens,"82, 9",102,Television,Made for TV/mini-series,United States of America,"11385, 11418"
+681977,Shooting Permit,11/20/2022 12:00:00 AM,11/20/2022 02:59:00 AM,11/16/2022 08:10:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681976,Shooting Permit,11/19/2022 05:00:00 AM,11/19/2022 11:59:00 PM,11/16/2022 07:51:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681975,Shooting Permit,11/18/2022 04:00:00 AM,11/18/2022 11:59:00 PM,11/16/2022 07:47:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681967,Shooting Permit,11/18/2022 09:00:00 AM,11/18/2022 08:00:00 PM,11/16/2022 04:33:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA BOULEVARD between 23 STREET and CRESCENT STREET, ASTORIA BOULEVARD between CRESCENT STREET and 27 STREET",Queens,1,114,Commercial,Commercial,United States of America,11102
+681943,Theater Load in and Load Outs,11/18/2022 06:00:00 AM,11/18/2022 11:59:00 PM,11/15/2022 10:24:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+681871,Theater Load in and Load Outs,12/14/2022 12:01:00 AM,12/15/2022 06:00:00 AM,11/15/2022 05:11:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+681870,Theater Load in and Load Outs,12/16/2022 12:01:00 AM,12/17/2022 06:00:00 AM,11/15/2022 05:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+681866,Theater Load in and Load Outs,12/08/2022 12:01:00 AM,12/10/2022 06:00:00 AM,11/15/2022 04:56:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+681864,Theater Load in and Load Outs,11/17/2022 12:01:00 AM,11/20/2022 06:00:00 AM,11/15/2022 04:54:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+681858,Theater Load in and Load Outs,11/19/2022 12:01:00 AM,11/20/2022 06:00:00 AM,11/15/2022 04:40:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+681856,Theater Load in and Load Outs,11/25/2022 06:00:00 AM,11/25/2022 11:59:00 PM,11/15/2022 04:34:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+681853,Theater Load in and Load Outs,11/18/2022 12:01:00 AM,11/18/2022 11:59:00 PM,11/15/2022 04:15:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+681845,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 11:00:00 PM,11/15/2022 03:58:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+681840,Theater Load in and Load Outs,11/17/2022 12:01:00 AM,11/17/2022 11:59:00 PM,11/15/2022 03:48:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+681839,Shooting Permit,11/29/2022 07:00:00 AM,11/29/2022 10:00:00 PM,11/15/2022 03:47:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BERRY STREET and ROEBLING STREET, DRIGGS AVENUE between SOUTH 8 STREET and SOUTH 5 STREET, BEDFORD AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 5 STREET between WYTHE AVENUE and DRIGGS AVENUE, JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+681822,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 11:00:00 PM,11/15/2022 03:36:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between BORDEN AVENUE and 48 AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END",Queens,"1, 2","108, 94",Television,Cable-episodic,United States of America,"11101, 11109, 11222"
+681743,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 08:30:00 PM,11/15/2022 02:47:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 48 STREET and 49 STREET, 49 STREET between QUEENS BOULEVARD and 47 AVENUE, QUEENS BOULEVARD between 49 STREET and 50 STREET, 81 STREET between ROOSEVELT AVENUE and 37 AVENUE",Queens,"2, 3","108, 115",Commercial,Commercial,United States of America,"11104, 11372, 11377"
+681739,Shooting Permit,11/17/2022 04:00:00 PM,11/18/2022 06:00:00 AM,11/15/2022 02:45:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","122 STREET between 149 AVENUE and 150 AVENUE, 122 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 150 AVENUE between 121 STREET and 122 PLACE, 120 STREET between 149 AVENUE and NORTH CONDUIT AVENUE, 121 STREET between 149 AVENUE and 150 AVENUE, LEFFERTS BOULEVARD between 135 AVENUE and 149 AVENUE, 150 AVENUE between 122 PLACE and 123 STREET, 150 AVENUE between 123 STREET and NORTH CONDUIT AVENUE, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 122 PLACE between 149 AVENUE and NORTH CONDUIT AVENUE, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE",Queens,10,106,Television,Made for TV/mini-series,United States of America,11420
+681729,Shooting Permit,11/18/2022 06:00:00 AM,11/18/2022 11:59:00 PM,11/15/2022 02:40:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between EASTERN PARKWAY and CARROLL STREET, LINCOLN PLACE between CLASSON AVENUE and FRANKLIN AVENUE, FRANKLIN AVENUE between ST JOHNS PLACE and LINCOLN PLACE, ST JOHNS PLACE between CLASSON AVENUE and FRANKLIN AVENUE, STERLING PLACE between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,"55, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11225, 11238"
+681715,Shooting Permit,11/18/2022 04:00:00 AM,11/18/2022 09:00:00 PM,11/15/2022 02:32:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and GREEN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681695,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 09:00:00 PM,11/15/2022 02:10:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+681678,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 10:00:00 PM,11/15/2022 01:57:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+681674,Theater Load in and Load Outs,11/30/2022 12:01:00 AM,11/30/2022 11:59:00 PM,11/15/2022 01:54:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+681657,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 11:00:00 PM,11/15/2022 01:41:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681656,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 11:00:00 PM,11/15/2022 01:40:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681653,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 11:00:00 PM,11/15/2022 01:39:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681646,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 10:00:00 PM,11/15/2022 01:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+681644,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 11:00:00 PM,11/15/2022 01:28:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST JOHNS PLACE between CLASSON AVENUE and FRANKLIN AVENUE, FRANKLIN AVENUE between ST JOHNS PLACE and LINCOLN PLACE, LINCOLN PLACE between CLASSON AVENUE and FRANKLIN AVENUE, WASHINGTON AVENUE between EASTERN PARKWAY and CARROLL STREET, OCEAN AVENUE between FLATBUSH AVENUE and PARKSIDE AVENUE",Brooklyn,"55, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11215, 11225, 11238"
+681641,Shooting Permit,11/21/2022 06:00:00 AM,11/21/2022 10:00:00 PM,11/15/2022 01:28:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+681515,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 09:00:00 PM,11/15/2022 11:46:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD,Manhattan,10,28,Commercial,Promo,United States of America,10027
+681505,Shooting Permit,11/21/2022 06:00:00 AM,11/21/2022 08:00:00 PM,11/15/2022 11:39:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+681497,Shooting Permit,11/21/2022 06:00:00 AM,11/21/2022 09:00:00 PM,11/15/2022 11:33:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 126 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 125 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,28,Commercial,Promo,United States of America,10027
+681471,Shooting Permit,11/16/2022 05:00:00 AM,11/16/2022 11:00:00 AM,11/15/2022 11:03:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681470,Theater Load in and Load Outs,11/21/2022 12:01:00 AM,11/22/2022 11:59:00 PM,11/15/2022 11:02:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+681458,Shooting Permit,11/18/2022 12:00:00 PM,11/18/2022 11:59:00 PM,11/15/2022 10:34:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","ANDERSON AVENUE between WEST 166 STREET and WEST 165 STREET, ANDERSON AVENUE between WEST 165 STREET and WEST 164 STREET, WOODYCREST AVENUE between WEST 166 STREET and WEST 165 STREET, WOODYCREST AVENUE between WEST 165 STREET and WEST 164 STREET, WEST 165 STREET between NELSON AVENUE and WOODYCREST AVENUE, JEROME AVENUE between EAST 165 STREET and Cromwell Ave, JEROME AVENUE between EAST 164 STREET and EAST 165 STREET",Bronx,4,44,Television,Episodic series,United States of America,10452
+681426,Shooting Permit,11/19/2022 06:30:00 AM,11/19/2022 10:00:00 PM,11/15/2022 09:45:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST 9 STREET, HICKS STREET between MILL STREET and WEST 9 STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+681392,Shooting Permit,11/17/2022 03:00:00 PM,11/18/2022 06:00:00 AM,11/15/2022 08:49:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between CHAMBERS STREET and WARREN STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY, WARREN STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10007
+681390,DCAS Prep/Shoot/Wrap Permit,11/20/2022 09:00:00 AM,11/20/2022 11:00:00 PM,11/15/2022 08:48:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL AVENUE between HYATT STREET and BAY STREET,Staten Island,1,120,Commercial,Promo,United States of America,10301
+681339,Shooting Permit,11/18/2022 06:00:00 AM,11/18/2022 08:00:00 PM,11/14/2022 10:04:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 118 STREET and WEST 120 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, WEST 116TH ST between FIFTH AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,10,28,Television,Episodic series,United States of America,10026
+681338,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 11:30:00 PM,11/14/2022 09:45:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, MYRTLE AVENUE between MENAHAN STREET and GROVE STREET, IRVING AVENUE between MENAHAN STREET and GATES AVENUE, LINDEN STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, GROVE STREET between IRVING AVENUE and WYCKOFF AVENUE, MYRTLE AVENUE between WYCKOFF AVENUE and PUTNAM AVE, MADISON ST between MYRTLE AVENUE and CYRPRESS AVENUE, ST NICHOLAS AVENUE between MYRTLE AVE and WOODBINE ST, MENAHAN STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between BLEECKER STREET and LINDEN STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+681321,Shooting Permit,11/17/2022 02:00:00 PM,11/17/2022 11:59:00 PM,11/14/2022 06:48:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WAVERLY PLACE between MACDOUGAL STREET and 6 AVENUE,Manhattan,2,6,Film,Feature,United States of America,10011
+681319,Theater Load in and Load Outs,11/17/2022 12:01:00 AM,11/17/2022 11:59:00 PM,11/14/2022 06:05:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+681262,Shooting Permit,11/18/2022 12:00:00 PM,11/19/2022 04:00:00 AM,11/14/2022 02:14:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA STREET between SIGOURNEY STREET and DEAD END, BAY STREET between HICKS STREET and HENRY STREET, HICKS STREET between LORRAINE STREET and BAY STREET, HENRY STREET between LORRAINE STREET and BAY STREET, VAN BRUNT STREET between REED STREET and DEAD END",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+681261,Shooting Permit,11/16/2022 07:00:00 AM,11/16/2022 09:00:00 PM,11/14/2022 02:14:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVENUE between MINETTA LANE and W HOUSTON ST, BLEECKER STREET between 6 AVENUE and MACDOUGAL STREET",Manhattan,2,6,Commercial,Commercial,United States of America,"10012, 10014"
+681258,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 08:00:00 PM,11/14/2022 02:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+681255,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 10:00:00 PM,11/14/2022 02:06:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST HOUSTON STREET and PRINCE STREET, KENMARE STREET between ELIZABETH STREET and BOWERY, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between DELANCEY STREET and BROOME STREET, DELANCEY STREET between BOWERY and ALLEN STREET, ELDRIDGE STREET between RIVINGTON STREET and DELANCEY STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+681252,Theater Load in and Load Outs,12/14/2022 06:00:00 AM,12/14/2022 11:59:00 PM,11/14/2022 02:02:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+681249,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 10:00:00 PM,11/14/2022 01:52:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, COMMERCIAL STREET between FRANKLIN STREET and WEST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681244,Shooting Permit,11/16/2022 04:00:00 PM,11/17/2022 06:00:00 AM,11/14/2022 01:32:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 9 AVENUE, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and BLEECKER STREET, LAGUARDIA PLACE between BLEECKER STREET and WEST 3 STREET, WEST 14TH STREET between WASHINGTON STREET and 9TH AVENUE, WEST 14TH STREET between 9 AVENUE and 7 AVENUE, 9 AVENUE between LITTLE WEST 12 STREET and GANSEVOORT STREET",Manhattan,"2, 4","1, 10, 13, 6",Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+681232,Theater Load in and Load Outs,11/15/2022 12:01:00 AM,12/06/2022 06:00:00 AM,11/14/2022 01:03:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+681229,Shooting Permit,11/18/2022 07:00:00 AM,11/18/2022 09:00:00 PM,11/14/2022 12:52:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CATON AVENUE between CONEY ISLAND AVENUE and ARGYLE ROAD, ARGYLE ROAD between CATON AVENUE and CHURCH AVENUE, ARGYLE ROAD between CHURCH AVENUE and ALBEMARLE ROAD, ARGYLE ROAD between ALBEMARLE ROAD and BEVERLY ROAD, RUGBY ROAD between CHURCH AVENUE and ALBEMARLE ROAD, ARGYLE ROAD between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+681228,Shooting Permit,11/15/2022 05:00:00 AM,11/15/2022 09:30:00 PM,11/14/2022 12:43:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681218,Shooting Permit,11/18/2022 11:00:00 AM,11/19/2022 01:00:00 AM,11/14/2022 12:11:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+681200,Shooting Permit,11/16/2022 07:00:00 AM,11/16/2022 10:00:00 PM,11/14/2022 11:07:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+681194,Shooting Permit,11/15/2022 04:00:00 AM,11/15/2022 09:30:00 AM,11/14/2022 10:50:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+681190,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 10:00:00 PM,11/14/2022 10:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 89 STREET between YORK AVENUE and EAST END AVENUE, EAST 90 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between 1 AVENUE and EAST END AVENUE, YORK AVENUE between EAST 87 STREET and EAST 88 STREET, EAST END AVENUE between EAST 89 STREET and EAST 90 STREET, EAST 90 STREET between 2 AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+681186,Shooting Permit,11/18/2022 06:00:00 AM,11/18/2022 09:00:00 PM,11/14/2022 10:12:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST 9 STREET, HICKS STREET between MILL STREET and WEST 9 STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+681184,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 09:00:00 PM,11/14/2022 10:09:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BLVD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11378"
+681181,Theater Load in and Load Outs,11/16/2022 12:01:00 AM,11/16/2022 11:59:00 PM,11/14/2022 10:04:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+681179,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 11:00:00 PM,11/14/2022 09:52:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",GUINZBURG ROAD between 150 STREET and TUCKERTON STREET,Queens,12,103,Television,Episodic series,United States of America,11433
+681175,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 10:00:00 PM,11/14/2022 09:31:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between MADISON AVENUE and 5 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 55 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10019, 10020, 10022, 10152, 10171"
+681169,Shooting Permit,11/18/2022 07:00:00 AM,11/18/2022 09:00:00 PM,11/14/2022 09:01:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+681167,Shooting Permit,11/16/2022 03:00:00 PM,11/17/2022 06:00:00 AM,11/14/2022 08:56:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between CHAMBERS STREET and WARREN STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY, WARREN STREET between CHURCH STREET and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10007
+681165,Shooting Permit,11/16/2022 09:00:00 AM,11/16/2022 11:00:00 PM,11/14/2022 08:42:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, EAST 25 STREET between AVENUE D and CLARENDON ROAD, NASSAU STREET between BRIDGE STREET and DUFFIELD STREET",Brooklyn,"14, 17, 2, 3","67, 7, 70, 84, 88",WEB,Not Applicable,United States of America,"10002, 11201, 11205, 11226"
+681152,Shooting Permit,11/17/2022 12:00:00 PM,11/17/2022 11:30:00 PM,11/13/2022 06:31:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 30 STREET and 31 STREET, BROADWAY between 29 STREET and 30 STREET, 30 STREET between 31 AVENUE and BROADWAY, 29 STREET between 31 AVENUE and BROADWAY, 29 STREET between BROADWAY and 33 AVENUE, BROADWAY between CRESCENT STREET and 29 STREET, CRESCENT STREET between 31 DRIVE and BROADWAY, VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH, 40 AVENUE between VERNON BOULEVARD and 10 STREET, 40 AVENUE between 10 STREET and 12 STREET, 40 AVENUE between 12 STREET and 21 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 9 STREET and 10 STREET, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,"11101, 11106"
+681137,Shooting Permit,11/18/2022 06:00:00 AM,11/18/2022 11:00:00 PM,11/13/2022 12:01:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+681120,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 06:00:00 PM,11/12/2022 06:24:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between ALLEN STREET and ORCHARD STREET, GRAND STREET between LUDLOW STREET and ORCHARD STREET",Manhattan,3,"5, 7",Commercial,Commercial,United States of America,10002
+681084,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 07:00:00 PM,11/11/2022 08:14:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DAM STREET between THOMSON AVENUE and 47 AVENUE, BOOTH MEMORIAL AVENUE between MAIN STREET and 141 STREET, MAIN STREET between BOOTH MEMORIAL AVENUE and 57 ROAD, MAIN STREET between 57 ROAD and 58 AVENUE",Queens,"2, 7","108, 109",Commercial,Commercial,United States of America,"11101, 11355"
+681077,Theater Load in and Load Outs,11/16/2022 06:00:00 AM,11/17/2022 11:59:00 PM,11/11/2022 05:17:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+681047,Theater Load in and Load Outs,11/23/2022 12:01:00 AM,11/23/2022 11:59:00 PM,11/11/2022 01:28:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+681043,Theater Load in and Load Outs,11/22/2022 12:01:00 AM,11/26/2022 08:00:00 AM,11/11/2022 01:13:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+681034,Theater Load in and Load Outs,11/17/2022 12:01:00 AM,11/20/2022 11:59:00 PM,11/11/2022 12:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+681016,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 11:00:00 PM,11/11/2022 10:45:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE FRONT PARKWAY between BEACH 100 STREET and BEACH 95 STREET, BEACH 95 STREET between SHORE FRONT PARKWAY and ROCKAWAY BEACH BOULEVARD, CHANNEL ROAD between EAST 20 ROAD and EAST 18 ROAD, CHANNEL ROAD between EAST 18 ROAD and EAST 16 ROAD, CROSS BAY BOULEVARD between EAST 20 ROAD and EAST 18 ROAD, CROSS BAY BOULEVARD between EAST 18 ROAD and EAST 16 ROAD",Queens,14,100,Film,Feature,United States of America,"11693, 11694"
+680986,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 03:00:00 PM,11/10/2022 05:45:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between READE STREET and CHAMBERS STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY, BROADWAY between WARREN STREET and MURRAY STREET, BROADWAY between CHAMBERS STREET and WARREN STREET, WARREN STREET between CHURCH STREET and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10007
+680967,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 11:00:00 PM,11/10/2022 04:40:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+680959,Theater Load in and Load Outs,11/18/2022 12:01:00 AM,11/20/2022 06:00:00 AM,11/10/2022 04:21:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+680954,Shooting Permit,11/16/2022 07:00:00 AM,11/16/2022 10:00:00 PM,11/10/2022 04:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between 2 AVENUE and 3 AVENUE, EAST 28 STREET between MT CARMEL PLACE and 1 AVENUE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 23 STREET between LEX AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEX AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, LEX AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+680947,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 08:00:00 PM,11/10/2022 03:52:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+680946,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 08:00:00 PM,11/10/2022 03:52:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+680942,Shooting Permit,11/28/2022 06:00:00 AM,11/28/2022 09:00:00 PM,11/10/2022 03:42:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 44 AVENUE and 43 ROAD, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 AVENUE, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,11101
+680930,Theater Load in and Load Outs,11/19/2022 12:01:00 AM,11/19/2022 11:59:00 PM,11/10/2022 03:19:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+680910,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 10:00:00 PM,11/10/2022 02:38:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between 5 STREET and VERNON BOULEVARD, BORDEN AVENUE between 5 STREET and 2 STREET, 5 STREET between BORDEN AVENUE and 51 AVENUE, BORDEN AVENUE between CENTER BOULEVARD and 2 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+680911,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 10:00:00 PM,11/10/2022 02:38:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVE between VERNON BOULEVARD and 5TH STREET, BORDEN AVENUE between 5TH STREET and 2ND STREET, 5 STREET between BORDEN AVENUE and 51 AVENUE, BORDEN AVENUE between CENTER BOULEVARD and 2 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+680906,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 11:00:00 PM,11/10/2022 02:32:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+680904,Theater Load in and Load Outs,11/15/2022 12:01:00 AM,11/15/2022 11:59:00 PM,11/10/2022 02:25:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+680902,Shooting Permit,11/18/2022 07:00:00 AM,11/18/2022 09:30:00 PM,11/10/2022 02:18:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DIAMOND STREET and JEWEL STREET, NORMAN AVENUE between MOULTRIE STREET and JEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+680900,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 11:00:00 PM,11/10/2022 02:11:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+680899,Shooting Permit,11/16/2022 02:00:00 PM,11/17/2022 04:00:00 AM,11/10/2022 02:10:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 70 STREET and EAST 71 STREET, EAST 70 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and 5 AVENUE, EAST 73 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10021
+680895,Theater Load in and Load Outs,11/14/2022 12:01:00 AM,11/14/2022 11:59:00 PM,11/10/2022 02:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+680892,Theater Load in and Load Outs,11/16/2022 12:01:00 AM,11/16/2022 11:59:00 PM,11/10/2022 01:54:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+680888,Theater Load in and Load Outs,11/15/2022 12:01:00 AM,11/15/2022 11:59:00 PM,11/10/2022 01:22:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+680872,Theater Load in and Load Outs,11/15/2022 12:01:00 AM,11/16/2022 11:59:00 PM,11/10/2022 12:44:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+680868,Theater Load in and Load Outs,11/14/2022 12:01:00 AM,11/14/2022 11:59:00 PM,11/10/2022 12:33:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+680867,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 11:59:00 PM,11/10/2022 12:33:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 10 STREET between 38 AVENUE and 40 AVENUE, 9 STREET between 38 AVENUE and 40 AVENUE, 40 AVENUE between 9 STREET and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+680865,Theater Load in and Load Outs,11/18/2022 12:01:00 AM,11/18/2022 11:59:00 PM,11/10/2022 12:23:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+680837,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 06:00:00 PM,11/10/2022 11:28:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 59 STREET and WEST 58 STREET, 6 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"5, 64, 7, 8","18, 19, 20, 22",Still Photography,Not Applicable,United States of America,"10019, 10023, 10065"
+680835,Theater Load in and Load Outs,11/21/2022 12:01:00 AM,11/21/2022 11:59:00 PM,11/10/2022 11:26:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+680812,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 09:00:00 PM,11/10/2022 10:32:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+680805,Shooting Permit,11/15/2022 10:00:00 AM,11/15/2022 11:59:00 PM,11/10/2022 10:09:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, Schley Ave between EAST TREMONT AVENUE and Cross Bronx Expy Ext, EAST TREMONT AVENUE between PHILIP AVENUE and RANDALL AVENUE, EAST TREMONT AVENUE between RANDALL AVENUE and SCHLEY AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, E Tremont Ave between SCHLEY AVENUE and Cross Bronx Expy Ext, Cross Bronx Expy Ext between E Tremont Ave and Revere Ave",Bronx,10,45,Television,Cable-episodic,United States of America,10465
+680796,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 10:00:00 PM,11/10/2022 09:49:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 105 ST and FRAWLEY CIRCLE, 5 AVENUE between EAST 94 STREET and EAST 95 STREET, 5 AVENUE between EAST 96 STREET and EAST 97 STREET, EAST 96 STREET between 5 AVENUE and MADISON AVENUE, EAST 95 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 94 STREET and EAST 95 STREET, EAST 89 STREET between YORK AVENUE and EAST END AVENUE, EAST END AVENUE between EAST 89 STREET and EAST 90 STREET, EAST 90 STREET between YORK AVENUE and 1 AVENUE, EAST 87 STREET between 1 AVENUE and EAST END AVENUE, YORK AVENUE between EAST 87 STREET and EAST 88 STREET",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10023, 10024, 10025, 10029, 10128"
+680793,Shooting Permit,11/23/2022 07:00:00 AM,11/23/2022 09:00:00 PM,11/10/2022 09:36:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+680791,Shooting Permit,11/22/2022 07:00:00 AM,11/22/2022 09:00:00 PM,11/10/2022 09:26:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+680789,Shooting Permit,11/21/2022 07:00:00 AM,11/21/2022 09:00:00 PM,11/10/2022 09:21:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+680786,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 10:00:00 PM,11/10/2022 09:14:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINEAPPLE STREET between COLUMBIA HEIGHTS and WILLOW STREET, COLUMBIA HEIGHTS between PINEAPPLE STREET and CLARK STREET, CLARK STREET between COLUMBIA HEIGHTS and WILLOW STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, TILLARY STREET between CADMAN PLAZA EAST and CADMAN PLAZA WEST, CRANBERRY STREET between HICKS STREET and HENRY STREET, WILLOW STREET between ORANGE STREET and PIERREPONT STREET, COLUMBIA HEIGHTS between CLARK STREET and PIERREPONT STREET, PINEAPPLE STREET between HICKS STREET and WILLOW STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+680784,Shooting Permit,11/14/2022 12:00:00 PM,11/15/2022 02:00:00 AM,11/10/2022 08:49:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between WARREN STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between MURRAY STREET and WARREN STREET, BROADWAY between CHAMBERS STREET and READE STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, 6 AVENUE between LISPENARD STREET and CHURCH STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, WALKER STREET between CHURCH STREET and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+680779,Shooting Permit,11/17/2022 06:00:00 AM,11/17/2022 09:00:00 PM,11/10/2022 08:20:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST 9 STREET, HICKS STREET between WEST 9 STREET and MILL STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+680777,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 08:30:00 PM,11/10/2022 08:09:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between HUNTINGTON STREET and WEST 9 STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+680776,Shooting Permit,11/15/2022 06:30:00 AM,11/15/2022 08:30:00 PM,11/10/2022 08:09:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, HICKS STREET between WEST 9 STREET and MILL STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+680774,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 09:00:00 PM,11/10/2022 07:48:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+680767,Theater Load in and Load Outs,11/13/2022 12:01:00 AM,11/13/2022 11:59:00 PM,11/09/2022 09:56:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+680766,Theater Load in and Load Outs,11/13/2022 12:01:00 AM,11/13/2022 11:59:00 PM,11/09/2022 09:46:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+680756,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 08:00:00 PM,11/09/2022 08:16:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between TUDOR CITY PLACE and DEAD END, TUDOR CITY PLACE between EAST 41 STREET and EAST 42 STREET, TUDOR CITY PLACE between EAST 42 STREET and EAST 43 STREET, TUDOR CITY PLACE between EAST 41 STREET and DEAD END, EAST 41 STREET between TUDOR CITY PLACE and 2 AVENUE, EAST 41 STREET between 2 AVENUE and TUNNEL EXIT STREET, EAST 43 STREET between 1 AVENUE and 2 AVENUE, EAST 65 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 64 STREET and EAST 67 STREET, EAST 66 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 55 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6, 8","17, 18, 19",Television,Episodic series,United States of America,"10017, 10022, 10065, 10152, 10171"
+680755,Shooting Permit,11/16/2022 07:00:00 AM,11/16/2022 11:00:00 PM,11/09/2022 08:15:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, NORMAN AVENUE between MCGUINNESS BOULEVARD and JEWEL STREET, NEWEL STREET between NORMAN AVENUE and NASSAU AVENUE, NEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+680741,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 06:00:00 PM,11/09/2022 06:34:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+680739,Shooting Permit,11/18/2022 07:00:00 AM,11/18/2022 09:00:00 PM,11/09/2022 06:27:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+680734,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 09:00:00 PM,11/09/2022 06:18:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+680733,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 10:00:00 PM,11/09/2022 06:13:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","POWELLS COVE BOULEVARD between 159 STREET and 166 STREET, 161 STREET between POWELLS COVE BOULEVARD and RIVERSIDE DRIVE, BELL BOULEVARD between 212 STREET and 16 AVENUE, 212 STREET between BELL BOULEVARD and 15 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11357, 11360"
+680731,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 11:00:00 PM,11/09/2022 06:04:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 PLACE between SKILLMAN AVENUE and 43 AVENUE, SKILLMAN AVENUE between 43 STREET and HONEYWELL STREET, 43 AVENUE between 39 PLACE and 40 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104"
+680724,Shooting Permit,11/15/2022 06:30:00 AM,11/15/2022 08:00:00 PM,11/09/2022 05:04:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","FREEDOM PLACE SOUTH between WEST 59 STREET and WEST 60 STREET, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 59 STREET between WEST END AVENUE and 10 AVENUE, WEST 58 STREET between 11 AVENUE and 12 AVENUE, WEST 58 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 58 STREET and WEST 59 STREET, 11 AVENUE between WEST 57 STREET and WEST 58 STREET",Manhattan,"4, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+680718,Shooting Permit,11/16/2022 08:00:00 AM,11/16/2022 10:00:00 PM,11/09/2022 04:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between EMPIRE BOULEVARD and LINCOLN ROAD, LINCOLN ROAD between OCEAN AVENUE and FLATBUSH AVENUE, PARKSIDE AVENUE between OCEAN AVENUE and PARK CIRCLE",Brooklyn,"14, 55, 9","70, 71, 78",Television,Episodic series,United States of America,"11215, 11225, 11226"
+680714,Shooting Permit,11/14/2022 07:00:00 AM,11/14/2022 11:00:00 PM,11/09/2022 04:38:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+680705,Shooting Permit,11/14/2022 07:00:00 AM,11/14/2022 11:00:00 PM,11/09/2022 04:26:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between BROOME STREET and SPRING STREET, WEST BROADWAY between BROOME STREET and PRINCE STREET, WEST BROADWAY between BROOME STREET and GRAND STREET, SPRING STREET between WEST BROADWAY and GREENE STREET, THOMPSON STREET between SPRING STREET and PRINCE STREET, BROOME STREET between WEST BROADWAY and CROSBY STREET, SULLIVAN STREET between BROOME STREET and SPRING STREET, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE between WEST 13 STREET and WEST 14 STREET, GRAND STREET between ELDRIDGE STREET and ALLEN STREET, ELDRIDGE STREET between GRAND STREET and CANAL STREET, HESTER STREET between ELDRIDGE STREET and ALLEN STREET, ALLEN STREET between HESTER STREET and DELANCEY STREET, MULBERRY STREET between JERSEY STREET and EAST HOUSTON STREET",Manhattan,"2, 3","1, 5, 6, 7",Television,Made for TV/mini-series,United States of America,"10002, 10011, 10012, 10013, 10014"
+680690,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 11:00:00 PM,11/09/2022 03:56:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+680680,Shooting Permit,11/14/2022 05:00:00 AM,11/14/2022 09:00:00 PM,11/09/2022 03:44:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 45 AVENUE between 11 STREET and 21 STREET, 11 STREET between 45 AVENUE and 44 DRIVE, 21 STREET between 45 ROAD and 44 DRIVE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+680678,Shooting Permit,11/17/2022 11:00:00 AM,11/18/2022 03:00:00 AM,11/09/2022 03:42:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+680671,Shooting Permit,11/16/2022 08:00:00 AM,11/16/2022 10:00:00 PM,11/09/2022 03:29:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 78 STREET and EAST 77 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 77 STREET and EAST 76 STREET, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 80 STREET and EAST 76 STREET, EAST 44 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, 2 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 45 STREET between 3 AVENUE and 2 AVENUE, EAST 46 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 80 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,"10017, 10021, 10075"
+680668,Shooting Permit,12/10/2022 06:00:00 AM,12/10/2022 11:59:00 PM,11/09/2022 03:25:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between COLUMBUS AVENUE and BROADWAY,Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+680666,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 11:59:00 PM,11/09/2022 03:25:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between COLUMBUS AVENUE and BROADWAY,Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+680667,Shooting Permit,12/09/2022 06:00:00 AM,12/09/2022 11:59:00 PM,11/09/2022 03:25:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between COLUMBUS AVENUE and BROADWAY,Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+680662,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 10:00:00 PM,11/09/2022 03:17:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between TERRACE PLACE and GREENWOOD AVENUE, GREENWOOD AVENUE between MCDONALD AVENUE and EAST 5 STREET, MCDONALD AVENUE between FORT HAMILTON PARKWAY and GREENWOOD AVENUE, EAST 2 STREET between FORT HAMILTON PARKWAY and GREENWOOD AVENUE, FORT HAMILTON PARKWAY between EAST 2 STREET and EAST 3 STREET",Brooklyn,7,72,Television,Episodic series,United States of America,"11218, 11232"
+680661,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 11:00:00 PM,11/09/2022 03:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+680656,Shooting Permit,11/14/2022 07:00:00 AM,11/14/2022 10:00:00 PM,11/09/2022 02:56:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINEAPPLE STREET between COLUMBIA HEIGHTS and WILLOW STREET, COLUMBIA HEIGHTS between PINEAPPLE STREET and CLARK STREET, CLARK STREET between COLUMBIA HEIGHTS and WILLOW STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA EAST and CADMAN PLAZA WEST, CRANBERRY STREET between HICKS STREET and HENRY STREET, WILLOW STREET between ORANGE STREET and PIERREPONT STREET, COLUMBIA HEIGHTS between CLARK STREET and PIERREPONT STREET, PINEAPPLE STREET between HICKS STREET and WILLOW STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+680651,Shooting Permit,11/13/2022 04:00:00 AM,11/13/2022 01:00:00 PM,11/09/2022 02:48:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+680650,Shooting Permit,11/14/2022 08:00:00 AM,11/14/2022 11:00:00 PM,11/09/2022 02:47:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between GOLD STREET and SOUTH STREET, JOHN STREET between FRONT STREET and SOUTH STREET, SOUTH STREET between JOHN STREET and PECK SLIP, BEEKMAN STREET between WATER STREET and SOUTH STREET, PECK SLIP between SOUTH STREET and WATER STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+680618,Shooting Permit,11/14/2022 02:00:00 PM,11/14/2022 07:00:00 PM,11/09/2022 01:51:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between AMSTERDAM AVENUE and WEST END AVENUE, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET",Manhattan,7,20,Television,Episodic series,United States of America,10023
+680586,Shooting Permit,11/15/2022 08:30:00 AM,11/15/2022 10:00:00 PM,11/09/2022 11:38:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+680585,Theater Load in and Load Outs,11/12/2022 06:00:00 AM,11/13/2022 06:00:00 AM,11/09/2022 11:37:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+680577,Shooting Permit,11/14/2022 04:00:00 AM,11/14/2022 06:00:00 PM,11/09/2022 11:19:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE OUTER ROAD between RAILROAD AVENUE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+680572,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 08:00:00 PM,11/09/2022 11:11:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+680571,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 08:00:00 PM,11/09/2022 11:10:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+680569,Shooting Permit,11/12/2022 06:00:00 AM,11/12/2022 08:00:00 PM,11/09/2022 11:09:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+680568,Shooting Permit,11/11/2022 06:00:00 AM,11/11/2022 08:00:00 PM,11/09/2022 11:08:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+680555,Shooting Permit,11/16/2022 07:00:00 AM,11/16/2022 09:00:00 PM,11/09/2022 10:07:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+680554,Theater Load in and Load Outs,12/02/2022 08:00:00 AM,12/02/2022 11:59:00 PM,11/09/2022 10:05:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+680553,Shooting Permit,11/14/2022 10:00:00 AM,11/14/2022 02:00:00 PM,11/09/2022 10:02:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 58 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10021, 10022, 10065, 10075"
+680530,Shooting Permit,11/11/2022 07:00:00 AM,11/11/2022 10:00:00 PM,11/09/2022 08:59:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between SOUTH STREET and WATER STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between SOUTH STREET and WATER STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, PARK AVE between E 30 ST and E 33 ST, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,"1, 5","1, 14",Television,Cable-episodic,United States of America,"10001, 10004, 10005, 10016"
+680528,Shooting Permit,11/13/2022 06:00:00 AM,11/13/2022 08:00:00 PM,11/09/2022 08:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVE between HOUSTON ST and DOWNING ST, VARICK STREET between CANAL STREET and WATTS STREET, ST MARKS PLACE between 1 AVENUE and 2 AVENUE",Manhattan,"2, 3","1, 6, 9",WEB,Not Applicable,United States of America,"10003, 10012, 10013, 10014"
+680516,Shooting Permit,11/12/2022 01:00:00 AM,11/12/2022 01:00:00 PM,11/09/2022 06:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+680506,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 10:00:00 PM,11/08/2022 09:50:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOUNT MORRIS PARK WEST between WEST 120 STREET and WEST 124 STREET, WEST 122 STREET between MOUNT MORRIS PARK WEST and LENOX AVENUE, WEST 121 STREET between MOUNT MORRIS PARK WEST and LENOX AVENUE, WEST 125 STREET between ADAM CLAYTON POWELL JR BOULEVARD and 5 AVENUE, EAST 125 STREET between MADISON AVENUE and 5 AVENUE, WEST 129 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 129 STREET and WEST 131 STREET, WEST 131 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 129 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, MALCOLM X BOULEVARD between WEST 124 STREET and WEST 125 STREET",Manhattan,"10, 11","25, 28, 32",Television,Episodic series,United States of America,"10027, 10035"
+680483,Shooting Permit,11/15/2022 01:00:00 PM,11/16/2022 04:00:00 AM,11/08/2022 05:41:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE, EAST 73 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10021, 10075"
+680481,Shooting Permit,11/12/2022 08:00:00 AM,11/12/2022 11:00:00 PM,11/08/2022 05:34:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between IRVING PLACE and PARK AVENUE SOUTH, IRVING PLACE between EAST 19 STREET and EAST 20 STREET",Manhattan,"5, 6",13,Film,Feature,United States of America,10003
+680465,Theater Load in and Load Outs,11/16/2022 06:00:00 AM,11/16/2022 11:59:00 PM,11/08/2022 04:40:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+680455,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 10:00:00 PM,11/08/2022 04:20:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN AVENUE between FLUSHING AVENUE and PARK AVENUE, LITTLE NASSAU STREET between KENT AVENUE and DEAD END, FLUSHING AVENUE between CLASSON AVENUE and SKILLMAN STREET, KENT AVENUE between FLUSHING AVENUE and LITTLE NASSAU STREET, MYRTLE AVENUE between TAAFFE PLACE and BEDFORD AVENUE",Brooklyn,"1, 3","79, 90",Television,Episodic series,United States of America,11205
+680407,Theater Load in and Load Outs,11/15/2022 12:01:00 AM,11/16/2022 11:59:00 PM,11/08/2022 01:48:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+680398,Theater Load in and Load Outs,12/05/2022 12:01:00 AM,12/07/2022 11:59:00 PM,11/08/2022 01:31:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between IRVING PLACE and UNION SQUARE EAST",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+680384,Shooting Permit,11/12/2022 07:00:00 AM,11/12/2022 05:00:00 PM,11/08/2022 12:58:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST WASHINGTON PLACE and WAVERLY PLACE, PIKE STREET between CHERRY STREET and MONROE STREET",Manhattan,"0, 2, 3","1, 5, 6, 7",Still Photography,Not Applicable,United States of America,"10002, 10011, 10014"
+680376,Theater Load in and Load Outs,11/21/2022 08:00:00 AM,11/21/2022 11:00:00 PM,11/08/2022 12:31:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+680369,Shooting Permit,11/15/2022 06:00:00 AM,11/15/2022 08:00:00 PM,11/08/2022 12:00:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, ELDERT STREET between WYCKOFF AVENUE and DEAD END",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+680364,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 09:00:00 PM,11/08/2022 11:44:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","W 51ST ST between MADISON AVE and 8 AVE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 54 STREET between 5 AVENUE and 6 AVENUE, BROADWAY between WEST 55 STREET and WEST 54 STREET, BROADWAY between WEST 52 STREET and WEST 51 STREET, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10103, 10111"
+680356,Theater Load in and Load Outs,11/23/2022 12:01:00 AM,11/23/2022 11:59:00 PM,11/08/2022 10:45:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+680353,Shooting Permit,11/14/2022 04:00:00 PM,11/14/2022 08:00:00 PM,11/08/2022 10:24:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",ADAM CLAYTON POWELL JR BOULEVARD between WEST 133 STREET and WEST 132 STREET,Manhattan,10,32,Film,Short,United States of America,10027
+680344,Theater Load in and Load Outs,11/14/2022 12:01:00 AM,11/14/2022 11:59:00 PM,11/08/2022 10:02:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+680334,Shooting Permit,11/11/2022 01:00:00 PM,11/11/2022 05:00:00 PM,11/08/2022 09:50:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",MORNINGSIDE AVENUE between WEST 122 STREET and WEST 121 STREET,Manhattan,"10, 9","26, 28",Film,Short,United States of America,10027
+680330,Shooting Permit,11/11/2022 08:00:00 AM,11/11/2022 10:00:00 PM,11/08/2022 09:05:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET, WHITE STREET between BOERUM STREET and MOORE STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+680327,Shooting Permit,11/10/2022 08:00:00 AM,11/10/2022 10:00:00 PM,11/08/2022 08:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET, BOERUM STREET between BUSHWICK AVENUE and WHITE STREET, WHITE STREET between BOERUM STREET and MOORE STREET, MCKIBBIN STREET between WHITE STREET and BOGART STREET, SEIGEL STREET between WHITE STREET and BOGART STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+680316,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 08:00:00 PM,11/08/2022 08:04:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Still Photography,Not Applicable,United States of America,10018
+680305,Shooting Permit,11/12/2022 08:00:00 AM,11/12/2022 04:00:00 PM,11/08/2022 06:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",LOCUST AVENUE between EAST 135 STREET and EAST 134 STREET,Bronx,1,40,Film,Short,United States of America,10454
+680249,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 11:00:00 PM,11/07/2022 08:00:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+680216,Theater Load in and Load Outs,11/15/2022 08:00:00 AM,11/15/2022 11:00:00 PM,11/07/2022 05:56:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+680217,Theater Load in and Load Outs,11/20/2022 08:00:00 AM,11/20/2022 11:00:00 PM,11/07/2022 05:56:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+680218,Theater Load in and Load Outs,11/22/2022 08:00:00 AM,11/22/2022 11:00:00 PM,11/07/2022 05:56:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+680215,Theater Load in and Load Outs,11/14/2022 08:00:00 AM,11/14/2022 11:00:00 PM,11/07/2022 05:56:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+680212,Theater Load in and Load Outs,11/09/2022 08:00:00 AM,11/10/2022 01:00:00 PM,11/07/2022 05:50:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between FLATBUSH AVENUE and 6 AVENUE, ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+680209,Shooting Permit,11/14/2022 06:30:00 AM,11/14/2022 09:00:00 PM,11/07/2022 05:44:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 79 STREET and EAST 75 STREET, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 74 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 73 STREET and EAST 72 STREET, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 72 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 75 STREET between PARK AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 74 STREET, EAST 74 STREET between 5 AVENUE and MADISON AVENUE, EAST 75 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 75 STREET and EAST 74 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between 3 AVENUE and 2 AVENUE, 2 AVENUE between EAST 74 STREET and EAST 73 STREET, EAST 73 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+680198,Shooting Permit,11/11/2022 12:00:00 PM,11/12/2022 02:00:00 AM,11/07/2022 05:13:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+680168,Shooting Permit,11/15/2022 07:00:00 AM,11/15/2022 11:30:00 PM,11/07/2022 04:25:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+680164,Shooting Permit,11/10/2022 02:00:00 AM,11/10/2022 05:00:00 PM,11/07/2022 04:23:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",Dead Road between NA and NA2,Manhattan,64,22,Still Photography,Not Applicable,United States of America,"00083, 10023, 10024"
+680148,Shooting Permit,11/15/2022 08:00:00 AM,11/15/2022 10:00:00 PM,11/07/2022 03:57:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, MAIDEN LANE between GOLD STREET and SOUTH STREET, PEARL STREET between MAIDEN LANE and PINE STREET, CARMINE STREET between BLEECKER STREET and 6 AVENUE, BLEECKER STREET between LEROY STREET and DOWNING STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, MOTT STREET between MOSCO STREET and WORTH STREET, MOTT STREET between PELL STREET and WORTH STREET, CHATHAM SQUARE between MOTT STREET and DOYERS STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET",Manhattan,"1, 2, 3","1, 5, 6",Television,Episodic series,United States of America,"10002, 10005, 10011, 10012, 10013, 10014, 10038, 10045"
+680130,Theater Load in and Load Outs,11/11/2022 12:01:00 AM,11/12/2022 06:00:00 AM,11/07/2022 03:40:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+680122,Shooting Permit,11/09/2022 02:00:00 AM,11/09/2022 07:00:00 PM,11/07/2022 03:33:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",Loeb Boathouse Parking Lot between NA and NA2,Manhattan,64,22,Still Photography,Not Applicable,United States of America,"00083, 10023, 10024"
+680117,Shooting Permit,11/10/2022 02:30:00 PM,11/11/2022 05:30:00 AM,11/07/2022 03:24:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIUS STREET between EAST NEW YORK AVENUE and GLENMORE AVENUE, LIBERTY AVENUE between POWELL STREET and JUNIUS STREET, LIBERTY AVENUE between JUNIUS STREET and VAN SINDEREN AVENUE, LIBERTY AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11212"
+680103,Shooting Permit,11/20/2022 09:00:00 AM,11/20/2022 08:00:00 PM,11/07/2022 02:59:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRESH MEADOWS between FRANCIS LEWIS BLVD and 193 ST,Queens,"11, 8",107,Student,Student Film,United States of America,"11423, 11427"
+680099,Theater Load in and Load Outs,11/13/2022 12:01:00 AM,11/13/2022 11:59:00 PM,11/07/2022 02:53:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+680074,Theater Load in and Load Outs,11/16/2022 06:00:00 AM,11/17/2022 11:59:00 PM,11/07/2022 02:29:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 66 STREET and EAST 67 STREET, LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+680061,Shooting Permit,11/10/2022 12:00:00 PM,11/11/2022 02:00:00 AM,11/07/2022 02:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+680059,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 09:00:00 PM,11/07/2022 02:14:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between BAYARD STREET and WORTH STREET, CHATHAM SQUARE between MOTT STREET and DOYERS STREET, BOWERY between PELL STREET and DOYER STREET, MADISON STREET between JAMES STREET and OLIVER STREET, EAST BROADWAY between CATHERINE STREET and PIKE STREET, MARKET STREET between DIVISION STREET and EAST BROADWAY, EAST 65 STREET between 2 AVENUE and 1 AVENUE, EAST 65 STREET between 3 AVENUE and 2 AVENUE, EAST 66 STREET between 3 AVENUE and 2 AVENUE, 2 AVENUE between EAST 68 STREET and EAST 65 STREET, 3 AVENUE between EAST 67 STREET and EAST 66 STREET, EAST 68 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"3, 8","19, 5",Television,Episodic series,United States of America,"10002, 10013, 10038, 10065"
+679979,Shooting Permit,11/16/2022 08:00:00 AM,11/16/2022 11:30:00 PM,11/07/2022 01:07:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+679961,Shooting Permit,11/14/2022 07:00:00 AM,11/14/2022 11:00:00 PM,11/07/2022 12:57:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+679933,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 11:00:00 PM,11/07/2022 12:43:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+679920,Shooting Permit,11/09/2022 09:00:00 AM,11/09/2022 11:30:00 PM,11/07/2022 12:31:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 ROAD between 9 STREET and 10 STREET, 10 STREET between 43 ROAD and 44 AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, 9 STREET between 43 ROAD and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET, 40 AVENUE between VERNON BOULEVARD and 10 STREET, 40 AVENUE between 10 STREET and 12 STREET, 11 STREET between 43 ROAD and 43 AVENUE, 10 STREET between 43 ROAD and 43 AVENUE, 43 ROAD between 10 STREET and 11 STREET, 10 STREET between 43 ROAD and 43 AVENUE, 43 ROAD between 9 STREET and 10 STREET",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,11101
+679913,Shooting Permit,11/09/2022 09:00:00 AM,11/09/2022 11:00:00 PM,11/07/2022 12:24:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 62 STREET and WEST 63 STREET, WEST 62 STREET between BROADWAY and CENTRAL PARK WEST, WEST 63 STREET between COLUMBUS AVENUE and BROADWAY, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET, WEST 61 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 60 STREET and WEST 62 STREET, WEST 63 STREET between COLUMBUS AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 62 STREET and WEST 63 STREET, WEST 64 STREET between CENTRAL PARK WEST and BROADWAY, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+679907,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 08:00:00 PM,11/07/2022 12:21:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+679839,Shooting Permit,11/10/2022 10:00:00 AM,11/11/2022 01:00:00 AM,11/07/2022 11:42:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAUREL HILL BOULEVARD between 56 ROAD and 54 ROAD, RUSSELL STREET between NORMAN AVENUE and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11222, 11378"
+679838,Theater Load in and Load Outs,11/12/2022 12:01:00 AM,11/12/2022 11:59:00 PM,11/07/2022 11:42:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 56 STREET and WEST 57 STREET",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+679827,Theater Load in and Load Outs,11/09/2022 12:01:00 AM,11/09/2022 11:59:00 PM,11/07/2022 11:33:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 56 STREET and WEST 57 STREET",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+679816,Theater Load in and Load Outs,11/12/2022 12:01:00 AM,11/12/2022 11:59:00 PM,11/07/2022 11:28:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+679802,Shooting Permit,11/09/2022 08:00:00 AM,11/09/2022 10:00:00 PM,11/07/2022 11:21:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET, BOERUM STREET between BUSHWICK AVENUE and WHITE STREET, WHITE STREET between BOERUM STREET and MOORE STREET, MCKIBBIN STREET between WHITE STREET and BOGART STREET, SEIGEL STREET between WHITE STREET and BOGART STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+679796,Rigging Permit,11/10/2022 05:30:00 PM,11/10/2022 11:00:00 PM,11/07/2022 11:18:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+679753,Theater Load in and Load Outs,11/11/2022 12:01:00 AM,11/11/2022 11:59:00 PM,11/07/2022 10:53:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+679738,Shooting Permit,11/08/2022 02:00:00 AM,11/08/2022 09:00:00 PM,11/07/2022 10:44:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 119 STREET between MALCOLM X BOULEVARD and 5 AVENUE, WEST 116 STREET between MALCOLM X BOULEVARD and 5 AVENUE, WEST 135 STREET between LENOX AVENUE and 5 AVENUE",Manhattan,10,"28, 32",Film,Feature,United States of America,"10026, 10037"
+679727,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/10/2022 11:59:00 PM,11/07/2022 10:38:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+679721,Theater Load in and Load Outs,11/09/2022 12:01:00 AM,11/09/2022 09:59:00 PM,11/07/2022 10:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+679670,Shooting Permit,11/14/2022 06:00:00 AM,11/14/2022 08:00:00 PM,11/07/2022 09:49:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+679636,Shooting Permit,11/09/2022 08:00:00 AM,11/09/2022 11:00:00 PM,11/07/2022 09:24:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 152 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+679633,Shooting Permit,11/10/2022 09:00:00 AM,11/11/2022 03:00:00 AM,11/07/2022 09:23:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, SEIGEL STREET between WHITE STREET and BOGART STREET, WHITE STREET between MCKIBBIN STREET and SEIGEL STREET, MCKIBBIN STREET between WHITE STREET and BOGART STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+679625,Shooting Permit,11/11/2022 06:00:00 AM,11/11/2022 10:00:00 PM,11/07/2022 09:18:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between HESTER STREET and CANAL STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET",Manhattan,3,"5, 7, 9",Still Photography,Not Applicable,United States of America,"10002, 10009"
+679452,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 08:00:00 PM,11/07/2022 07:48:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between NORTH PORTLAND AVENUE and CLERMONT AVENUE, ST EDWARDS STREET between MYRTLE AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between DEKALB AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between ASHLAND PLACE and FLEET PLACE, NORTH PORTLAND AVENUE between MYRTLE AVENUE and PARK AVENUE, AUBURN PLACE between ST EDWARDS STREET and NORTH PORTLAND AVENUE, MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205"
+679250,Theater Load in and Load Outs,11/10/2022 05:00:00 AM,11/11/2022 07:00:00 AM,11/07/2022 05:09:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","W 47 STRET between BROADWAY and 8 AVE, WEST 45 STREET between BROADWAY and 8 AVENUE",Manhattan,"4, 5","14, 18",Theater,Theater,United States of America,10036
+679248,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 11:59:00 PM,11/06/2022 11:07:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between MEEKER AVENUE and RICHARDSON STREET, RICHARDSON STREET between GRAHAM AVENUE and MEEKER AVENUE, HERBERT STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between RICHARDSON STREET and FROST STREET, GRAHAM AVENUE between JACKSON STREET and MEEKER AVENUE, GRAHAM AVENUE between WITHERS STREET and JACKSON STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+679245,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 11:00:00 PM,11/06/2022 10:47:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679232,Shooting Permit,11/10/2022 06:30:00 AM,11/10/2022 08:00:00 PM,11/06/2022 01:51:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 112 STREET and WEST 113 STREET, RIVERSIDE DRIVE between WEST 113 STREET and WEST 114 STREET, BROADWAY between WEST 113 STREET and WEST 114 STREET, RIVERSIDE DRIVE between WEST 108 STREET and WEST 111 STREET",Manhattan,"7, 9","24, 26",Television,Cable-episodic,United States of America,10025
+679215,Shooting Permit,11/09/2022 03:00:00 PM,11/10/2022 02:00:00 AM,11/04/2022 08:08:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","112 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between 111 STREET and 113 STREET, MYRTLE AVENUE between 113 STREET and 115 STREET, 149 AVENUE between 118 STREET and 120 STREET, 86 AVENUE between 111 STREET and 113 STREET, 111 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH",Queens,"10, 82, 9","102, 106",Television,Made for TV/mini-series,United States of America,"11385, 11418, 11420"
+679214,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 11:00:00 PM,11/04/2022 06:07:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between EAGLE STREET and DEAD END, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679209,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/24/2022 11:59:00 PM,11/04/2022 04:46:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+679206,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/10/2022 11:59:00 PM,11/04/2022 04:38:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+679203,Theater Load in and Load Outs,11/09/2022 12:01:00 AM,11/09/2022 11:59:00 PM,11/04/2022 04:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+679201,Shooting Permit,11/11/2022 05:00:00 PM,11/12/2022 02:00:00 AM,11/04/2022 03:58:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEBSTER AVENUE between EAST 233 STREET and GUN HILL ROAD,Bronx,7,52,Television,Episodic series,United States of America,10467
+679193,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 08:30:00 PM,11/04/2022 03:48:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIUS STREET between EAST NEW YORK AVENUE and GLENMORE AVENUE, LIBERTY AVENUE between POWELL STREET and JUNIUS STREET, LIBERTY AVENUE between JUNIUS STREET and VAN SINDEREN AVENUE, LIBERTY AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11212"
+679192,Shooting Permit,11/08/2022 12:00:00 PM,11/08/2022 11:59:00 PM,11/04/2022 03:33:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","121 STREET between 149 AVENUE and 150 AVENUE, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 122 STREET between 149 AVENUE and 150 AVENUE, 120 STREET between 149 AVENUE and 150 AVENUE, LEFFERTS BOULEVARD between 135 AVENUE and 149 AVENUE, 150 AVENUE between 122 PLACE and 123 STREET, 120 STREET between 149 AVENUE and NORTH CONDUIT AVENUE, 122 PLACE between NORTH CONDUIT AVENUE and 149 AVENUE, ROCKAWAY BOULEVARD between LEFFERTS BOULEVARD and 121 STREET, ROCKAWAY BOULEVARD between LEFFERTS BOULEVARD and 121 STREET, 117 STREET between ROCKAWAY BOULEVARD and SUTTER AVENUE, 118 STREET between SUTTER AVENUE and ROCKAWAY BOULEVARD, LEFFERTS BOULEVARD between SUTTER AVENUE and ROCKAWAY BOULEVARD, 150 AVENUE between 121 STREET and 122 STREET, 7 AVENUE between 129 STREET and 130 STREET, 129 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between 126 STREET and 128 STREET",Queens,"10, 7","106, 109",Television,Made for TV/mini-series,United States of America,"11356, 11357, 11420"
+679190,Shooting Permit,11/10/2022 06:30:00 AM,11/10/2022 09:00:00 PM,11/04/2022 03:24:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, HUMBOLDT STREET between RICHARDSON STREET and HERBERT STREET, RICHARDSON STREET between GRAHAM AVENUE and MONITOR STREET, HUMBOLDT STREET between RICHARDSON STREET and FROST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+679189,Theater Load in and Load Outs,11/20/2022 12:01:00 AM,11/20/2022 11:59:00 PM,11/04/2022 03:11:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+679184,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 11:59:00 PM,11/04/2022 03:00:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between MEEKER AVE and RICHARDSON ST, RICHARDSON ST between GRAHAM AVENUE and MEEKER AVE, HERBERT STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between RICHARDSON STREET and FROST STREET, GRAHAM AVENUE between FROST STREET and WITHERS STREET, GRAHAM AVENUE between WITHERS STREET and JACKSON STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+679182,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 10:00:00 PM,11/04/2022 02:58:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103"
+679181,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 10:00:00 PM,11/04/2022 02:57:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, PARK AVE between E 30 ST and E 33 ST, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,5,14,Television,Cable-episodic,United States of America,"10001, 10016"
+679180,Shooting Permit,11/18/2022 09:00:00 AM,11/18/2022 11:00:00 PM,11/04/2022 02:55:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","RECTOR PLACE between SOUTH END AVENUE and WEST ST, WEST THAMES STREET between SOUTH END AVENUE and DEAD END, SOUTH END AVENUE between LIBERTY STREET and RECTOR PLACE, ALBANY STREET between SOUTH END AVENUE and WEST STREET, SOUTH END AVENUE between RECTOR PLACE and WEST THAMES STREET, BATTERY PLACE between THIRD PLACE and LITTLE WEST STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10280, 10281"
+679176,Shooting Permit,11/12/2022 06:00:00 AM,11/13/2022 12:00:00 AM,11/04/2022 02:53:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 10 AVENUE and DYER AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10018
+679175,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 10:00:00 PM,11/04/2022 02:52:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WAVERLY PLACE and WEST 3 STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 3 STREET between 6 AVENUE and SULLIVAN STREET, 6th Avenue between MINETTA LANE and West Houston Street, BLEECKER STREET between LEROY STREET and DOWNING STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, LAFAYETTE STREET between BLEECKER STREET and EAST 4 STREET, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, BOND STREET between BROADWAY and BOWERY, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and BOWERY, MACDOUGAL STREET between MINETTA LANE and WEST 3 STREET",Manhattan,2,"6, 9",Television,Episodic series,United States of America,"10003, 10011, 10012, 10014"
+679173,Shooting Permit,11/09/2022 07:30:00 AM,11/09/2022 10:00:00 PM,11/04/2022 02:47:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between BROADWAY and CENTRE STREET, MOTT STREET between PELL STREET and WORTH STREET, BAXTER STREET between BAYARD STREET and WORTH STREET, BOWERY between PELL STREET and CHATHAM SQUARE, WORTH STREET between LAFAYETTE STREET and BROADWAY, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and LEONARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, FRANKLIN STREET between CHURCH STREET and BROADWAY, WORTH STREET between BAXTER STREET and CENTRE STREET, BAYARD STREET between MOTT STREET and BOWERY",Manhattan,"1, 3","1, 5",Television,Cable-episodic,United States of America,"10002, 10007, 10013, 10038"
+679168,Shooting Permit,11/09/2022 06:30:00 AM,11/09/2022 09:00:00 PM,11/04/2022 02:22:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 STREET between SKILLMAN AVENUE and 39 AVENUE, SKILLMAN AVENUE between 49 STREET and 48 STREET, 48 STREET between 39 AVENUE and SKILLMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11104, 11222"
+679165,Theater Load in and Load Outs,11/08/2022 12:01:00 AM,11/08/2022 11:59:00 PM,11/04/2022 02:03:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+679154,Shooting Permit,11/17/2022 09:00:00 AM,11/17/2022 10:00:00 PM,11/04/2022 01:06:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST BROADWAY and GREENWICH STREET, WEST BROADWAY between CHAMBERS STREET and PARK PLACE, MURRAY STREET between WEST BROADWAY and GREENWICH STREET, GREENWICH STREET between WARREN STREET and CHAMBERS STREET, WARREN STREET between GREENWICH STREET and WEST STREET, READE STREET between CHURCH STREET and WEST BROADWAY, WEST BROADWAY between DUANE STREET and READE STREET, READE STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between READE STREET and CHAMBERS STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+679150,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/12/2022 11:59:00 PM,11/04/2022 12:46:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+679148,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 10:00:00 AM,11/04/2022 12:35:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",BRIGHTON BEACH AVENUE between CONEY ISLAND AVENUE and BRIGHTON 11 STREET,Brooklyn,13,60,Television,News,United States of America,11235
+679145,Theater Load in and Load Outs,11/08/2022 12:01:00 AM,11/09/2022 11:59:00 PM,11/04/2022 12:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+679143,Shooting Permit,11/07/2022 03:00:00 AM,11/07/2022 01:00:00 PM,11/04/2022 12:15:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+679139,Shooting Permit,11/09/2022 01:00:00 PM,11/10/2022 02:00:00 AM,11/04/2022 11:56:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 39 STREET and EAST 40 STREET, THIRD AVENUE between EAST 41 STREET and EAST 42 STREET, LEXINGTON AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 39 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 38 STREET and EAST 39 STREET, PARK AVENUE between EAST 36 STREET and EAST 38 STREET, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, EAST 43 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 38 STREET and EAST 39 STREET, THIRD AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017, 10158"
+679137,Shooting Permit,11/10/2022 08:00:00 AM,11/10/2022 11:00:00 PM,11/04/2022 11:45:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+679124,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 10:00:00 PM,11/04/2022 09:38:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+679123,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 09:00:00 PM,11/04/2022 09:37:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+679118,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 09:00:00 PM,11/04/2022 09:22:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 36 STREET and 37 STREET, 2 AVENUE between 36 STREET and 35 STREET",Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+679120,Shooting Permit,11/10/2022 09:00:00 AM,11/10/2022 07:00:00 PM,11/04/2022 09:22:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between 5 STREET and 6 STREET",Brooklyn,6,78,WEB,Not Applicable,United States of America,11215
+679117,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 10:00:00 PM,11/04/2022 09:07:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between WEST 34 STREET and WEST 40 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 24 STREET and WEST 25 STREET, 9 AVENUE between WEST 22 STREET and WEST 25 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011, 10018"
+679115,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 10:00:00 PM,11/04/2022 08:50:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and BROADWAY, WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10020, 10103"
+679113,Shooting Permit,11/06/2022 04:00:00 AM,11/06/2022 01:00:00 PM,11/04/2022 08:33:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+679101,Shooting Permit,11/10/2022 09:30:00 AM,11/11/2022 01:00:00 AM,11/03/2022 06:09:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 31 STREET between 2 AVENUE and 3 AVENUE, EAST 32 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, E 29 ST between 2 AVENUE and PARK AVE, EAST 29 STREET between MADISON AVENUE and 5 AVENUE, EAST 35 STREET between 2 AVENUE and TUNNEL APPROACH STREET",Manhattan,"5, 6","13, 14, 17",Television,Episodic series,United States of America,10016
+679086,Shooting Permit,11/07/2022 12:00:00 PM,11/07/2022 11:00:00 PM,11/03/2022 04:45:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","122 STREET between 149 AVENUE and 150 AVENUE, 120 STREET between 149 AVENUE and NORTH CONDUIT AVENUE, LEFFERTS BOULEVARD between 135 AVENUE and 149 AVENUE, 150 AVENUE between 122 PLACE and 123 STREET, 121 STREET between 150 AVENUE and NORTH CONDUIT AVENUE, 121 STREET between 150 AVENUE and 149 AVENUE, 122 PLACE between NORTH CONDUIT AVENUE and 149 AVENUE, ROCKAWAY BOULEVARD between 117 STREET and LEFFERTS BOULEVARD, ROCKAWAY BOULEVARD between LEFFERTS BOULEVARD and 121 STREET, 117 STREET between ROCKAWAY BOULEVARD and SUTTER AVENUE, 118 STREET between SUTTER AVENUE and ROCKAWAY BOULEVARD, LEFFERTS BOULEVARD between SUTTER AVENUE and ROCKAWAY BOULEVARD, 150 AVENUE between 121 STREET and 122 STREET, 122 STREET between 150 AVENUE and NORTH CONDUIT AVENUE",Queens,10,106,Television,Made for TV/mini-series,United States of America,11420
+679085,Shooting Permit,11/14/2022 07:00:00 AM,11/14/2022 09:00:00 PM,11/03/2022 04:29:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679084,Shooting Permit,11/10/2022 07:00:00 AM,11/10/2022 09:00:00 PM,11/03/2022 04:23:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679083,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 09:00:00 PM,11/03/2022 04:18:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679081,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 09:00:00 PM,11/03/2022 04:14:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679063,Shooting Permit,11/10/2022 08:00:00 AM,11/10/2022 10:00:00 PM,11/03/2022 03:17:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 62 STREET and WEST 65 STREET, CENTRAL PARK WEST between WEST 65 STREET and WEST 66 STREET, WEST 65 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10023
+679061,Shooting Permit,11/10/2022 12:00:00 PM,11/11/2022 03:00:00 AM,11/03/2022 03:15:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between 5 AVENUE and PARK AVENUE, EAST 42 STREET between VANDERBILT AVENUE and DE PEW PLACE, EAST 45 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 45 STREET between VANDERBILT AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 46 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 55 STREET, EAST 53 STREET between PARK AVENUE and 5 AVENUE, EAST 42 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, EAST 45 STREET between VANDERBILT AVENUE and LEXINGTON AVENUE, EAST 42 STREET between VANDERBILT AVENUE and DE PEW PLACE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10017, 10019, 10022, 10152, 10165, 10171, 10173"
+679056,Shooting Permit,11/10/2022 12:00:00 PM,11/10/2022 11:00:00 PM,11/03/2022 02:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679054,Theater Load in and Load Outs,11/20/2022 12:01:00 AM,11/20/2022 11:59:00 PM,11/03/2022 02:45:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+679051,Theater Load in and Load Outs,11/07/2022 12:01:00 AM,11/07/2022 11:59:00 PM,11/03/2022 02:30:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+679049,Shooting Permit,11/08/2022 08:00:00 AM,11/09/2022 12:00:00 AM,11/03/2022 02:28:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+679044,Theater Load in and Load Outs,11/07/2022 12:01:00 AM,11/14/2022 11:59:00 PM,11/03/2022 02:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+679030,Shooting Permit,11/11/2022 08:00:00 AM,11/11/2022 10:00:00 PM,11/03/2022 01:31:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between IRVING PLACE and PARK AVENUE SOUTH, IRVING PLACE between EAST 19 STREET and EAST 20 STREET",Manhattan,"5, 6",13,Film,Feature,United States of America,10003
+679025,Shooting Permit,11/09/2022 05:00:00 PM,11/09/2022 08:00:00 PM,11/03/2022 12:39:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between EAST 19 STREET and EAST 20 STREET,Manhattan,6,13,Television,Episodic series,United States of America,10003
+679022,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 10:00:00 PM,11/03/2022 12:25:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 14 STREET and EAST 17 STREET, EAST 19 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 17 STREET and EAST 19 STREET, EAST 17 STREET between 3 AVENUE and IRVING PLACE, EAST 15 STREET between RUTHERFORD PLACE and 3 AVENUE, EAST 16 STREET between RUTHERFORD PLACE and 3 AVENUE",Manhattan,6,13,Television,Episodic series,United States of America,10003
+679021,Shooting Permit,11/08/2022 06:00:00 AM,11/09/2022 02:00:00 AM,11/03/2022 12:22:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, COURT SQUARE WEST between JACKSON AVE and DEAD END, PEARSON STREET between JACKSON AVENUE and DEAD END, COURT SQUARE EAST between THOMSON AVE and DEAD END, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+679013,Theater Load in and Load Outs,11/11/2022 12:01:00 AM,11/11/2022 11:59:00 PM,11/03/2022 11:47:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+679012,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 10:00:00 PM,11/03/2022 11:44:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+679006,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 09:00:00 PM,11/03/2022 11:11:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between DEAD END and GREENPOINT AVE, GREENPOINT AVE between RAILROAD AVE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+678994,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 09:00:00 PM,11/03/2022 09:55:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and VINE STREET, EVERIT STREET between VINE STREET and OLD FULTON STREET, VINE STREET between MCKENNY STREET and COLUMBIA HEIGHTS, YORK STREET between BRIDGE STREET and GOLD STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, PROSPECT STREET between JAY STREET and BRIDGE, WATER STREET between MAIN STREET and DOCK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+678991,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 09:00:00 PM,11/03/2022 09:48:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678990,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 09:00:00 PM,11/03/2022 09:48:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678988,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 09:00:00 PM,11/03/2022 09:34:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON BOULEVARD EAST between WEST 36 STREET and WEST 35 STREET, HUDSON BOULEVARD WEST between WEST 36 STREET and WEST 35 STREET, WEST 37 STREET between 11 AVENUE and 10 AVENUE, WEST 45 STREET between 11 AVENUE and 8 AVENUE, WEST 49 STREET between 9 AVENUE and 8 AVENUE, WEST 48 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 49 STREET and WEST 48 STREET, WEST 36 STREET between 11 AVENUE and 10 AVENUE, HUDSON BOULEVARD EAST between WEST 33 STREET and WEST 34 STREET, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET",Manhattan,"4, 5","10, 14, 18",Television,Episodic series,United States of America,"10001, 10018, 10019, 10036"
+678987,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 08:00:00 PM,11/03/2022 09:33:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, HICKS STREET between MILL STREET and WEST 9 STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+678985,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 11:00:00 PM,11/03/2022 09:29:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678983,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 09:00:00 PM,11/03/2022 09:11:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between SPRING STREET and PRINCE STREET, CROSBY STREET between SPRING STREET and PRINCE STREET",Manhattan,2,"1, 5",Still Photography,Not Applicable,United States of America,10012
+678982,Shooting Permit,11/10/2022 12:00:00 PM,11/11/2022 03:00:00 AM,11/03/2022 08:24:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","CRANBERRY STREET between HICKS STREET and HENRY STREET, ORANGE STREET between COLUMBIA HEIGHTS and HICKS STREET, COLUMBIA HEIGHTS between CRANBERRY STREET and ORANGE STREET, WILLOW STREET between ORANGE STREET and CLARK STREET, PINEAPPLE STREET between COLUMBIA HEIGHTS and WILLOW STREET, PINEAPPLE STREET between WILLOW STREET and HICKS STREET, HICKS STREET between PINEAPPLE STREET and PIERREPONT STREET, CLARK STREET between COLUMBIA HEIGHTS and WILLOW STREET, COLUMBIA HEIGHTS between PINEAPPLE STREET and CLARK STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+678981,Theater Load in and Load Outs,11/13/2022 12:01:00 AM,11/14/2022 06:00:00 AM,11/03/2022 07:58:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+678980,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/10/2022 11:59:00 PM,11/03/2022 07:53:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+678978,Shooting Permit,11/20/2022 03:00:00 AM,11/20/2022 10:00:00 PM,11/03/2022 06:29:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+678971,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 11:00:00 PM,11/02/2022 10:33:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678963,Shooting Permit,11/04/2022 06:00:00 AM,11/05/2022 12:00:00 AM,11/02/2022 08:03:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 49 STREET between 2 AVENUE and 3 AVENUE, EAST 50 STREET between 2 AVENUE and 3 AVENUE, EAST 50 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 52 STREET and EAST 48 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10171"
+678959,Shooting Permit,11/11/2022 07:00:00 AM,11/11/2022 09:00:00 PM,11/02/2022 06:00:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+678956,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 09:00:00 PM,11/02/2022 05:43:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, NORTH 5 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11206, 11249"
+678948,Theater Load in and Load Outs,11/09/2022 12:01:00 AM,11/10/2022 05:00:00 AM,11/02/2022 04:59:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+678937,Shooting Permit,11/04/2022 03:00:00 PM,11/05/2022 05:00:00 AM,11/02/2022 03:23:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 79 STREET and EAST 80 STREET, 5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10023, 10024, 10025, 10075"
+678933,Theater Load in and Load Outs,11/06/2022 12:01:00 AM,11/06/2022 11:59:00 PM,11/02/2022 02:59:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+678928,Shooting Permit,11/08/2022 08:00:00 AM,11/08/2022 10:00:00 PM,11/02/2022 02:40:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 5 AVENUE and BROADWAY, WEST 30 STREET between 6 AVENUE and 5 AVENUE, WEST 29 STREET between 6 AVENUE and BROADWAY, WEST 28 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 29 STREET and WEST 26 STREET, WEST 27 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, 2 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 45 STREET between 3 AVENUE and 2 AVENUE, EAST 46 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 46 STREET",Manhattan,"5, 6","13, 14, 17",Television,Episodic series,United States of America,"10001, 10016, 10017"
+678925,Shooting Permit,11/05/2022 09:00:00 AM,11/05/2022 09:00:00 PM,11/02/2022 02:37:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",VERONA STREET between VAN BRUNT STREET and RICHARDS STREET,Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+678913,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 11:00:00 PM,11/02/2022 01:42:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",RICHARDSON STREET between KINGSLAND AVENUE and MORGAN AVENUE,Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222"
+678912,Shooting Permit,11/09/2022 09:00:00 AM,11/09/2022 11:00:00 PM,11/02/2022 01:41:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 15 STREET and EAST 17 STREET, 1 AVENUE between EAST 18 STREET and EAST 20 STREET, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, EAST 18 STREET between 2 AVENUE and 1 AVENUE, EAST 17 STREET between 2 AVENUE and 1 AVENUE, EAST 16 STREET between 3 AVENUE and RUTHERFORD PLACE",Manhattan,6,13,Television,Episodic series,United States of America,"10003, 10009"
+678911,Shooting Permit,11/04/2022 06:00:00 AM,11/04/2022 10:00:00 PM,11/02/2022 01:38:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, 9 AVENUE between WEST 22 STREET and WEST 24 STREET, WEST 12 STREET between 6 AVENUE and 5 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between WEST 11 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10003, 10011"
+678910,Shooting Permit,11/03/2022 12:00:00 AM,11/09/2022 01:00:00 PM,11/02/2022 01:37:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Television,Morning Show,United States of America,10023
+678909,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 10:00:00 PM,11/02/2022 01:34:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between IRVING PLACE and PARK AVENUE SOUTH, IRVING PLACE between EAST 17 STREET and EAST 18 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 75 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,"5, 6, 7","13, 20",Film,Feature,United States of America,"10003, 10023"
+678908,Shooting Permit,11/08/2022 09:00:00 AM,11/08/2022 11:00:00 PM,11/02/2022 01:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678900,Shooting Permit,11/04/2022 08:00:00 AM,11/04/2022 11:59:00 PM,11/02/2022 12:17:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",LITTLE NECK PARKWAY between 72 AVENUE and ELKMONT AVENUE,Queens,13,105,Television,Episodic series,United States of America,11004
+678898,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 05:00:00 PM,11/02/2022 12:15:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 51ST ST between MADISON AVE and 8TH AVE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 54 STREET between 5 AVENUE and 6 AVENUE, BROADWAY between WEST 55 STREET and WEST 54 STREET, BROADWAY between WEST 52 STREET and WEST 51 STREET, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET, 6 AVENUE between WEST 53 STREET and WEST 52 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022, 10103, 10111"
+678897,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 10:00:00 PM,11/02/2022 12:13:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between CATHERINE STREET and MARKET STREET, CATHERINE STREET between CHERRY STREET and MONROE STREET, CATHERINE SLIP between CHERRY STREET and WATER STREET, MONROE STREET between CATHERINE STREET and MARKET STREET, MARKET STREET between CHERRY STREET and MONROE STREET, CATHERINE STREET between MONROE STREET and MADISON STREET, SOUTH STREET between CATHERINE SLIP and MARKET SLIP, MARKET SLIP between SOUTH STREET and WATER STREET, JAMES STREET between MADISON STREET and ST JAMES PLACE",Manhattan,3,5,Television,Episodic series,United States of America,"10002, 10038"
+678893,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 08:00:00 PM,11/02/2022 11:54:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",PLAZA ST EAST between EASTERN PARKWAY and ST JOHNS PL,Brooklyn,"2, 55, 8","77, 78, 84, 88",WEB,Not Applicable,United States of America,"11201, 11238"
+678888,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 09:00:00 PM,11/02/2022 11:29:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678884,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 08:00:00 PM,11/02/2022 11:15:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678874,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 10:00:00 PM,11/02/2022 10:13:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678873,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 08:00:00 PM,11/02/2022 10:02:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678867,Shooting Permit,11/08/2022 08:00:00 AM,11/08/2022 10:00:00 PM,11/02/2022 09:01:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+678866,Shooting Permit,11/04/2022 11:00:00 AM,11/05/2022 02:00:00 AM,11/02/2022 08:55:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE SOUTH between THOMPSON STREET and LAGUARDIA PLACE, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,"10011, 10012"
+678862,Theater Load in and Load Outs,11/10/2022 12:01:00 AM,11/11/2022 11:59:00 PM,11/02/2022 08:28:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+678860,Shooting Permit,11/09/2022 12:00:00 PM,11/10/2022 03:00:00 AM,11/02/2022 08:06:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between STATE STREET and JORALEMON STREET, GARDEN PLACE between STATE STREET and JORALEMON STREET, STATE STREET between HENRY STREET and SIDNEY PLACE, STATE STREET between GARDEN PLACE and HENRY STREET, STATE STREET between HENRY STREET and CLINTON STREET, HENRY STREET between STATE STREET and ATLANTIC AVENUE, ATLANTIC AVENUE between HENRY STREET and HICKS STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET, REMSEN STREET between HENRY STREET and HICKS STREET, REMSEN STREET between HENRY STREET and CLINTON STREET, HUNTS LANE between HENRY STREET and DEAD END, HENRY STREET between HUNTS LANE and JORALEMON STREET, JORALEMON STREET between HENRY STREET and CLINTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+678859,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 07:00:00 PM,11/02/2022 06:38:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",Henry Hudson Parkway East between W 252 Street and W 253 Street,Bronx,8,50,Film,Feature,United States of America,10471
+678858,Shooting Permit,11/05/2022 12:00:00 AM,11/05/2022 02:00:00 PM,11/02/2022 06:19:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+678857,Shooting Permit,11/04/2022 06:00:00 PM,11/05/2022 05:00:00 AM,11/02/2022 05:44:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 17 STREET between 9 AVENUE and 8 AVENUE, WEST 17 STREET between 10 AVENUE and WEST SIDE HIGHWAY, WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between WEST SIDE HIGHWAY and 10 AVENUE, 10 AVENUE between WEST 16 STREET and WEST 17 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, W 14TH STREET between 9TH AVENUE and 10TH AVENUE, WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, 7 AVENUE SOUTH between BLEECKER STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between BLEECKER STREET and 7 AVENUE SOUTH, BLEECKER STREET between WEST 10 STREET and CHRISTOPHER STREET, BLEECKER STREET between CHRISTOPHER STREET and GROVE STREET, WEST 10 STREET between BLEECKER STREET and WEST 4 STREET",Manhattan,"2, 4","10, 6",Television,Made for TV/mini-series,United States of America,"10011, 10014"
+678837,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 09:00:00 PM,11/01/2022 05:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK,Brooklyn,13,60,Still Photography,Not Applicable,United States of America,11224
+678833,Shooting Permit,11/08/2022 06:30:00 AM,11/08/2022 08:30:00 PM,11/01/2022 04:54:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST 9 STREET, HICKS STREET between WEST 9 STREET and MILL STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+678832,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 09:00:00 PM,11/01/2022 04:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between MADISON AVENUE and 5 AVENUE, WEST 51 STREET between 6 AVENUE and 9 AVENUE, BROADWAY between WEST 57 STREET and WEST 54 STREET, BROADWAY between WEST 52 STREET and WEST 51 STREET, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET, 7 AVENUE between WEST 56 STREET and WEST 54 STREET",Manhattan,"4, 5",18,Television,Episodic series,United States of America,"10019, 10020, 10022"
+678829,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 08:00:00 PM,11/01/2022 04:43:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST 9 STREET, HICKS STREET between MILL STREET and WEST 9 STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+678823,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 11:00:00 PM,11/01/2022 04:21:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between LEXINGTON AVENUE and 5 AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,10022
+678822,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 11:00:00 PM,11/01/2022 04:18:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between LEXINGTON AVENUE and 5 AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,10022
+678795,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 06:00:00 PM,11/01/2022 02:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between BEDFORD STREET and DOWNING STREET,Manhattan,2,6,Television,Not Applicable,United States of America,"10012, 10014"
+678788,Shooting Permit,11/04/2022 06:00:00 AM,11/04/2022 08:00:00 PM,11/01/2022 02:14:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678783,Theater Load in and Load Outs,11/07/2022 07:00:00 AM,11/07/2022 07:00:00 PM,11/01/2022 01:58:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+678776,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 09:00:00 PM,11/01/2022 01:31:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 72 STREET and EAST 74 STREET, 5 AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 77 STREET and EAST 80 STREET, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 44 STREET between MADISON AVENUE and VANDERBILT AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 44 STREET between AVENUE OF AMERICAS and 5 AVENUE",Manhattan,"5, 64, 8","14, 19, 22",Television,Cable-episodic,United States of America,"00083, 10017, 10021, 10036, 10075, 10173"
+678772,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 08:00:00 PM,11/01/2022 01:18:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 111 STREET and WEST 112 STREET, WEST 116 STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, CLAREMONT AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 120 STREET and WEST 121 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,"10024, 10025, 10027"
+678771,Shooting Permit,11/09/2022 08:00:00 AM,11/09/2022 11:59:00 PM,11/01/2022 01:08:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678763,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 10:00:00 PM,11/01/2022 12:26:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678762,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 10:00:00 PM,11/01/2022 12:23:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678759,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 09:00:00 PM,11/01/2022 12:17:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 9 AVENUE and 11 AVENUE, WEST 44 STREET between 10 AVENUE and 9 AVENUE, WEST 46 STREET between 9 AVENUE and 11 AVENUE, WEST 44 STREET between 9 AVENUE and 8 AVENUE, WEST 43 STREET between 9 AVENUE and 8 AVENUE, 10 AVENUE between WEST 42 STREET and WEST 41 STREET",Manhattan,4,"10, 14, 18",Television,Episodic series,United States of America,10036
+678754,Shooting Permit,11/02/2022 07:00:00 AM,11/02/2022 09:00:00 PM,11/01/2022 11:32:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between DEAN STREET and PROSPECT PLACE, ATLANTIC AVENUE between 6 AVENUE and CARLTON AVENUE, ATLANTIC AVENUE between CARLTON AVENUE and VANDERBILT AVENUE",Brooklyn,"2, 6, 8","78, 88",Television,Cable-episodic,United States of America,"11217, 11238"
+678750,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 11:00:00 PM,11/01/2022 11:18:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678749,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 09:00:00 PM,11/01/2022 11:15:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678741,Theater Load in and Load Outs,11/05/2022 06:01:00 AM,11/06/2022 04:00:00 AM,11/01/2022 10:21:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+678736,Shooting Permit,11/04/2022 09:00:00 AM,11/04/2022 11:00:00 PM,11/01/2022 09:53:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678732,Shooting Permit,11/03/2022 11:00:00 AM,11/04/2022 02:00:00 AM,11/01/2022 08:54:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, PARK AVE between EAST 30 STREET and E 33 ST, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,5,14,Television,Cable-episodic,United States of America,"10001, 10016"
+678727,Shooting Permit,11/08/2022 08:00:00 AM,11/08/2022 10:00:00 PM,11/01/2022 08:27:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINEAPPLE STREET between COLUMBIA HEIGHTS and WILLOW STREET, COLUMBIA HEIGHTS between PINEAPPLE STREET and CLARK STREET, CLARK STREET between COLUMBIA HEIGHTS and WILLOW STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between ADAMS STREET and CADMAN PLAZA WEST, CRANBERRY STREET between HICKS STREET and HENRY STREET, WILLOW STREET between ORANGE STREET and PIERREPONT STREET, COLUMBIA HEIGHTS between CLARK STREET and PIERREPONT STREET, PINEAPPLE STREET between HICKS STREET and WILLOW STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+678725,Shooting Permit,11/09/2022 10:00:00 AM,11/09/2022 05:00:00 PM,11/01/2022 08:22:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+678720,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 11:00:00 PM,11/01/2022 01:23:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678719,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 11:00:00 PM,11/01/2022 01:17:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678714,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 09:00:00 PM,10/31/2022 09:41:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 9 AVENUE and 10 AVENUE, WEST 37 STREET between 7 AVENUE and 9 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,10018
+678711,Shooting Permit,11/04/2022 08:00:00 AM,11/04/2022 08:00:00 PM,10/31/2022 09:04:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARION AVENUE between EAST 187 STREET and E 186 STREET, MARION AVENUE between EAST 188 STREET and EAST 187 STREET, MARION AVENUE between EAST 187 STREET and EAST 188 STREET",Bronx,"11, 12, 5, 6, 7","46, 48",Film,Feature,United States of America,"10452, 10458, 10460, 10462, 10467"
+678699,Shooting Permit,11/03/2022 02:00:00 PM,11/03/2022 11:59:00 PM,10/31/2022 04:28:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KATONAH AVENUE between EAST 235 STREET and EAST 237 STREET, KATONAH AVENUE between EAST 234 STREET and EAST 235 STREET, KATONAH AVENUE between EAST 233 STREET and EAST 234 STREET, VIREO AVENUE between EAST 234 STREET and EAST 235 STREET, VIREO AVENUE between EAST 233 STREET and EAST 234 STREET, EAST 234 STREET between KATONAH AVENUE and VIREO AVENUE, EAST 234 STREET between KATONAH AVENUE and VIREO AVENUE, WEBSTER AVENUE between EAST 233 STREET and EAST GUN HILL ROAD",Bronx,"12, 7","47, 52",Television,Episodic series,United States of America,"10467, 10470"
+678696,Shooting Permit,11/02/2022 04:00:00 PM,11/03/2022 04:00:00 AM,10/31/2022 04:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and QUEENS MIDTOWN EXPRESSWAY",Queens,2,108,Television,Made for TV/mini-series,United States of America,"11101, 11377, 11378"
+678694,Shooting Permit,11/04/2022 08:00:00 AM,11/04/2022 10:00:00 PM,10/31/2022 04:14:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 58 STREET and EAST 59 STREET,Manhattan,5,18,Film,Short,United States of America,10022
+678691,DCAS Prep/Shoot/Wrap Permit,11/11/2022 08:00:00 AM,11/11/2022 08:00:00 PM,10/31/2022 04:04:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALTON AVENUE between EAST 161 STREET and EAST 157 STREET, EAST 158 STREET between WALTON AVENUE and GRAND CONCOURSE, GRAND CONCOURSE between EAST 161 STREET and EAST 158 STREET, GRAND CONCOURSE between EAST 158 STREET and EAST 153 STREET",Bronx,4,44,Television,Episodic series,United States of America,10451
+678690,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 10:00:00 PM,10/31/2022 03:50:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH, DITMARS BOULEVARD between SHORE BOULEVARD and 19 STREET, 23 TERRACE between 19 STREET and 21 STREET, 21 STREET between 23 TERRACE and 24 AVENUE, 24 AVENUE between 21 STREET and 26 STREET, 22 DRIVE between 19 STREET and 21 STREET, 21 STREET between DITMARS BOULEVARD and 23 AVENUE",Brooklyn,"1, 7","114, 72",Television,Episodic series,United States of America,"11102, 11105, 11232"
+678689,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 09:00:00 PM,10/31/2022 03:46:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 9 STREET and EAST 10 STREET, EAST 10 STREET between AVENUE A and 1 AVENUE, EAST 9 STREET between AVENUE A and 1 AVENUE, AVENUE A between EAST 7 STREET and EAST 8 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 8 STREET between AVENUE B and AVENUE C, EAST 9 STREET between AVENUE B and AVENUE C, AVENUE C between EAST 11 STREET and EAST 12 STREET, EAST 10 STREET between AVENUE C and AVENUE D, SZOLD PLACE between EAST 10 STREET and EAST 12 STREET",Manhattan,3,9,Television,Episodic series,United States of America,10009
+678688,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 07:00:00 PM,10/31/2022 03:31:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678686,Shooting Permit,11/03/2022 06:30:00 AM,11/03/2022 08:30:00 PM,10/31/2022 03:18:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between ATLANTIC AVENUE and FULTON STREET, FULTON STREET between EASTERN PARKWAY and SACKMAN STREET, SACKMAN STREET between HERKIMER STREET and FULTON STREET, JARDINE PLACE between HERKIMER STREET and ATLANTIC AVENUE, SACKMAN STREET between SOMERS STREET and TRUXTON STREET, TRUXTON STREET between SACKMAN STREET and CONWAY STREET, EASTERN PARKWAY between SOMERS STREET and TRUXTON STREET, SOMERS STREET between EASTERN PARKWAY and BROADWAY, VAN SINDEREN AVENUE between HERKIMER STREET and ATLANTIC AVENUE, FULTON STREET between WILLIAMS PLACE and WILLIAMS AVE, FULTON STREET between VAN SINDEREN AVENUE and WILLIAMS PLACE, WILLIAMS PLACE between FULTON STREET and HERKIMER STREET, HERKIMER STREET between WILLIAMS AVENUE and WILLIAMS PLACE, WILLIAMS PLACE between HERKIMER STREET and ATLANTIC AVENUE, HERKIMER STREET between VAN SINDEREN AVENUE and WILLIAMS PLACE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11233"
+678685,Theater Load in and Load Outs,11/03/2022 12:01:00 AM,11/05/2022 11:59:00 PM,10/31/2022 03:16:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+678678,Shooting Permit,11/07/2022 07:00:00 AM,11/07/2022 10:00:00 PM,10/31/2022 02:33:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRANBERRY STREET between HICKS STREET and HENRY STREET, PINEAPPLE STREET between COLUMBIA HEIGHTS and WILLOW STREET, COLUMBIA HEIGHTS between PINEAPPLE STREET and CLARK STREET, CLARK STREET between COLUMBIA HEIGHTS and WILLOW STREET, WILLOW STREET between ORANGE STREET and PIERREPONT STREET, COLUMBIA HEIGHTS between CLARK STREET and PIERREPONT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+678672,Shooting Permit,11/04/2022 07:00:00 AM,11/05/2022 12:00:00 AM,10/31/2022 02:14:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+678670,Theater Load in and Load Outs,11/07/2022 12:01:00 AM,11/08/2022 06:00:00 AM,10/31/2022 01:44:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+678663,Shooting Permit,11/04/2022 01:00:00 AM,11/04/2022 04:00:00 PM,10/31/2022 12:42:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678662,Shooting Permit,11/02/2022 03:00:00 PM,11/02/2022 11:00:00 PM,10/31/2022 12:27:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","KATONAH AVENUE between EAST 237 STREET and EAST 236 STREET, KATONAH AVENUE between EAST 235 STREET and EAST 236 STREET, KATONAH AVENUE between EAST 234 STREET and EAST 235 STREET, KATONAH AVENUE between EAST 233 STREET and EAST 234 STREET, EAST 234 STREET between KATONAH AVENUE and VIREO AVENUE, VIREO AVENUE between EAST 233 STREET and EAST 234 STREET, WEBSTER AVENUE between EAST 233 STREET and EAST GUN HILL ROAD, WHITE PLAINS ROAD between EAST 229 STREET and EAST 230 STREET, EAST 229 STREET between LOWERRE PLACE and WHITE PLAINS ROAD, EAST 229 STREET between WHITE PLAINS ROAD and BARNES AVENUE, LOWERRE PLACE between EAST 229 STREET and EAST 230 STREET, EAST 230 STREET between LOWERRE PLACE and WHITE PLAINS ROAD, EAST 230 STREET between WHITE PLAINS ROAD and BARNES AVENUE, WHITE PLAINS ROAD between EAST 230 STREET and EAST 231 STREET",Bronx,"12, 7","47, 52",Television,Episodic series,United States of America,"10466, 10467, 10470"
+678660,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 11:00:00 PM,10/31/2022 12:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678642,Theater Load in and Load Outs,11/04/2022 08:00:00 AM,11/04/2022 08:00:00 PM,10/31/2022 10:01:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+678636,Shooting Permit,11/02/2022 10:00:00 AM,11/03/2022 01:00:00 AM,10/31/2022 08:58:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE SOUTH between THOMPSON STREET and LAGUARDIA PLACE, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,"10011, 10012"
+678635,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 09:00:00 PM,10/31/2022 08:52:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678612,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 06:00:00 PM,10/30/2022 01:51:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+678613,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 06:00:00 PM,10/30/2022 01:51:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+678606,Shooting Permit,11/02/2022 08:00:00 AM,11/02/2022 11:59:00 PM,10/29/2022 11:18:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 21 STREET between 44 DRIVE and 44 ROAD, 44 ROAD between 21 STREET and 23 STREET, 11 STREET between 44 AVENUE and 44 ROAD, 44 ROAD between 10 STREET and 11 STREET, 11 STREET between 44 ROAD and 44 DRIVE, CENTER BOULEVARD between 49 AVENUE and 50 AVENUE, 5 STREET between 47 AVENUE and 48 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, 49 AVENUE between CENTER BOULEVARD and 5 STREET, 50 AVENUE between CENTER BOULEVARD and 5 STREET, NORTH BASIN RD between 5TH STREET and CENTER BLVD, 5 STREET between 46 AVENUE and 46 ROAD, 46 ROAD between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 ROAD and 46 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+678572,Shooting Permit,11/08/2022 07:00:00 AM,11/08/2022 11:00:00 PM,10/28/2022 05:18:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678566,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 06:00:00 PM,10/28/2022 04:43:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between SURF AVENUE and RIEGELMAN BOARDWALK,Brooklyn,13,60,Still Photography,Not Applicable,United States of America,11224
+678557,Theater Load in and Load Outs,11/04/2022 12:01:00 AM,11/05/2022 06:00:00 AM,10/28/2022 04:11:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+678549,DCAS Prep/Shoot/Wrap Permit,11/02/2022 07:00:00 AM,11/02/2022 10:00:00 PM,10/28/2022 03:32:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and HOGAN PLACE, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, CENTRE STREET between READE STREET and DUANE STREET, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, CHAMBERS STREET between BROADWAY and CENTRE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, BROADWAY between WARREN STREET and MURRAY STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+678542,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 10:00:00 PM,10/28/2022 03:12:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between MADISON AVENUE and 6 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 52 STREET, 6 AVENUE between WEST 52 STREET and WEST 53 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 70 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and 5 AVENUE, PARK AVENUE between EAST 68 STREET and EAST 74 STREET, EAST 72 STREET between LEXINGTON AVENUE and MADISON AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10017, 10019, 10020, 10021, 10022, 10065, 10103, 10119, 10152, 10171"
+678537,Shooting Permit,11/03/2022 08:00:00 AM,11/03/2022 10:00:00 PM,10/28/2022 02:43:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Film,Short,United States of America,10003
+678536,Shooting Permit,11/02/2022 08:00:00 AM,11/02/2022 10:00:00 PM,10/28/2022 02:42:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Film,Short,United States of America,10003
+678531,Shooting Permit,11/01/2022 08:00:00 AM,11/01/2022 10:00:00 PM,10/28/2022 02:14:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Film,Short,United States of America,10003
+678526,Shooting Permit,11/04/2022 08:00:00 AM,11/04/2022 11:00:00 PM,10/28/2022 01:28:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between REED STREET and DEAD END, VAN BRUNT STREET between REED STREET and BEARD STREET, REED STREET between VAN BRUNT STREET and CONOVER STREET, CONOVER STREET between BEARD STREET and DEAD END, CONOVER STREET between BEARD STREET and VAN DYKE STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VERONA STREET and KING STREET, VERONA STREET between RICHARDS STREET and DWIGHT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+678524,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 12:00:00 PM,10/28/2022 01:15:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 7 AVENUE and 8 AVENUE,Manhattan,"4, 5",10,Television,Talk Show,United States of America,10001
+678523,Shooting Permit,11/04/2022 05:00:00 PM,11/05/2022 10:00:00 AM,10/28/2022 01:15:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between BROAD STREET and WILLIAM STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET, BEAVER STREET between HANOVER STREET and PEARL STREET, PEARL STREET between COENTIES SLIP and WALL STREET, HANOVER STREET between EXCHANGE PLACE and BEAVER STREET, WILLIAM STREET between EXCHANGE PLACE and BEAVER STREET, SOUTH WILLIAM STREET between BROAD STREET and WILLIAM STREET, WILLIAM STREET between SOUTH WILLIAM STREET and PEARL STREET, BEAVER STREET between BROAD STREET and NEW STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, BROAD STREET between SOUTH STREET and WATER STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10045"
+678520,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 10:00:00 PM,10/28/2022 12:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","HORATIO STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between HORATIO STREET and BETHUNE STREET, GREENWICH STREET between WEST 12 STREET and BETHUNE STREET, JANE STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between HORATIO STREET and JANE STREET, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET, HORATIO STREET between HUDSON STREET and WEST 4 STREET, HUDSON STREET between HORATIO STREET and JANE STREET, 7 AVENUE between WEST 14 STREET and WEST 13 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+678513,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 05:00:00 PM,10/28/2022 11:51:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 36 STREET between 1 AVENUE and FDR DRIVE,Manhattan,6,17,Still Photography,Not Applicable,United States of America,10016
+678510,Shooting Permit,11/02/2022 07:00:00 AM,11/02/2022 09:00:00 PM,10/28/2022 11:30:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678496,Shooting Permit,11/01/2022 02:00:00 PM,11/02/2022 06:00:00 AM,10/28/2022 10:02:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARCUS GARVEY BOULEVARD between ELLERY STREET and MYRTLE AVENUE, ELLERY STREET between BROADWAY and MARCUS GARVEY BOULEVARD, PARK AVENUE between BROADWAY and THROOP AVENUE, MARCUS GARVEY BOULEVARD between BROADWAY and ELLERY STREET, BROADWAY between SUMNER PLACE and ELLERY STREET",Brooklyn,"3, 4","79, 81, 83",Television,Made for TV/mini-series,United States of America,11206
+678493,Shooting Permit,11/02/2022 07:00:00 AM,11/02/2022 09:00:00 PM,10/28/2022 09:42:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678490,Shooting Permit,11/01/2022 10:00:00 AM,11/02/2022 01:00:00 AM,10/28/2022 08:53:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE SOUTH between THOMPSON STREET and LAGUARDIA PLACE, W 3 ST between LAGUARDIA PLACE and MERCER ST, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET, 5 AVENUE between WEST 11 STREET and WEST 12 STREET",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,"10003, 10011, 10012"
+678482,Theater Load in and Load Outs,11/05/2022 12:01:00 AM,11/06/2022 06:00:00 AM,10/28/2022 01:17:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+678480,Theater Load in and Load Outs,11/03/2022 12:01:00 AM,11/04/2022 06:00:00 AM,10/28/2022 01:07:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+678477,Theater Load in and Load Outs,11/01/2022 12:01:00 AM,11/02/2022 06:00:00 AM,10/28/2022 12:57:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+678475,Theater Load in and Load Outs,11/08/2022 12:01:00 AM,11/08/2022 11:59:00 PM,10/28/2022 12:47:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+678473,Theater Load in and Load Outs,11/07/2022 12:01:00 AM,11/07/2022 11:59:00 PM,10/28/2022 12:27:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+678469,Theater Load in and Load Outs,11/06/2022 12:01:00 AM,11/06/2022 11:59:00 PM,10/28/2022 12:06:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+678468,Theater Load in and Load Outs,11/04/2022 12:01:00 AM,11/05/2022 06:00:00 AM,10/27/2022 11:55:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+678466,Theater Load in and Load Outs,11/01/2022 12:01:00 AM,11/02/2022 06:00:00 AM,10/27/2022 11:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+678464,Shooting Permit,11/03/2022 09:00:00 AM,11/03/2022 09:00:00 PM,10/27/2022 10:30:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",14 AVENUE between CLINTONVILLE STREET and 152 STREET,Queens,7,109,Film,Feature,United States of America,11357
+678463,Shooting Permit,11/02/2022 09:00:00 AM,11/02/2022 09:00:00 PM,10/27/2022 10:19:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",14 AVENUE between CLINTONVILLE STREET and 152 STREET,Queens,7,109,Film,Feature,United States of America,11357
+678460,Shooting Permit,11/01/2022 07:00:00 AM,11/01/2022 11:00:00 PM,10/27/2022 06:52:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+678458,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 10:00:00 PM,10/27/2022 06:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 6 AVENUE and WASHINGTON STREET, 7 AVENUE SOUTH between WEST 11 STREET and WEST 4 STREET, BLEECKER STREET between 8 AVENUE and PERRY STREET, PERRY STREET between WEST 4 STREET and BLEECKER STREET, WEST 4 STREET between WEST 11 STREET and PERRY STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, WEST 11 STREET between WAVERLY PLACE and WEST 4 STREET",Manhattan,"2, 4, 5","10, 108, 13, 6",Television,Episodic series,United States of America,"10011, 10014, 11101"
+678454,Shooting Permit,11/01/2022 06:00:00 AM,11/01/2022 10:00:00 PM,10/27/2022 05:40:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 60 STREET and EAST 57 STREET, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, EAST 58 STREET between MADISON AVENUE and PARK AVENUE, EAST 56 STREET between 5 AVENUE and PARK AVENUE, EAST 55 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,10022
+678447,Shooting Permit,12/05/2022 06:00:00 AM,12/12/2022 12:00:00 PM,10/27/2022 04:31:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET",Manhattan,"64, 7","20, 22",Television,Special/Awards Show,United States of America,10024
+678446,Shooting Permit,11/01/2022 07:00:00 AM,11/02/2022 01:00:00 PM,10/27/2022 04:19:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, ATLANTIC AVENUE between HENRY STREET and SMITH STREET, ATLANTIC AVENUE between SMITH STREET and HOYT STREET, SMITH STREET between ATLANTIC AVENUE and PACIFIC STREET, SMITH STREET between PACIFIC STREET and DEAN STREET, DEAN STREET between SMITH STREET and BOERUM PLACE",Brooklyn,"1, 2, 6","76, 84, 94",Television,Episodic series,United States of America,"11201, 11222"
+678437,Shooting Permit,11/09/2022 07:00:00 AM,11/09/2022 11:00:00 PM,10/27/2022 03:44:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678432,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 11:00:00 PM,10/27/2022 03:30:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678428,Shooting Permit,11/03/2022 08:00:00 AM,11/03/2022 11:59:00 PM,10/27/2022 03:26:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",LITTLE NECK PARKWAY between 72 AVENUE and ELKMONT AVENUE,Queens,13,105,Television,Episodic series,United States of America,11004
+678417,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 08:00:00 PM,10/27/2022 02:47:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 8 AVENUE and 7 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+678416,Theater Load in and Load Outs,11/02/2022 12:01:00 AM,11/03/2022 06:00:00 AM,10/27/2022 02:47:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+678411,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 09:00:00 PM,10/27/2022 02:16:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 53 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+678409,Shooting Permit,11/01/2022 07:00:00 AM,11/01/2022 09:00:00 PM,10/27/2022 02:12:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678399,Shooting Permit,10/31/2022 04:00:00 PM,11/01/2022 06:00:00 AM,10/27/2022 01:39:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCUS GARVEY BOULEVARD between ELLERY STREET and MYRTLE AVENUE, ELLERY STREET between BROADWAY and MARCUS GARVEY BOULEVARD, PARK AVENUE between BROADWAY and THROOP AVENUE, MARCUS GARVEY BOULEVARD between BROADWAY and ELLERY STREET, BROADWAY between SUMNER PLACE and ELLERY STREET",Brooklyn,"3, 4","79, 81, 83",Television,Made for TV/mini-series,United States of America,11206
+678396,Theater Load in and Load Outs,11/07/2022 12:01:00 AM,11/14/2022 11:59:00 PM,10/27/2022 01:20:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+678395,Theater Load in and Load Outs,11/03/2022 12:01:00 AM,11/03/2022 11:59:00 PM,10/27/2022 01:11:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+678394,Shooting Permit,11/03/2022 09:00:00 AM,11/03/2022 11:59:00 PM,10/27/2022 01:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","DAVIS COURT between PEARSON PLACE and 49 AVENUE, DAVIS COURT between 49 AVENUE and PEARSON PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, PEARSON PLACE between SKILLMAN AVENUE and 27 STREET, SKILLMAN AVENUE between PEARSON PLACE and 49 AVENUE, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, 47 AVENUE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between 27 STREET and 28 STREET, SKILLMAN AVENUE between 47 AVENUE and 29 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+678381,Shooting Permit,11/03/2022 06:00:00 AM,11/03/2022 09:00:00 PM,10/27/2022 12:13:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD, WESTMINSTER ROAD between CHURCH AVENUE and CATON AVENUE",Brooklyn,14,70,WEB,Not Applicable,United States of America,11218
+678379,Shooting Permit,11/17/2022 07:00:00 AM,11/17/2022 09:00:00 PM,10/27/2022 12:05:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON ST between JANE STREET and 8 AVENUE, WEST 12 STREET between 8 AVENUE and WEST 4 STREET, 8 AVENUE between JANE STREET and HUDSON STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+678377,Shooting Permit,11/16/2022 06:00:00 AM,11/16/2022 09:00:00 PM,10/27/2022 12:05:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between HUDSON STREET and 8 AVENUE, HUDSON STREET between JANE STREET and 8 AVENUE, WEST 12 STREET between 8 AVENUE and WEST 4 STREET, 8 AVENUE between JANE STREET and HUDSON STREET",Manhattan,"1, 2","1, 6",Commercial,Commercial,United States of America,"10013, 10014"
+678376,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 08:30:00 PM,10/27/2022 12:05:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between ALBERMARLE ROAD and CHURCH AVENUE, WESTMINSTER ROAD between CHURCH AVENUE and CATON AVENUE",Brooklyn,14,70,WEB,Not Applicable,United States of America,11218
+678373,Shooting Permit,11/02/2022 09:00:00 AM,11/02/2022 11:00:00 PM,10/27/2022 11:26:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+678370,Shooting Permit,11/04/2022 09:00:00 AM,11/05/2022 01:00:00 AM,10/27/2022 11:17:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+678369,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 08:00:00 PM,10/27/2022 10:32:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678357,Shooting Permit,11/01/2022 07:00:00 AM,11/01/2022 09:00:00 PM,10/27/2022 09:15:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678355,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 10:00:00 PM,10/27/2022 08:56:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, PARK AVE between EAST 30 STREET and E 33 ST, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,5,14,Television,Cable-episodic,United States of America,"10001, 10016"
+678350,Theater Load in and Load Outs,11/18/2022 06:00:00 AM,11/20/2022 05:30:00 PM,10/27/2022 03:39:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678349,Theater Load in and Load Outs,11/20/2022 06:00:00 AM,11/21/2022 06:00:00 AM,10/27/2022 03:38:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678348,Theater Load in and Load Outs,11/13/2022 06:00:00 AM,11/14/2022 06:00:00 AM,10/27/2022 03:38:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 74 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678347,Theater Load in and Load Outs,11/10/2022 06:00:00 AM,11/12/2022 05:30:00 AM,10/27/2022 03:37:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678346,Theater Load in and Load Outs,11/09/2022 06:00:00 AM,11/10/2022 05:30:00 PM,10/27/2022 03:36:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678345,Theater Load in and Load Outs,11/08/2022 06:00:00 AM,11/09/2022 05:30:00 AM,10/27/2022 03:35:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678344,Theater Load in and Load Outs,11/07/2022 06:00:00 AM,11/08/2022 06:00:00 PM,10/27/2022 03:35:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678343,Theater Load in and Load Outs,11/05/2022 06:00:00 AM,11/06/2022 06:00:00 AM,10/27/2022 03:34:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678342,Theater Load in and Load Outs,11/03/2022 06:00:00 AM,11/04/2022 05:30:00 AM,10/27/2022 03:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678341,Theater Load in and Load Outs,11/02/2022 05:30:00 AM,11/03/2022 05:30:00 AM,10/27/2022 03:32:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+678330,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 10:00:00 PM,10/26/2022 06:01:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, PEARSON PLACE between SKILLMAN AVENUE and 27 STREET, DAVIS COURT between PEARSON PLACE and 49 AVENUE, DAVIS COURT between 49 AVENUE and PEARSON PLACE, SKILLMAN AVENUE between PEARSON PLACE and 49 AVENUE, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, 47 AVENUE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between 27 STREET and 28 STREET, SKILLMAN AVENUE between 47 AVENUE and 29 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+678327,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/28/2022 11:59:00 PM,10/26/2022 05:00:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 56 STREET and WEST 57 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+678323,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 09:00:00 PM,10/26/2022 04:36:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 60 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 62 STREET and EAST 60 STREET, MADISON AVENUE between EAST 60 STREET and EAST 57 STREET, EAST 56 STREET between 5 AVENUE and PARK AVENUE, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, EAST 58 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+678311,Theater Load in and Load Outs,11/23/2022 12:01:00 AM,11/27/2022 06:00:00 AM,10/26/2022 04:06:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+678302,Shooting Permit,11/02/2022 07:00:00 AM,11/02/2022 07:00:00 PM,10/26/2022 03:43:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 10 AVENUE, WEST 21 STREET between 7 AVENUE and 8 AVENUE, WEST 22 STREET between 9 AVENUE and 8 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE, WEST 25 STREET between 11 AVENUE and 10 AVENUE, 8 AVENUE between WEST 22 STREET and WEST 21 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+678298,Shooting Permit,10/30/2022 06:00:00 AM,10/30/2022 08:00:00 PM,10/26/2022 03:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between MADISON AVENUE and LEXINGTON AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,"5, 6","14, 17",Film,Short,United States of America,"10016, 10017, 10018"
+678275,Shooting Permit,10/31/2022 05:00:00 AM,10/31/2022 07:00:00 PM,10/26/2022 01:40:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between NEWEL STREET and DIAMOND STREET, CALYER STREET between NEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678268,Shooting Permit,11/30/2022 04:00:00 AM,11/30/2022 11:59:00 PM,10/26/2022 01:12:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10020, 10036"
+678267,Shooting Permit,10/29/2022 06:00:00 AM,10/29/2022 08:00:00 PM,10/26/2022 01:12:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between HUDSON STREET and VARICK STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+678266,Shooting Permit,11/29/2022 06:00:00 AM,11/29/2022 11:59:00 PM,10/26/2022 01:12:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10020, 10036"
+678265,Shooting Permit,11/28/2022 04:00:00 AM,11/28/2022 11:59:00 PM,10/26/2022 01:12:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10020, 10036"
+678262,Shooting Permit,10/30/2022 02:00:00 AM,10/30/2022 01:00:00 PM,10/26/2022 12:48:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+678261,Shooting Permit,10/29/2022 02:00:00 AM,10/29/2022 01:00:00 PM,10/26/2022 12:44:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+678257,Shooting Permit,10/28/2022 06:00:00 PM,10/29/2022 08:00:00 AM,10/26/2022 12:26:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","129 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between 127 STREET and 129 STREET, POWELL COVE BOULEVARD between LAX AVENUE and 127 STREET, 7 AVENUE between 129 STREET and 130 STREET, 130 STREET between 7 AVENUE and 9 AVENUE",Queens,7,109,Television,Made for TV/mini-series,United States of America,"11356, 11357, 11359"
+678252,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 11:00:00 PM,10/26/2022 12:12:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678244,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 08:00:00 PM,10/26/2022 11:15:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","NANSEN STREET between 71 AVENUE and 72 AVENUE, 71 AVENUE between KESSEL STREET and NANSEN STREET, MANSE STREET between 70 AVENUE and 71 AVENUE, 71 AVENUE between METROPOLITAN AVENUE and OLCOTT STREET, OLCOTT STREET between 70 AVENUE and 71 AVENUE, 72 AVENUE between METROPOLITAN AVENUE and KESSEL STREET, METROPOLITAN AVENUE between 72 AVENUE and 71 ROAD, 71 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, METROPOLITAN AVENUE between 72 ROAD and 72 DRIVE",Queens,6,112,Television,Episodic series,United States of America,11375
+678233,Shooting Permit,12/07/2022 06:00:00 AM,12/07/2022 11:59:00 PM,10/26/2022 10:32:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,Television,Special/Awards Show,United States of America,10036
+678234,Shooting Permit,12/08/2022 06:00:00 AM,12/08/2022 11:59:00 PM,10/26/2022 10:32:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,Television,Special/Awards Show,United States of America,10036
+678230,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 09:00:00 PM,10/26/2022 10:01:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678221,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 09:00:00 PM,10/26/2022 09:07:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678219,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 10:00:00 PM,10/26/2022 09:00:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 5 AVENUE, WEST 51 STREET between 7 AVENUE and BROADWAY, WEST 51 STREET between 6 AVENUE and 7 AVENUE, BROADWAY between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6","13, 14, 18",Television,Cable-episodic,United States of America,"10001, 10010, 10019, 10020, 10103, 10119"
+678218,Shooting Permit,11/01/2022 09:00:00 AM,11/01/2022 09:00:00 PM,10/26/2022 08:59:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",14 AVENUE between CLINTONVILLE STREET and 152 STREET,Queens,7,109,Film,Feature,United States of America,11357
+678217,Shooting Permit,10/31/2022 09:00:00 AM,10/31/2022 09:00:00 PM,10/26/2022 08:48:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",14 AVENUE between CLINTONVILLE STREET and 152 STREET,Queens,7,109,Film,Feature,United States of America,11357
+678213,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 08:00:00 PM,10/26/2022 12:16:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MORRIS STREET and BEAVER STREET, WHITEHALL STREET between BEAVER STREET and STONE STREET, SZOLD PLACE between EAST 10 STREET and EAST 12 STREET, SZOLD PLACE between EAST 10 STREET and EAST 12 STREET, EAST 10 STREET between AVENUE C and AVENUE D, AVENUE D between EAST 10 STREET and EAST 9 STREET, EAST 14 STREET between AVENUE C and AVENUE A, BEAVER STREET between BROADWAY and NEW STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET",Manhattan,"1, 3, 6","1, 13, 9",Television,Episodic series,United States of America,"10004, 10005, 10006, 10007, 10009, 10038, 10271, 10279"
+678206,Shooting Permit,10/30/2022 07:00:00 AM,10/30/2022 07:00:00 PM,10/25/2022 08:50:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WOODBINE STREET and MYRTLE AVENUE, BEAVER STREET between WILLIAM STREET and HANOVER STREET",Queens,"1, 5","1, 104",Music Video,Signed Artist,United States of America,"10004, 11385"
+678194,Shooting Permit,10/29/2022 06:00:00 AM,10/29/2022 09:00:00 PM,10/25/2022 05:56:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 40 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,"5, 6","14, 17",Film,Short,United States of America,"10016, 10017"
+678193,Shooting Permit,10/29/2022 07:00:00 AM,10/29/2022 07:00:00 PM,10/25/2022 05:53:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 11 AVENUE and 12 AVENUE,Manhattan,4,10,Music Video,Signed Artist,United States of America,10001
+678189,Shooting Permit,10/28/2022 10:00:00 AM,10/28/2022 05:00:00 PM,10/25/2022 05:28:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 17 STREET between UNION SQUARE WEST and 5 AVENUE,Manhattan,5,13,Film,Feature,United States of America,10003
+678184,Shooting Permit,11/01/2022 06:00:00 AM,11/01/2022 11:00:00 PM,10/25/2022 05:05:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+678183,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 10:00:00 PM,10/25/2022 05:02:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOBLE STREET between LORIMER STREET and FRANKLIN STREET, NOBLE STREET between WEST STREET and DEAD END, KENT AVENUE between SOUTH THIRD STREET and SOUTH FOURTH STREET, SOUTH 3 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH FOURTH STREET between KENT AVENUE and WYTHE AVENUE, SOUTH FIFTH STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between BEDFORD AVENUE and DRIGGS AVENUE, SOUTH 5 STREET between DRIGGS AVENUE and BEDFORD AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11211, 11222, 11249"
+678166,Shooting Permit,11/02/2022 06:00:00 AM,11/02/2022 09:00:00 PM,10/25/2022 04:12:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 36 STREET between PARK AVENUE and MADISON AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE, EAST 36 STREET between 5 AVENUE and MADISON AVENUE, WEST 36 STREET between BROADWAY and 6 AVENUE, WEST 37 STREET between BROADWAY and 7 AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,"10016, 10018"
+678164,Shooting Permit,11/04/2022 07:00:00 AM,11/04/2022 07:00:00 PM,10/25/2022 04:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET,Brooklyn,1,90,Commercial,Industrial/Corporate,United States of America,11206
+678162,Shooting Permit,11/03/2022 07:00:00 AM,11/03/2022 07:00:00 PM,10/25/2022 04:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET,Brooklyn,1,90,Commercial,Industrial/Corporate,United States of America,11206
+678136,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 11:00:00 PM,10/25/2022 02:55:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678126,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 11:00:00 PM,10/25/2022 02:04:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+678125,Shooting Permit,10/28/2022 08:00:00 AM,10/29/2022 12:00:00 AM,10/25/2022 02:02:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+678124,Shooting Permit,10/27/2022 05:00:00 PM,10/28/2022 05:00:00 AM,10/25/2022 01:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","129 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between 127 STREET and 129 STREET, POWELL COVE BOULEVARD between LAX AVENUE and 127 STREET, 7 AVENUE between 129 STREET and 130 STREET, 130 STREET between 7 AVENUE and 9 AVENUE",Queens,7,109,Television,Made for TV/mini-series,United States of America,"11356, 11357"
+678117,Shooting Permit,11/02/2022 07:00:00 AM,11/02/2022 07:00:00 PM,10/25/2022 01:04:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET,Brooklyn,1,90,Commercial,Industrial/Corporate,United States of America,11206
+678115,Shooting Permit,11/01/2022 06:00:00 AM,11/01/2022 08:00:00 PM,10/25/2022 12:53:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, DECATUR STREET between IRVING AVENUE and WYCKOFF AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678111,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 09:00:00 PM,10/25/2022 12:39:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 AVENUE between 24 STREET and 26 STREET, 24 AVENUE between 21 STREET and 24 STREET, 21 STREET between 23 TERRACE and 24 AVENUE, CRESCENT STREET between 21 AVENUE and DITMARS BOULEVARD, CRESCENT STREET between DITMARS BOULEVARD and 23 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+678106,Theater Load in and Load Outs,11/03/2022 12:01:00 AM,11/05/2022 06:00:00 AM,10/25/2022 12:24:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+678104,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 08:00:00 PM,10/25/2022 12:06:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678103,Shooting Permit,10/28/2022 06:00:00 AM,10/28/2022 08:00:00 PM,10/25/2022 12:05:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF STREET and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+678095,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 09:00:00 PM,10/25/2022 11:35:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","FREEMAN STREET between FRANKLIN STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between EAGLE STREET and INDIA STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678089,Shooting Permit,10/28/2022 06:00:00 AM,10/28/2022 11:00:00 PM,10/25/2022 11:09:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+678087,Theater Load in and Load Outs,11/01/2022 08:00:00 AM,11/01/2022 11:59:00 PM,10/25/2022 11:00:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+678086,Shooting Permit,10/28/2022 09:00:00 AM,10/28/2022 11:59:00 PM,10/25/2022 10:50:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+678063,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 10:00:00 PM,10/25/2022 09:47:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+678061,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 09:00:00 PM,10/25/2022 09:33:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+678059,Shooting Permit,10/27/2022 07:00:00 AM,10/27/2022 10:00:00 PM,10/25/2022 08:59:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 80 STREET and EAST 82 STREET, MADISON AVENUE between EAST 79 STREET and EAST 80 STREET, EAST 81 STREET between 5 AVENUE and MADISON AVENUE, EAST 80 STREET between 5 AVENUE and MADISON AVENUE, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 78 STREET and EAST 79 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET, PARK AVENUE between EAST 77 STREET and EAST 80 STREET, EAST 77 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10023, 10028, 10075"
+678045,Shooting Permit,11/03/2022 02:00:00 PM,11/04/2022 05:00:00 AM,10/24/2022 10:52:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10075
+678043,Shooting Permit,11/02/2022 02:00:00 PM,11/03/2022 05:00:00 AM,10/24/2022 10:47:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10075
+678041,Shooting Permit,11/01/2022 06:00:00 AM,11/01/2022 10:00:00 PM,10/24/2022 10:39:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10075
+678040,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 09:00:00 PM,10/24/2022 10:26:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10075
+678039,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 11:00:00 PM,10/24/2022 10:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, 58TH STREET between LAUREL HILL BLVD and QUEENS BLVD, QUEENS BOULEVARD between 58 STREET and 55 STREET, LAUREL HILL BLVD between 58TH PL and 59TH PL, 58TH PL between 58 STREET and LAUREL HILL BLVD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11222, 11377"
+678036,Shooting Permit,10/27/2022 07:00:00 AM,10/28/2022 11:00:00 PM,10/24/2022 09:34:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY CLIFF TERRACE between 68 STREET and DEAD END, 3 AVENUE between 68 STREET and 71 STREET, 68 STREET between COLONIAL ROAD and 3 AVENUE, COLONIAL ROAD between 68 STREET and SENATOR STREET, BAY RIDGE AVENUE between 3 AVENUE and BAY RIDGE PLACE, SENATOR STREET between RIDGE BOULEVARD and 3 AVENUE",Brooklyn,10,68,Television,Episodic series,United States of America,"11209, 11220"
+678019,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 10:00:00 PM,10/24/2022 06:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between VERNON BOULEVARD and 5 STREET, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 AVENUE and 45 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, 46 ROAD between VERNON BOULEVARD and 11 STREET, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 45 ROAD between VERNON BOULEVARD and 11 STREET, NORTH 4 STREET between BERRY STREET and WYTHE AVENUE, NORTH 4 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 3 STREET and NORTH 5 STREET, METROPOLITAN AVENUE between WYTHE AVENUE and RIVER STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE",Queens,"1, 2","108, 90, 94",Television,Episodic series,United States of America,"11101, 11249"
+678015,Shooting Permit,10/28/2022 11:00:00 AM,10/29/2022 02:00:00 AM,10/24/2022 05:26:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 6 AVENUE and 5 AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE, EAST 36 STREET between 5 AVENUE and MADISON AVENUE, EAST 49 STREET between MADISON AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 46 STREET and EAST 47 STREET, PARK AVENUE between EAST 48 STREET and EAST 53 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10018, 10022, 10152, 10167, 10171, 10177"
+678013,Shooting Permit,10/27/2022 10:00:00 AM,10/27/2022 11:00:00 PM,10/24/2022 05:04:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between MADISON AVENUE and 5 AVENUE, WEST 3 STREET between SULLIVAN STREET and THOMPSON STREET",Manhattan,"2, 64, 8","19, 22, 6",Film,Feature,United States of America,"10012, 10021, 10023, 10075"
+678012,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 11:00:00 PM,10/24/2022 04:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET, CHRYSTIE STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,5,WEB,Not Applicable,United States of America,10002
+678010,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 10:00:00 PM,10/24/2022 04:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between RIVINGTON STREET and STANTON STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET",Manhattan,3,5,WEB,Not Applicable,United States of America,10002
+678011,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 10:00:00 PM,10/24/2022 04:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between RIVINGTON STREET and STANTON STREET, CHRYSTIE STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,5,WEB,Not Applicable,United States of America,10002
+678003,Shooting Permit,10/26/2022 05:00:00 PM,10/27/2022 05:00:00 AM,10/24/2022 03:14:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 10 AVENUE, 10 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WEST 18 STREET between 11 AVENUE and 10 AVENUE, WEST 17 STREET between 11 AVENUE and 10 AVENUE",Manhattan,"2, 4","10, 6",Television,Made for TV/mini-series,United States of America,"10011, 10014"
+677999,Shooting Permit,10/28/2022 06:00:00 AM,10/28/2022 09:00:00 PM,10/24/2022 03:02:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 40 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,"5, 6","14, 17",Film,Short,United States of America,"10016, 10017"
+677998,Theater Load in and Load Outs,10/30/2022 12:01:00 AM,10/31/2022 06:00:00 AM,10/24/2022 02:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677994,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 10:00:00 PM,10/24/2022 02:26:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY PLACE between GROVE STREET and 6 AVENUE, GAY STREET between WAVERLY PLACE and CHRISTOPHER STREET, AVENUE OF THE AMERICAS between MINETTA LANE and BLEECKER STREET, WAVERLY PLACE between GAY STREET and WEST 10 STREET, CHRISTOPHER STREET between WAVERLY PLACE and GREENWICH AVENUE, 6 AVENUE between WAVERLY PLACE and GREENWICH AVENUE, 6 AVENUE between WAVERLY PLACE and WEST 3 STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WEST WASHINGTON PLACE between 6 AVENUE and GROVE STREET, WEST 13 STREET between 7 AVENUE and GREENWICH AVENUE",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+677993,Shooting Permit,10/28/2022 08:00:00 AM,10/29/2022 01:00:00 AM,10/24/2022 02:26:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677964,Shooting Permit,10/31/2022 08:00:00 AM,10/31/2022 11:00:00 PM,10/24/2022 12:42:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 3 STREET and EAST 10 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 10 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 10 STREET and EAST 11 STREET, EAST 6 STREET between 1 AVENUE and AVENUE B, EAST 5 STREET between AVENUE A and AVENUE B, AVENUE B between EAST 5 STREET and EAST 6 STREET",Manhattan,3,9,Television,Episodic series,United States of America,10009
+677963,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 07:00:00 PM,10/24/2022 12:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 36 STREET and 37 STREET,Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+677956,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/29/2022 11:59:00 PM,10/24/2022 12:01:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677955,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 08:00:00 PM,10/24/2022 11:49:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WEIRFIELD STREET between WILSON AVENUE and CENTRAL AVENUE, WILSON AVENUE between JEFFERSON AVENUE and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and WEIRFIELD STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+677948,Theater Load in and Load Outs,10/27/2022 12:01:00 AM,10/27/2022 11:59:00 PM,10/24/2022 11:02:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677947,Shooting Permit,11/01/2022 07:00:00 AM,11/01/2022 09:00:00 PM,10/24/2022 10:49:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677945,Theater Load in and Load Outs,10/26/2022 12:01:00 AM,10/26/2022 11:59:00 PM,10/24/2022 10:47:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677943,Shooting Permit,10/27/2022 07:00:00 AM,10/27/2022 09:00:00 PM,10/24/2022 10:45:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677942,Shooting Permit,10/26/2022 08:00:00 AM,10/26/2022 05:00:00 PM,10/24/2022 10:45:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between PARK PLACE and ST JOHNS PLACE, STERLING PLACE between BEDFORD AVENUE and ROGERS AVENUE, PARK PLACE between FRANKLIN AVENUE and BEDFORD AVENUE, STERLING PLACE between FRANKLIN AVENUE and BEDFORD AVENUE, STERLING PLACE between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,8,77,Television,Episodic series,United States of America,"11216, 11238"
+677941,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 09:00:00 PM,10/24/2022 10:42:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677936,Theater Load in and Load Outs,10/29/2022 12:01:00 AM,10/30/2022 06:00:00 AM,10/24/2022 10:27:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+677935,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 09:00:00 PM,10/24/2022 10:19:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677929,Theater Load in and Load Outs,10/25/2022 12:01:00 AM,10/26/2022 11:59:00 PM,10/24/2022 09:58:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 56 STREET and WEST 57 STREET, WEST 56 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+677911,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 10:00:00 PM,10/24/2022 08:59:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+677910,Shooting Permit,10/28/2022 06:00:00 AM,10/28/2022 09:00:00 PM,10/24/2022 08:46:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 36 STREET and WEST 37 STREET, WEST 24 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","10, 13, 14",Commercial,Promo,United States of America,"10011, 10018"
+677903,Shooting Permit,10/26/2022 02:30:00 AM,10/26/2022 06:00:00 PM,10/23/2022 09:09:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, WORTH STREET between BROADWAY and LAFAYETTE STREET, CENTRE STREET between READE STREET and DUANE STREET, READE ST between ELK ST and CENTRE ST, READE ST between ELK ST and BROADWAY, ELK ST between READE ST and CHAMBERS ST, CHAMBERS STREET between BROADWAY and CENTRE STREET, BROADWAY between DUANE STREET and READE STREET, READE STREET between CHURCH STREET and BROADWAY, BROADWAY between READE STREET and CHAMBERS STREET, WARREN STREET between CHURCH STREET and BROADWAY, BROADWAY between WARREN STREET and MURRAY STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+677883,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 09:00:00 PM,10/23/2022 10:58:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+677868,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 11:59:00 PM,10/21/2022 05:30:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNO STREET between 70 AVENUE and 71 AVENUE, KESSEL STREET between 70 AVENUE and 71 AVENUE, 70TH AVE between JUNO STREET and KESSEL STREET, 70 AVENUE between KESSEL STREET and LOUBET STREET, 70 AVENUE between JUNO STREET and INGRAM STREET, INGRAM STREET between 70 AVENUE and 69 AVENUE, 70 AVENUE between INGRAM STREET and HARROW STREET, QUEENS BOULEVARD between 71 AVENUE and ASCAN AVENUE, 72ND AVENUE between QUEENS BLVD and AUSTIN ST, 72 ROAD between QUEENS BOULEVARD and AUSTIN STREET, ASCAN AVENUE between QUEENS BOULEVARD and AUSTIN STREET, AUSTIN STREET between 72 ROAD and ASCAN AVENUE",Queens,6,112,Television,Episodic series,United States of America,11375
+677862,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 10:00:00 PM,10/21/2022 04:21:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between RECTOR STREET and JOSEPH P WARD STREET, GREENWICH STREET between CARLISLE STREET and EDGAR STREET, NORTH MOORE STREET between WEST SIDE HIGHWAY and GREENWICH STREET, TRINITY PLACE between RECTOR STREET and THAMES STREET, DUANE STREET between WEST BROADWAY and BROADWAY, CHURCH STREET between THOMAS STREET and DUANE STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10013"
+677856,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 08:00:00 PM,10/21/2022 03:59:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between ATLANTIC AVENUE and FULTON STREET, FULTON STREET between EASTERN PARKWAY and SACKMAN STREET, SACKMAN STREET between HERKIMER STREET and FULTON STREET, JARDINE PLACE between HERKIMER STREET and ATLANTIC AVENUE, VAN SINDEREN AVENUE between HERKIMER STREET and ATLANTIC AVENUE, FULTON STREET between VAN SINDEREN AVENUE and WILLIAMS PLACE, FULTON STREET between WILLIAMS PLACE and WILLIAMS AVENUE, HERKIMER STREET between WILLIAMS AVENUE and WILLIAMS PLACE, HERKIMER STREET between WILLIAMS AVENUE and WILLIAMS PLACE, WILLIAMS PLACE between HERKIMER STREET and EAST NEW YORK AVENUE, EASTERN PARKWAY between SOMERS STREET and TRUXTON STREET, SOMERS STREET between EASTERN PARKWAY and BROADWAY, SACKMAN STREET between SOMERS STREET and TRUXTON STREET, TRUXTON STREET between SACKMAN STREET and CONWAY STREET",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11233"
+677850,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 10:00:00 PM,10/21/2022 03:10:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 30 STREET between LEXINGTON AVENUE and 2 AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, 3 AVENUE between EAST 30 STREET and EAST 29 STREET, 3 AVENUE between EAST 29 STREET and EAST 28 STREET, EAST 29 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+677845,Shooting Permit,10/25/2022 07:30:00 AM,10/25/2022 05:00:00 PM,10/21/2022 02:50:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and IMLAY STREET, VAN BRUNT STREET between COMMERCE STREET and VERONA STREET, HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, VERONA STREET between RICHARDS STREET and DWIGHT STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+677825,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 09:00:00 PM,10/21/2022 02:16:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 8 AVENUE and 9 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 37 STREET between 9 AVENUE and DYER AVE, WEST 37 STREET between DYER AVE and 10 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10018
+677822,Shooting Permit,10/25/2022 05:00:00 PM,10/26/2022 05:00:00 AM,10/21/2022 01:58:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PLACE between WASHINGTON SQUARE EAST and GREENE STREET, WASHINGTON SQUARE NORTH between 5 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE WEST between WAVERLY PLACE and WASHINGTON PLACE, LAGUARDIA PLACE between WEST 3 STREET and BLEECKER STREET, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between MINETTA LANE and BLEEKER STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10003, 10011, 10012, 10014"
+677816,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 09:00:00 PM,10/21/2022 01:43:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 38 STREET and EAST 36 STREET, EAST 38 STREET between 1 AVENUE and FDR DRIVE, EAST 37 STREET between 1 AVENUE and FDR DR, EAST 36 STREET between 1 AVENUE and FDR DRIVE, EAST 32 STREET between MADISON AVENUE and PARK AVENUE, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 32 STREET and EAST 30 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,10016
+677808,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 08:00:00 PM,10/21/2022 12:36:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and FORSYTH STREET, BOWERY between DELANCEY STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROOME STREET between CLEVELAND PLACE and MULBERRY STREET, BROOME STREET between LAFAYETTE STREET and BROADWAY, EAST 7 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 7 STREET and EAST 10 STREET",Manhattan,"2, 3","5, 9",Television,Cable-episodic,United States of America,"10002, 10009, 10012, 10013"
+677799,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 05:00:00 PM,10/21/2022 11:38:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between STATE STREET and WHITEHALL STREET, STATE STREET between BRIDGE STREET and PEARL STREET, WHITEHALL ST between STONE STREET and BEAVER ST, BROADWAY between BEAVER STREET and EXCHANGE ALLEY, BEAVER STREET between BROADWAY and BROAD STREET, BROAD STREET between SOUTH STREET and WATER STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10006"
+677786,Theater Load in and Load Outs,10/24/2022 06:00:00 AM,10/30/2022 11:00:00 PM,10/21/2022 10:01:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+677779,Shooting Permit,10/26/2022 04:00:00 AM,10/26/2022 06:00:00 PM,10/21/2022 09:13:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, JAMAICA AVENUE between SHEPHERD AVENUE and HIGHLAND PLACE, HIGHLAND PLACE between JAMAICA AVENUE and RIDGEWOOD AVENUE, QUEENS PLAZA SOUTH between 12 STREET and 21 STREET",Brooklyn,"2, 5","108, 75",Still Photography,Not Applicable,United States of America,"11101, 11208"
+677778,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/29/2022 06:00:00 AM,10/21/2022 08:38:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+677775,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 11:00:00 PM,10/21/2022 07:55:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD, EAST 18 STREET between FOSTER AVENUE and NEWKIRK AVENUE, FOSTER AVENUE between EAST 17 STREET and OCEAN AVENUE, 68 STREET between 3 AVENUE and RIDGE BOULEVARD, 3 AVENUE between 68 STREET and OVINGTON AVENUE, BAY RIDGE AVENUE between 3 AVENUE and BAY RIDGE PLACE, 3 AVENUE between 68 STREET and SENATOR STREET",Brooklyn,"10, 14","68, 70",Commercial,Commercial,United States of America,"11209, 11220, 11226, 11230"
+677772,Theater Load in and Load Outs,11/02/2022 06:00:00 AM,11/02/2022 11:59:00 PM,10/21/2022 07:42:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",LUDLOW STREET between HESTER STREET and CANAL STREET,Manhattan,3,7,Theater,Theater,United States of America,10002
+677770,Theater Load in and Load Outs,11/16/2022 07:00:00 AM,11/28/2022 01:00:00 PM,10/21/2022 05:32:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 6 AVENUE and 5 AVENUE, WEST 52 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 53 STREET and WEST 52 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Special/Awards Show,United States of America,"10019, 10022, 10023, 10103"
+677767,Theater Load in and Load Outs,10/24/2022 06:00:00 AM,11/03/2022 11:00:00 PM,10/21/2022 05:01:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+677751,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 09:00:00 PM,10/20/2022 05:18:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677750,Theater Load in and Load Outs,10/24/2022 12:01:00 AM,10/25/2022 06:00:00 AM,10/20/2022 05:17:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677749,Theater Load in and Load Outs,10/23/2022 12:01:00 AM,10/25/2022 11:59:00 PM,10/20/2022 04:54:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+677746,Theater Load in and Load Outs,10/23/2022 12:01:00 AM,10/23/2022 11:59:00 PM,10/20/2022 04:28:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+677744,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 08:00:00 PM,10/20/2022 04:23:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 11 AVENUE and 12 AVENUE,Manhattan,4,18,Still Photography,Not Applicable,United States of America,10019
+677743,Shooting Permit,10/27/2022 07:00:00 AM,10/27/2022 08:00:00 PM,10/20/2022 04:23:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between STANTON STREET and RIVINGTON STREET, ORCHARD STREET between RIVINGTON STREET and STANTON STREET",Manhattan,3,"5, 7",WEB,Not Applicable,United States of America,10002
+677738,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 08:00:00 PM,10/20/2022 04:09:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+677737,Shooting Permit,10/28/2022 08:00:00 AM,10/28/2022 11:00:00 PM,10/20/2022 03:59:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+677735,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 08:00:00 PM,10/20/2022 03:55:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+677734,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 05:00:00 PM,10/20/2022 03:46:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","CPS between 6 AVENUE and 7 AVENUE, CPS between 7 AVENUE and COLUMBUS CIRCLE",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,"10019, 10023"
+677733,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 08:00:00 PM,10/20/2022 03:44:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+677730,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 08:00:00 PM,10/20/2022 03:22:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, NORTH 4 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 3 STREET and NORTH 5 STREET, METROPOLITAN AVENUE between WYTHE AVENUE and RIVER STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, KENT AVENUE between METROPOLTN AVENUE and NORTH 1 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11249
+677729,Theater Load in and Load Outs,10/29/2022 12:01:00 AM,10/30/2022 06:00:00 AM,10/20/2022 03:20:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+677728,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 09:00:00 PM,10/20/2022 03:14:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 46 STREET between 10 AVENUE and 11 AVENUE, WEST 46 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 47 STREET between 9 AVENUE and 10 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE, WEST 47 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,10036
+677726,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 09:00:00 PM,10/20/2022 02:58:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 38 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Film,Feature,United States of America,10018
+677725,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 10:00:00 PM,10/20/2022 02:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677724,Shooting Permit,10/24/2022 10:00:00 AM,10/24/2022 02:00:00 PM,10/20/2022 02:51:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between WEST 51 STREET and WEST 52 STREET,Manhattan,5,"14, 18",Television,Variety,United States of America,"10001, 10019, 10119"
+677723,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/28/2022 11:59:00 PM,10/20/2022 02:36:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+677708,Shooting Permit,10/24/2022 12:00:00 PM,10/25/2022 02:00:00 AM,10/20/2022 01:39:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY AVENUE between 118 STREET and LEFFERTS BOULEVARD, LEFFERTS BOULEVARD between 103 AVENUE and LIBERTY AVENUE, 118 STREET between LIBERTY AVENUE and 107 AVENUE, 118 STREET between LIBERTY AVENUE and 103 AVENUE, 108 STREET between LIBERTY AVENUE and 107 AVENUE, LIBERTY AVENUE between 106 STREET and 110 STREET, GEORGIA AVENUE between GLENMORE AVENUE and SUTTER AVENUE, PITKIN AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between WILLIAMS AVENUE and PENNSYLVANIA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Queens,"10, 5","106, 75",Television,Made for TV/mini-series,United States of America,"11207, 11417, 11419"
+677706,Theater Load in and Load Outs,10/27/2022 12:01:00 AM,11/01/2022 11:59:00 PM,10/20/2022 01:34:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+677699,Shooting Permit,10/25/2022 04:00:00 AM,10/25/2022 09:00:00 PM,10/20/2022 01:04:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",QUEENS BOULEVARD between 37 STREET and 38 STREET,Queens,2,108,Film,Feature,United States of America,11101
+677692,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 08:00:00 PM,10/20/2022 12:34:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+677687,Shooting Permit,11/04/2022 03:00:00 PM,11/04/2022 11:00:00 PM,10/20/2022 12:07:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FELTON STREET between AYE COURT and GAULDY AVENUE,Staten Island,2,121,Film,Short,United States of America,10314
+677686,Shooting Permit,10/25/2022 07:00:00 AM,10/26/2022 02:00:00 AM,10/20/2022 12:00:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between RECTOR STREET and JOSEPH P WARD STREET, GREENWICH STREET between CARLISLE STREET and EDGAR STREET, NORTH MOORE STREET between WEST SIDE HIGHWAY and GREENWICH STREET, WEST SIDE HIGHWAY between NORTH MOORE STREET and CHAMBERS STREET, TRINITY PLACE between RECTOR STREET and THAMES STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10013"
+677680,Theater Load in and Load Outs,11/28/2022 05:00:00 AM,11/28/2022 08:00:00 PM,10/20/2022 11:39:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+677678,Theater Load in and Load Outs,11/05/2022 05:00:00 AM,11/05/2022 08:00:00 PM,10/20/2022 11:35:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+677677,Shooting Permit,10/22/2022 06:00:00 AM,10/22/2022 08:00:00 PM,10/20/2022 11:34:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between COOPER STREET and MOFFAT STREET,Brooklyn,"14, 16, 4","100, 73, 83",Commercial,Commercial,United States of America,"11207, 11694"
+677667,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 08:00:00 PM,10/20/2022 11:18:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CABRINI BOULEVARD between WEST 178 STREET and WEST 177 STREET, WEST 177 STREET between HAVEN AVENUE and FT WASHINGTON AVENUE, HAVEN AVENUE between WEST 177 STREET and WEST 176 STREET, WEST 176 STREET between HAVEN AVENUE and FT WASHINGTON AVENUE, SOUTH PINEHURST AVENUE between WEST 177 STREET and WEST 176 STREET, FT WASHINGTON AVENUE between WEST 178 STREET and WEST 175 STREET, ST NICHOLAS AVENUE between WEST 178 STREET and WEST 177 STREET, ST NICHOLAS AVENUE between WEST 177 STREET and WEST 175 STREET, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 174 STREET, ST NICHOLAS AVENUE between WEST 174 STREET and WEST 173 STREET",Manhattan,12,33,Television,Cable-episodic,United States of America,10033
+677663,Theater Load in and Load Outs,10/26/2022 06:00:00 AM,10/26/2022 11:59:00 PM,10/20/2022 11:04:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+677659,Shooting Permit,10/21/2022 11:00:00 AM,10/22/2022 02:00:00 AM,10/20/2022 10:42:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between GRAND STREET and HOWARD STREET, GRAND STREET between LAFAYETTE STREET and CROSBY STREET, MERCER STREET between BROOME STREET and GRAND STREET, GRAND STREET between BROADWAY and CROSBY STREET, CROSBY STREET between GRAND STREET and HOWARD STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROOME STREET between LAFAYETTE STREET and CROSBY STREET, LAFAYETTE STREET between KENMARE STREET and BROOME STREET, GRAND STREET between GREENE STREET and MERCER STREET, GRAND STREET between WOOSTER STREET and GREENE STREET, GREENE STREET between GRAND STREET and CANAL STREET, GREENE STREET between GRAND STREET and BROOME STREET, MERCER STREET between CANAL STREET and HOWARD STREET, HOWARD STREET between MERCER STREET and BROADWAY, MERCER STREET between GRAND STREET and HOWARD STREET, CROSBY STREET between GRAND STREET and BROOME STREET",Manhattan,2,"1, 5",Commercial,Commercial,United States of America,"10012, 10013"
+677655,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 10:00:00 PM,10/20/2022 10:38:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BROOME STREET and WEST HOUSTON STREET, BROOME STREET between LAFAYETTE STREET and WOOSTER STREET, BLEECKER STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between BLEECKER STREET and EAST HOUSTON STREET, CROSBY STREET between BLEECKER STREET and EAST HOUSTON STREET, KENMARE STREET between CLEVELAND PLACE and MOTT STREET, MULBERRY STREET between KENMARE STREET and BROOME STREET, BROOME STREET between CLEVELAND PLACE and MULBERRY STREET, LAFAYETTE STREET between CANAL STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, GRAND STREET between LAFAYETTE STREET and CROSBY STREET, HOWARD STREET between BROADWAY and LAFAYETTE STREET",Manhattan,2,"1, 5, 9",Television,Episodic series,United States of America,"10012, 10013"
+677641,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 07:00:00 PM,10/20/2022 09:38:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between LEONARD STREET and LORIMER STREET, MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE STREET between MANHATTAN AVENUE and LEONARD STREET, LEONARD STREET between GREENPOINT AVENUE and CALYER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between BOND STREET and WEST 4 STREET, LAFAYETTE STREET between BOND STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and EAST 4 STREET, KENT AVENUE between GRAND STREET and METROPOLITAN AVENUE",Brooklyn,"1, 2","6, 9, 90, 94",Commercial,Commercial,United States of America,"10003, 10012, 11206, 11222, 11249"
+677621,Shooting Permit,10/26/2022 08:00:00 AM,10/26/2022 08:00:00 PM,10/19/2022 09:53:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11237
+677620,Shooting Permit,10/25/2022 08:00:00 AM,10/25/2022 08:00:00 PM,10/19/2022 09:47:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11237
+677617,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 10:00:00 PM,10/19/2022 08:31:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between MANHATTAN AVENUE and FRANKLIN STREET, JAVA STREET between MANHATTAN AVENUE and FRANKLIN STREET, MANHATTAN AVENUE between KENT STREET and GREENPOINT AVENUE, MANHATTAN AVENUE between INDIA STREET and KENT STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677615,Theater Load in and Load Outs,10/27/2022 12:01:00 AM,10/27/2022 11:59:00 PM,10/19/2022 07:50:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+677612,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 06:00:00 PM,10/19/2022 05:56:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVE between RAILROAD AVE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+677611,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 08:00:00 PM,10/19/2022 05:55:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MIDDLETOWN ROAD between WESTCHESTER AVENUE and MAYFLOWER AVENUE, MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, WESTCHESTER AVENUE between MIDDLETOWN ROAD and MULFORD AVENUE, ROEBLING AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, ERICSON PL between ROEBLING AVENUE and EAST TREMONT AVENUE, Hutchinson River Pkwy E between ROEBLING AVENUE and E Tremont Ave, EAST TREMONT AVENUE between WATERBURY AVENUE and MAYFLOWER AVENUE, BEACH AVENUE between LACOMBE AVENUE and RANDALL AVENUE, BEACH AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, TAYLOR AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, Soundview Ave between RANDALL AVENUE and Thieriot Ave, SOUNDVIEW AVENUE between PATTERSON AVENUE and BOLTON AVENUE, Bronx River Ave between ROSEDALE AVENUE and Dead End",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10461, 10473"
+677608,Shooting Permit,10/26/2022 09:00:00 AM,10/26/2022 11:59:00 PM,10/19/2022 05:37:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 39 PLACE and 40 STREET, 43 AVENUE between 40 STREET and 41 STREET, QUEENS BOULEVARD between 40 STREET and 41 STREET, QUEENS BOULEVARD between 39 PLACE and 40 STREET, QUEENS BOULEVARD between 39 STREET and 39 PLACE, QUEENS BOULEVARD between 41 STREET and 42 STREET, 40 STREET between 43 AVENUE and QUEENS BOULEVARD",Queens,"2, 5, 6, 9","108, 75",Television,Cable-episodic,United States of America,"11104, 11375, 11385, 11415, 11421"
+677603,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 08:00:00 PM,10/19/2022 04:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",FLUSHING AVENUE between CUMBERLAND STREET and ADELPHI STREET,Brooklyn,"2, 6","48, 88",Still Photography,Not Applicable,United States of America,"10458, 11205"
+677602,Theater Load in and Load Outs,11/06/2022 12:01:00 AM,11/08/2022 06:00:00 AM,10/19/2022 04:39:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 65 STREET and WEST 63 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+677597,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 09:00:00 PM,10/19/2022 04:22:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677596,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 09:00:00 PM,10/19/2022 04:22:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677593,Theater Load in and Load Outs,10/27/2022 12:01:00 AM,10/30/2022 06:00:00 AM,10/19/2022 04:03:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+677585,Shooting Permit,10/21/2022 02:00:00 PM,10/22/2022 03:00:00 AM,10/19/2022 03:34:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between WEST 10 STREET and WASHINGTON SQUARE NORTH, WEST 8 STREET between MACDOUGAL STREET and 5 AVENUE, EAST 8 STREET between 5 AVENUE and UNIVERSITY PLACE, WASHINGTON SQUARE NORTH between MACDOUGAL STREET and 5 AVENUE, WASHINGTON SQUARE WEST between WAVERLY PLACE and WASHINGTON PLACE, 6 AVENUE between WEST 9 STREET and WEST 3 STREET, UNIVERSITY PLACE between EAST 9 STREET and WAVERLY PLACE, UNIVERSITY PLACE between EAST 10 STREET and EAST 9 STREET, EAST 9 STREET between UNIVERSITY PLACE and BROADWAY",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10003, 10011, 10014"
+677582,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 08:00:00 PM,10/19/2022 03:12:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between PROSPECT PARK WEST and 8 AVENUE, 20 STREET between PROSPECT PARK WEST and 10 AVENUE, PROSPECT PARK WEST between 18 STREET and 19 STREET, PROSPECT PARK WEST between 19 STREET and 20 STREET, MCDONALD AVENUE between 10 AVENUE and FORT HAMILTON PARKWAY",Brooklyn,7,72,Television,Cable-episodic,United States of America,"11215, 11218, 11232"
+677576,Shooting Permit,10/23/2022 03:00:00 AM,10/23/2022 12:00:00 PM,10/19/2022 02:24:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+677570,Shooting Permit,10/21/2022 04:30:00 AM,10/21/2022 11:30:00 PM,10/19/2022 02:06:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between MOSCO STREET and WORTH STREET, MOTT STREET between CANAL STREET and MOSCO STREET, BOWERY between PELL STREET and DOYERS STREET, CHATHAM SQUARE between EAST BROADWAY and MOTT STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, OLIVER STREET between HENRY STREET and ST JAMES PLACE",Manhattan,3,5,Television,Episodic series,United States of America,"10002, 10013, 10038"
+677554,Shooting Permit,10/28/2022 07:00:00 AM,10/28/2022 09:00:00 PM,10/19/2022 12:57:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677553,Shooting Permit,10/27/2022 07:00:00 AM,10/27/2022 09:00:00 PM,10/19/2022 12:52:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677548,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 09:00:00 PM,10/19/2022 12:43:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+677544,Shooting Permit,10/27/2022 11:00:00 AM,10/28/2022 03:00:00 AM,10/19/2022 12:36:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+677542,Shooting Permit,10/28/2022 11:00:00 AM,10/29/2022 02:00:00 AM,10/19/2022 12:31:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 44 AVENUE and 43 ROAD, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+677541,DCAS Prep/Shoot/Wrap Permit,10/24/2022 03:00:00 PM,10/24/2022 10:00:00 PM,10/19/2022 12:23:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, CENTRE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+677524,Shooting Permit,10/27/2022 06:30:00 AM,10/27/2022 09:00:00 PM,10/19/2022 11:37:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+677521,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 11:00:00 PM,10/19/2022 11:19:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677520,Shooting Permit,10/22/2022 12:00:00 AM,10/22/2022 02:00:00 PM,10/19/2022 11:18:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+677519,Shooting Permit,10/21/2022 03:00:00 PM,10/21/2022 11:59:00 PM,10/19/2022 11:13:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+677517,Shooting Permit,10/25/2022 11:00:00 AM,10/26/2022 02:00:00 AM,10/19/2022 10:43:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","108 STREET between 67 DRIVE and 67 ROAD, 108 STREET between 67 DRIVE and 68 AVENUE, 108 STREET between 67 ROAD and 67 AVENUE, 67 ROAD between YELLOWSTONE BOULEVARD and 108 STREET, 67 DRIVE between YELLOWSTONE BOULEVARD and 108 STREET, YELLOWSTONE BOULEVARD between 69 AVENUE and 67 AVENUE",Queens,"6, 81","110, 112",Television,Episodic series,United States of America,"11368, 11375"
+677514,Shooting Permit,10/26/2022 06:00:00 AM,10/26/2022 10:00:00 PM,10/19/2022 10:30:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+677513,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 10:00:00 PM,10/19/2022 10:30:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+677512,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 10:00:00 PM,10/19/2022 10:29:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+677509,Shooting Permit,10/21/2022 12:00:00 PM,10/22/2022 12:00:00 AM,10/19/2022 10:17:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 STREET between 30 AVENUE and 31 AVENUE, 31 AVENUE between 32 STREET and 36 STREET, 37 STREET between 31 AVENUE and BROADWAY, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,"11103, 11106"
+677508,Shooting Permit,10/21/2022 12:00:00 PM,10/22/2022 04:00:00 AM,10/19/2022 10:07:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+677500,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 08:00:00 PM,10/19/2022 08:14:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between BARROW STREET and GROVE STREET, 7 AVENUE SOUTH between BLEECKER STREET and MORTON STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+677499,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 10:00:00 PM,10/19/2022 08:00:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between DUPONT STREET and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, MCGUINNESS BOULEVARD between GREEN STREET and EAGLE STREET, EAGLE STREET between MCGUINNESS BLVD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677485,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 07:00:00 PM,10/18/2022 09:17:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",STATION ROAD between 162 STREET and 161 STREET,Queens,7,109,Film,Feature,United States of America,11358
+677481,Shooting Permit,10/21/2022 06:00:00 PM,10/21/2022 11:59:00 PM,10/18/2022 08:05:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677480,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 10:00:00 PM,10/18/2022 08:02:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHOLES STREET between SCOTT AVENUE and ONDERDONK AVENUE, ONDERDONK AVENUE between METROPOLITAN AVENUE and SCHOLES STREET, SCHOLES STREET between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between SCHOLES STREET and MESEROLE STREET, MESEROLE STREET between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between METROPOLITAN AVENUE and SCHOLES STREET, METROPOLITAN AVENUE between SCOTT AVENUE and GARDNER AVENUE, GARDNER AVENUE between METROPOLITAN AVENUE and SCHOLES STREET, METROPOLITAN AVE between ONDERDONK AVENUE and WOODWARD AVENUE, METROPOLITAN AVENUE between ONDERDONK AVENUE and SCOTT AVENUE, WOODWARD AVENUE between STARR STREET and SUYDAM STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE",Brooklyn,"1, 5","104, 90",Television,Episodic series,United States of America,"11237, 11385"
+677472,Rigging Permit,10/26/2022 12:01:00 AM,10/26/2022 01:00:00 PM,10/18/2022 04:58:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",GOLD STREET between FRANKFORT STREET and SPRUCE STREET,Manhattan,1,1,Television,News,United States of America,10038
+677470,Shooting Permit,10/20/2022 12:00:00 PM,10/21/2022 04:00:00 AM,10/18/2022 04:49:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between WAVERLY PLACE and GREENWICH AVENUE, GREENWICH AVENUE between PERRY STREET and WEST 10 STREET, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between WEST 10 STREET and CHARLES STREET, WAVERLY PLACE between 6 AVENUE and GROVE STREET, 6 AVENUE between WEST HOUSTON STREET and WEST 3 STREET, 6 AVENUE between WEST 4 STREET and WEST 9 STREET, 7 AVENUE SOUTH between CHARLES STREET and PERRY STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10012, 10014"
+677469,Theater Load in and Load Outs,10/23/2022 12:01:00 AM,10/23/2022 11:58:00 PM,10/18/2022 04:46:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+677466,Theater Load in and Load Outs,10/22/2022 12:01:00 AM,10/22/2022 11:59:00 PM,10/18/2022 04:19:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+677455,Shooting Permit,10/21/2022 08:00:00 AM,10/21/2022 11:00:00 PM,10/18/2022 03:35:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE FRONT PARKWAY between BEACH 101 STREET and BEACH 95 STREET, BEACH 95 STREET between SHORE FRONT PARKWAY and ROCKAWAY BEACH BOULEVARD",Queens,14,100,Film,Feature,United States of America,"11693, 11694"
+677448,Theater Load in and Load Outs,10/25/2022 07:00:00 AM,10/25/2022 07:00:00 PM,10/18/2022 03:09:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+677443,Shooting Permit,10/21/2022 01:00:00 PM,10/22/2022 02:00:00 AM,10/18/2022 03:02:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between MCGUINNESS BOULEVARD and NEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677435,Shooting Permit,10/27/2022 06:00:00 AM,10/27/2022 11:00:00 PM,10/18/2022 02:39:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677432,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 11:00:00 PM,10/18/2022 02:36:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between CYPRESS AVENUE and WYCKOFF AVENUE, CENTRE STREET between CYPRESS AVENUE and WYCKOFF AVENUE, CYPRESS AVENUE between CENTRE STREET and GEORGE STREET, CYPRESS AVENUE between GEORGE STREET and STEPHEN STREET, MYRTLE AVENUE between WYCKOFF AVENUE and MADISON STREET, MYRTLE AVENUE between MADISON STREET and PUTNAM AVENUE, MYRTLE AVENUE between PUTNAM AVENUE and CORNELIA STREET, MADISON STREET between MYRTLE AVENUE and WYCKOFF AVENUE",Queens,5,104,Television,Cable-episodic,United States of America,11385
+677430,Theater Load in and Load Outs,10/23/2022 12:01:00 AM,10/24/2022 11:59:00 PM,10/18/2022 02:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677429,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 05:00:00 PM,10/18/2022 02:26:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677428,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 10:00:00 PM,10/18/2022 02:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677427,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 10:00:00 PM,10/18/2022 02:21:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between CYPRESS AVENUE and WYCKOFF AVENUE, CENTRE STREET between CYPRESS AVENUE and WYCKOFF AVENUE, CYPRESS AVENUE between CENTRE STREET and GEORGE STREET, CYPRESS AVENUE between GEORGE STREET and STEPHEN STREET, MYRTLE AVENUE between WYCKOFF AVENUE and MADISON STREET, MYRTLE AVENUE between MADISON STREET and PUTNAM AVENUE, MYRTLE AVENUE between PUTNAM AVENUE and CORNELIA STREET, MADISON STREET between MYRTLE AVENUE and WYCKOFF AVENUE",Queens,5,104,Television,Cable-episodic,United States of America,11385
+677426,Shooting Permit,10/21/2022 08:00:00 AM,10/22/2022 12:00:00 AM,10/18/2022 02:18:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+677416,Theater Load in and Load Outs,10/31/2022 12:01:00 AM,10/31/2022 11:59:00 PM,10/18/2022 01:12:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677415,Shooting Permit,10/27/2022 08:00:00 AM,10/27/2022 11:00:00 PM,10/18/2022 01:11:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HICKS STREET and BOERUM PLACE, CLINTON STREET between STATE STREET and AMITY STREET",Brooklyn,"2, 6","76, 84",Television,Cable-episodic,United States of America,11201
+677405,Theater Load in and Load Outs,10/30/2022 12:01:00 AM,10/30/2022 11:59:00 PM,10/18/2022 12:17:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677401,Shooting Permit,11/01/2022 07:00:00 AM,11/01/2022 09:00:00 PM,10/18/2022 12:12:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677398,Shooting Permit,10/31/2022 07:00:00 AM,10/31/2022 09:00:00 PM,10/18/2022 12:08:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677394,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 09:00:00 PM,10/18/2022 12:01:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677393,Shooting Permit,10/28/2022 06:00:00 AM,10/28/2022 11:00:00 PM,10/18/2022 12:00:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 24 AVENUE and DITMARS BOULEVARD, DITMARS BOULEVARD between SHORE BOULEVARD and 19 STREET, 22 DRIVE between 19 STREET and 21 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11105
+677391,Shooting Permit,10/25/2022 07:00:00 AM,10/25/2022 09:00:00 PM,10/18/2022 11:56:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677390,Theater Load in and Load Outs,10/29/2022 12:01:00 AM,10/29/2022 11:59:00 PM,10/18/2022 11:53:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677389,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 09:00:00 PM,10/18/2022 11:50:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677387,Shooting Permit,10/21/2022 07:00:00 AM,10/21/2022 09:00:00 PM,10/18/2022 11:36:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677381,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/29/2022 06:00:00 AM,10/18/2022 11:15:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET,Manhattan,"5, 6",13,Theater,Theater,United States of America,10010
+677376,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 09:00:00 PM,10/18/2022 11:05:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 3 AVENUE and 4 AVENUE, GRAHAM AVENUE between MCKIBBIN STREET and BOERUM STREET, GRATTAN STREET between KNICKERBOCKER AVENUE and MORGAN AVENUE, MORGAN AVENUE between GRATTAN STREET and HARRISON PLACE",Brooklyn,"1, 6","78, 90",WEB,Not Applicable,United States of America,"11206, 11215, 11237"
+677375,Theater Load in and Load Outs,11/10/2022 06:00:00 AM,11/10/2022 11:59:00 PM,10/18/2022 11:01:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 13 STREET between BROADWAY and 4 AVENUE,Manhattan,2,9,Theater,Theater,United States of America,10003
+677371,Shooting Permit,10/21/2022 09:00:00 AM,10/21/2022 11:59:00 PM,10/18/2022 10:47:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","EDISON AVENUE between PHILIP AVENUE and RANDALL AVENUE, EDISON AVENUE between RANDALL AVENUE and SCHLEY AVENUE, RANDALL AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, EAST TREMONT AVENUE between RANDALL AVENUE and PHILIP AVENUE, EAST TREMONT AVENUE between BARKLEY AVENUE and LAFAYETTE AVENUE, EAST TREMONT AVENUE between LAFAYETTE AVENUE and PHILIP AVENUE, LAFAYETTE AVENUE between REVERE AVENUE and EAST TREMONT AVENUE, LAFAYETTE AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, E Tremont Ave between SCHLEY AVENUE and CROSS BRONX EXPRESSWAY EXT, Cross Bronx Expressway Ext between E Tremont Ave and Calhoun Ave",Bronx,10,45,Television,Cable-episodic,United States of America,10465
+677370,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 08:00:00 PM,10/18/2022 10:45:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+677369,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 08:00:00 PM,10/18/2022 10:43:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 19 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,"10001, 10011"
+677368,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 08:00:00 PM,10/18/2022 10:43:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+677366,Shooting Permit,10/21/2022 09:00:00 AM,10/22/2022 12:00:00 AM,10/18/2022 10:30:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 10 AVENUE and 12 AVENUE, WEST 51 STREET between 10 AVENUE and 9 AVENUE, WEST 50 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,10019
+677360,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 11:00:00 PM,10/18/2022 09:58:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 26 STREET and EAST 23 STREET, EAST 25 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 25 STREET and EAST 24 STREET, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 6","13, 14",Television,Episodic series,United States of America,"10010, 10016"
+677356,Shooting Permit,10/20/2022 10:00:00 AM,10/21/2022 02:00:00 AM,10/18/2022 09:46:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH END AVENUE between VESEY STREET and MURRAY STREET, NORTH END AVENUE between MURRAY STREET and WARREN STREET, VESEY PL between NORTH END AVENUE and RIVER TERRACE, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between WEST STREET and GREENWICH STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and WATTS STREET, DEBROSSES STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between DEBROSSES STREET and CANAL STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+677355,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 08:00:00 PM,10/18/2022 09:43:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+677349,Shooting Permit,10/22/2022 07:00:00 AM,10/22/2022 08:00:00 PM,10/18/2022 09:15:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVENUE between MYRTLE AVENUE and PARK AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+677348,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 08:00:00 PM,10/18/2022 09:15:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between SPRING STREET and PRINCE STREET, BOWERY between SPRING STREET and PRINCE STREET, COMMERCE STREET between RICHARDS STREET and COLUMBIA STREET",Manhattan,"2, 3, 6","5, 76",Still Photography,Not Applicable,United States of America,"10002, 10012, 11231"
+677343,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 10:00:00 PM,10/18/2022 08:12:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 6 AVENUE and 8 AVENUE, 8 AVENUE between WEST 20 STREET and WEST 22 STREET, 7 AVENUE between WEST 20 STREET and WEST 22 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+677339,Shooting Permit,10/20/2022 01:00:00 AM,10/20/2022 01:00:00 PM,10/18/2022 07:12:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+677335,Shooting Permit,10/21/2022 01:00:00 PM,10/21/2022 10:00:00 PM,10/17/2022 11:01:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","20 AVENUE between 85 STREET and 86 STREET, 86 STREET between 19 AVENUE and 21 AVENUE, 20 AVENUE between 86 STREET and BATH AVENUE",Brooklyn,11,62,Commercial,Commercial,United States of America,11214
+677313,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 11:00:00 PM,10/17/2022 07:07:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 43 STREET and 44 STREET, 43 STREET between 47 AVENUE and QUEENS BOULEVARD, 43 STREET between 47 AVENUE and GREENPOINT AVENUE, 44 STREET between 47 AVENUE and QUEENS BOULEVARD, GREENPOINT AVENUE between 42 STREET and 45 STREET, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104, 11377"
+677295,Shooting Permit,10/20/2022 09:30:00 AM,10/20/2022 05:00:00 PM,10/17/2022 04:46:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","28 ROAD between 139 STREET and 28 AVENUE, 28 AVENUE between 141 STREET and UNION STREET, UNION STREET between 28 AVENUE and 26 AVENUE",Queens,7,109,Television,Cable-episodic,United States of America,11354
+677291,Shooting Permit,11/10/2022 06:00:00 AM,11/11/2022 06:00:00 PM,10/17/2022 04:20:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 26 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,5,13,Television,News,United States of America,10010
+677277,Theater Load in and Load Outs,10/18/2022 07:00:00 AM,10/18/2022 12:00:00 PM,10/17/2022 03:40:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+677275,Theater Load in and Load Outs,10/30/2022 12:01:00 AM,11/01/2022 06:00:00 AM,10/17/2022 03:32:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+677273,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 11:59:00 PM,10/17/2022 03:29:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222, 11378"
+677272,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 08:00:00 PM,10/17/2022 03:28:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+677271,Theater Load in and Load Outs,10/21/2022 07:00:00 AM,10/21/2022 07:00:00 PM,10/17/2022 03:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+677270,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 10:00:00 PM,10/17/2022 03:24:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+677263,Shooting Permit,10/19/2022 08:00:00 AM,10/19/2022 11:00:00 PM,10/17/2022 03:01:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 56 STREET, WEST 51 STREET between MADISON AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10020, 10022, 10111"
+677260,Shooting Permit,10/25/2022 06:00:00 AM,10/25/2022 11:00:00 PM,10/17/2022 02:56:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between NORMAN AVENUE and NASSAU AVENUE, NASSAU AVENUE between DIAMOND STREET and RUSSELL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677259,Shooting Permit,11/01/2022 04:00:00 AM,11/07/2022 03:00:00 PM,10/17/2022 02:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 67 STREET and WEST 69 STREET,Manhattan,"64, 7","20, 22",Television,Variety,United States of America,10023
+677258,Shooting Permit,11/05/2022 12:01:00 AM,11/06/2022 07:00:00 PM,10/17/2022 02:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 135 STREET between ALEXANDER AVENUE and LINCOLN AVENUE,Bronx,1,40,Television,Variety,United States of America,10454
+677257,Shooting Permit,11/05/2022 12:01:00 AM,11/06/2022 07:00:00 PM,10/17/2022 02:51:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 61 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Television,Variety,United States of America,10065
+677256,Shooting Permit,11/05/2022 12:01:00 AM,11/06/2022 07:00:00 PM,10/17/2022 02:51:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE, HANSON PLACE between ASHLAND PLACE and ST FELIX STREET, FLATBUSH AVENUE between 4 AVENUE and LAFAYETTE AVENUE",Brooklyn,2,"78, 84, 88",Television,Variety,United States of America,11217
+677243,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 11:00:00 PM,10/17/2022 02:22:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between COOK STREET and JOHNSON AVENUE, VARET STREET between BUSHWICK AVENUE and WHITE STREET, PARK STREET between BROADWAY and BEAVER STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, VARET STREET between WHITE STREET and BOGART STREET, COOK STREET between WHITE STREET and BOGART STREET, BOGART STREET between VARET STREET and COOK STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11206
+677240,Theater Load in and Load Outs,10/23/2022 12:01:00 AM,10/23/2022 11:59:00 PM,10/17/2022 01:55:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+677234,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 08:00:00 PM,10/17/2022 01:40:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 STREET between 6 AVENUE and 7 AVENUE, WEST 47 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 46 STREET and WEST 47 STREET",Manhattan,"5, 7","18, 72",Commercial,Commercial,United States of America,"10036, 11220"
+677232,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/28/2022 11:59:00 PM,10/17/2022 01:26:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677230,Shooting Permit,10/22/2022 09:00:00 AM,10/23/2022 12:00:00 AM,10/17/2022 01:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between IRVING PLACE and PARK AVENUE SOUTH, IRVING PLACE between EAST 17 STREET and EAST 18 STREET",Manhattan,"5, 6",13,Film,Feature,United States of America,10003
+677227,Shooting Permit,10/24/2022 06:00:00 AM,10/24/2022 11:00:00 PM,10/17/2022 01:14:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11249
+677225,Shooting Permit,10/19/2022 01:00:00 PM,10/20/2022 01:00:00 AM,10/17/2022 01:10:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 8 STREET between MACDOUGAL STREET and 5 AVENUE, EAST 8 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between WEST 8 STREET and WEST 9 STREET, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between WEST 10 STREET and WEST 9 STREET, 5 AVENUE between WEST 8 STREET and WASHINGTON SQUARE NORTH, WASHINGTON SQUARE NORTH between 5 AVENUE and UNIVERSITY PLACE, WASHINGTON SQUARE NORTH between MACDOUGAL STREET and 5 AVENUE, WASHINGTON SQ W between WAVERLY PLACE and WEST 4 STREET, WEST WASHINGTON PLACE between 6 AVENUE and WASHINGTON SQUARE WEST",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10003, 10011, 10012"
+677218,Theater Load in and Load Outs,10/24/2022 12:01:00 AM,10/25/2022 11:59:00 PM,10/17/2022 12:20:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+677217,Theater Load in and Load Outs,10/21/2022 12:01:00 AM,10/22/2022 11:59:00 PM,10/17/2022 12:14:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+677212,Shooting Permit,10/19/2022 11:00:00 AM,10/19/2022 11:59:00 PM,10/17/2022 11:59:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 39 STREET and EAST 40 STREET, THIRD AVENUE between EAST 38 STREET and EAST 39 STREET, EAST 40 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 39 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, PARK AVENUE between EAST 38 STREET and EAST 39 STREET, PARK AVENUE between EAST 36 STREET and EAST 38 STREET, EAST 36 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017, 10158"
+677210,Theater Load in and Load Outs,10/19/2022 12:01:00 AM,10/19/2022 11:59:00 PM,10/17/2022 11:51:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+677209,Theater Load in and Load Outs,10/28/2022 12:01:00 AM,10/28/2022 11:59:00 PM,10/17/2022 11:51:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+677208,Shooting Permit,10/18/2022 09:00:00 AM,10/18/2022 09:00:00 PM,10/17/2022 11:50:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","CANAL STREET between WASHINGTON STREET and RENWICK STREET, SPRING STREET between RENWICK STREET and WASHINGTON STREET, SPRING STREET between WASHINGTON STREET and WEST STREET, GREENWICH STREET between SPRING STREET and VANDAM STREET, GREENWICH STREET between SPRING STREET and CANAL STREET, WASHINGTON STREET between CANAL STREET and SPRING STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET",Manhattan,"1, 2",1,Television,Cable-episodic,United States of America,"10013, 10014"
+677205,Shooting Permit,10/21/2022 11:00:00 AM,10/22/2022 02:00:00 AM,10/17/2022 11:45:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 47 STREET, PARK AVENUE between EAST 47 STREET and EAST 46 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10167, 10171, 10172, 10177"
+677201,Theater Load in and Load Outs,10/26/2022 12:01:00 AM,10/27/2022 11:59:00 PM,10/17/2022 11:25:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677202,Shooting Permit,10/21/2022 07:00:00 AM,10/21/2022 09:00:00 PM,10/17/2022 11:25:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677199,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 09:00:00 PM,10/17/2022 11:25:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+677196,Theater Load in and Load Outs,10/22/2022 12:01:00 AM,10/23/2022 06:00:00 AM,10/17/2022 11:18:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677194,Theater Load in and Load Outs,10/25/2022 12:01:00 AM,10/25/2022 11:59:00 PM,10/17/2022 11:17:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677190,Shooting Permit,10/20/2022 08:00:00 AM,10/20/2022 10:00:00 PM,10/17/2022 10:57:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",15 AVENUE between 138 STREET and 143 STREET,Queens,7,109,Television,Cable-episodic,United States of America,11357
+677188,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 06:00:00 PM,10/17/2022 10:53:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677184,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 08:00:00 PM,10/17/2022 10:40:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 47 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 46 STREET and WEST 47 STREET",Manhattan,5,18,Commercial,Commercial,United States of America,10036
+677183,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 07:00:00 PM,10/17/2022 10:35:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET STREET between CHERRY STREET and MONROE STREET, CHERRY STREET between MARKET STREET and PIKE STREET, BUTLER STREET between NEVINS STREET and BOND STREET, GRAND STREET between LUDLOW STREET and ESSEX STREET, LUDLOW STREET between GRAND STREET and HESTER STREET",Brooklyn,"3, 6","5, 7, 76",WEB,Not Applicable,United States of America,"10002, 11217"
+677182,Theater Load in and Load Outs,10/21/2022 12:01:00 AM,10/21/2022 11:59:00 PM,10/17/2022 10:31:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677180,Shooting Permit,10/21/2022 07:00:00 AM,10/21/2022 11:00:00 PM,10/17/2022 10:29:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+677163,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 11:00:00 PM,10/17/2022 09:21:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between RECTOR STREET and JOSEPH P WARD STREET, GREENWICH STREET between CARLISLE STREET and EDGAR STREET, NORTH MOORE STREET between WEST SIDE HIGHWAY and GREENWICH STREET, WEST SIDE HIGHWAY between NORTH MOORE STREET and CHAMBERS STREET, TRINITY PLACE between RECTOR STREET and THAMES STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10013"
+677162,Shooting Permit,10/18/2022 08:00:00 AM,10/18/2022 11:00:00 PM,10/17/2022 09:21:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 79 STREET between 5 AVENUE and MADISON AVENUE, CENTRAL PARK NORTH between MALCOLM X BOULEVARD and DUKE ELLINGTON CIRCLE, 5 AVENUE between DUKE ELLINGTON CIRCLE and EAST 109 STREET",Manhattan,"10, 11, 64, 8","19, 22, 23, 28",Still Photography,Not Applicable,United States of America,"00083, 10023, 10024, 10025, 10026, 10029, 10065, 10075"
+677161,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 10:00:00 PM,10/17/2022 09:19:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between CYPRESS AVENUE and WYCKOFF AVENUE, HALSEY STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, KNICKERBOCKER AVENUE between HANCOCK STREET and ELDERT STREET, WILSON AVENUE between WEIRFIELD STREET and HALSEY STREET, WEIRFIELD STREET between WILSON AVENUE and CENTRAL AVENUE, CENTRAL AVENUE between WEIRFIELD STREET and HALSEY STREET, CYPRESS AVENUE between HANCOCK STREET and WEIRFIELD STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11385"
+677156,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 10:00:00 PM,10/17/2022 08:13:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRANITE AVENUE between RICHMOND TERRACE and LA SALLE STREET, PORT RICHMOND AVENUE between RICHMOND TERRACE and HARRISON AVENUE, GROVE AVENUE between MAPLE AVENUE and PORT RICHMOND AVENUE",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10303, 10310"
+677151,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 08:00:00 PM,10/17/2022 07:47:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","RESERVOIR OVAL between PUTNAM PLACE and RESERVOIR PLACE, PUTNAM PLACE between RESERVOIR OVAL and EAST GUN HILL ROAD, BAINBRIDGE AVENUE between EAST 210 STREET and EAST 208 STREET",Bronx,7,52,Commercial,Industrial/Corporate,United States of America,10467
+677148,Theater Load in and Load Outs,10/19/2022 12:01:00 AM,10/20/2022 02:00:00 AM,10/17/2022 03:36:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+677114,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 09:00:00 PM,10/16/2022 01:15:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Commercial,Commercial,United States of America,10474
+677113,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 09:00:00 PM,10/16/2022 01:11:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Commercial,Commercial,United States of America,10474
+676918,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 07:00:00 PM,10/14/2022 09:27:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",SHORE FRONT PARKWAY between BEACH 90 STREET and BEACH 84 STREET,Queens,14,100,Still Photography,Not Applicable,United States of America,"11692, 11693, 11694"
+676900,Shooting Permit,10/24/2022 08:00:00 AM,10/25/2022 12:00:00 AM,10/14/2022 05:57:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH END AVENUE between VESEY STREET and MURRAY STREET, NORTH END AVENUE between MURRAY STREET and WARREN STREET, VESEY PL between NORTH END AVENUE and RIVER TERRACE, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between WEST STREET and GREENWICH STREET, WEST STREET between CHAMBERS STREET and LAIGHT STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, VESEY STREET between NORTH END AVENUE and NORTH END WAY",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10281, 10282"
+676895,Shooting Permit,10/26/2022 07:00:00 AM,10/26/2022 11:00:00 PM,10/14/2022 05:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676891,Shooting Permit,10/21/2022 10:00:00 AM,10/22/2022 02:00:00 AM,10/14/2022 05:37:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH END AVENUE between VESEY STREET and MURRAY STREET, NORTH END AVENUE between MURRAY STREET and WARREN STREET, VESEY PL between NORTH END AVENUE and RIVER TERRACE, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between WEST STREET and GREENWICH STREET, WEST STREET between CHAMBERS STREET and LAIGHT STREET, HUBERT STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+676883,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/14/2022 04:40:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRESCENT STREET between DITMARS BOULEVARD and 21 AVENUE, 27 STREET between DITMARS BOULEVARD and 21 AVENUE, 21ST ST between 21 AVENUE and 20 AVENUE, 23 AVENUE between CRESCENT STREET and 27 STREET, 23 AVENUE between 27 STREET and 33 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11105
+676881,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 11:30:00 PM,10/14/2022 04:33:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 42 STREET and WEST 43 STREET, 6 AVENUE between WEST 39 STREET and WEST 41 STREET, WEST 41 STREET between BROADWAY and 6 AVENUE, WEST 43 STREET between BROADWAY and 6 AVENUE, BROADWAY between WEST 40 STREET and WEST 41 STREET, EAST 48 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 47 STREET and EAST 49 STREET, EAST 47 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 36 STREET and EAST 37 STREET, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, EAST 36 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 35 STREET and EAST 36 STREET, EAST 35 STREET between MADISON AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017, 10018, 10036"
+676876,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 08:00:00 PM,10/14/2022 03:48:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, DECATUR STREET between IRVING AVENUE and WYCKOFF AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+676874,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 09:00:00 PM,10/14/2022 03:38:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between TROY AVENUE and SCHENECTADY AVENUE, ATLANTIC AVENUE between TROY AVENUE and SCHENECTADY AVENUE, SCHENECTADY AVENUE between DEAN STREET and ATLANTIC AVENUE, ATLANTIC AVENUE between ALBANY AVENUE and TROY AVENUE, PACIFIC STREET between ALBANY AVENUE and TROY AVENUE, TROY AVENUE between ATLANTIC AVENUE and PACIFIC STREET, 65 STREET between CYPRESS HILLS STREET and 78 AVENUE, CYPRESS HILLS STREET between 65 STREET and COOPER AVENUE, COOPER AVENUE between 64 LANE and 65 STREET, 78 AVENUE between 64 PLACE and 65 STREET, 64 LANE between COOPER AVENUE and 78 AVENUE",Brooklyn,"3, 5, 8","104, 77, 81",Television,Episodic series,United States of America,"11213, 11385"
+676869,Shooting Permit,10/19/2022 09:00:00 AM,10/19/2022 11:00:00 PM,10/14/2022 03:14:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 30 STREET between 2 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, 3 AVENUE between EAST 29 STREET and EAST 30 STREET, 3 AVENUE between EAST 29 STREET and EAST 28 STREET, EAST 29 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+676868,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 11:00:00 PM,10/14/2022 03:14:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676866,Shooting Permit,10/17/2022 08:30:00 AM,10/17/2022 09:00:00 PM,10/14/2022 03:12:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 22 STREET and WEST 23 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+676863,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 11:00:00 PM,10/14/2022 03:09:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676862,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 11:00:00 PM,10/14/2022 03:09:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between HURON STREET and PAIDGE AVENUE, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676861,Shooting Permit,10/20/2022 08:00:00 AM,10/20/2022 11:00:00 PM,10/14/2022 03:08:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST BROADWAY between CATHERINE STREET and MARKET STREET,Manhattan,"3, 6","13, 17, 5",WEB,Not Applicable,United States of America,"10002, 10013, 10016, 10038"
+676859,Shooting Permit,10/18/2022 05:00:00 PM,10/18/2022 11:00:00 PM,10/14/2022 03:04:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",41 ST between QUEENS BOULEVARD and 43 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11104
+676857,Shooting Permit,10/18/2022 11:00:00 AM,10/18/2022 11:59:00 PM,10/14/2022 02:46:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST HOUSTON STREET between WOOSTER STREET and LAGUARDIA PLACE, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WASHINGTON SQUARE NORTH between 5 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE WEST between WAVERLY PLACE and WEST 4 STREET, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6TH AVE between MINETTA LANE and WEST HOUSTON ST, LEROY STREET between BLEEKER STREET and BEDFORD STREET, BLEEKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BLEEKER STREET and BEDFORD STREET",Manhattan,2,"1, 6",Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+676850,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 10:00:00 PM,10/14/2022 02:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORT RICHMOND AVENUE between HARRISON AVENUE and ANN STREET, GROVE AVENUE between PORT RICHMOND AVENUE and MAPLE AVENUE, PORT RICHMOND AVENUE between RICHMOND TERRACE and ANN STREET, ANN STREET between PORT RICHMOND AVENUE and PARK AVENUE, HEBERTON AVENUE between ANN STREET and RICHMOND TERRACE, VREELAND STREET between COTTAGE PLACE and HEBERTON AVENUE, HEBERTON AVENUE between VREELAND STREET and BENNETT STREET, BENNETT STREET between HEBERTON AVENUE and COTTAGE PLACE, HEBERTON AVENUE between BENNETT STREET and ANN STREET, BENNETT STREET between PARK AVENUE and HEBERTON AVENUE, PARK AVENUE between VREELAND STREET and BENNETT STREET, BENNETT STREET between PORT RICHMOND AVENUE and PARK AVENUE",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10310"
+676848,Shooting Permit,10/18/2022 11:00:00 AM,10/18/2022 04:00:00 PM,10/14/2022 02:19:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between MARKET STREET and PIKE STREET,Manhattan,3,"5, 7",WEB,Not Applicable,United States of America,"10002, 10038"
+676847,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 07:00:00 PM,10/14/2022 02:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRATFORD ROAD between CATON AVENUE and CHURCH AVENUE,Brooklyn,14,70,Still Photography,Not Applicable,United States of America,11218
+676846,Rigging Permit,10/18/2022 05:30:00 PM,10/18/2022 09:30:00 PM,10/14/2022 02:06:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+676843,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 09:00:00 PM,10/14/2022 01:45:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 7 STREET between ROEBLING STREET and BEDFORD AVENUE, LORIMER STREET between BEDFORD AVENUE and BAYARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+676839,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 08:00:00 PM,10/14/2022 01:23:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 23 STREET and EAST 22 STREET, WEST 24 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,13,WEB,Not Applicable,United States of America,10010
+676832,Theater Load in and Load Outs,10/19/2022 12:01:00 AM,10/20/2022 06:00:00 AM,10/14/2022 01:07:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676829,Theater Load in and Load Outs,10/18/2022 12:01:00 AM,10/18/2022 11:59:00 PM,10/14/2022 12:44:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676821,Shooting Permit,10/19/2022 08:00:00 AM,10/19/2022 11:00:00 PM,10/14/2022 12:05:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between LUDLOW STREET and ESSEX STREET, LUDLOW STREET between GRAND STREET and HESTER STREET",Manhattan,3,7,WEB,Not Applicable,United States of America,10002
+676820,Shooting Permit,10/18/2022 08:00:00 AM,10/18/2022 11:00:00 PM,10/14/2022 11:58:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between MCGUINESS BOULEVARD and PROVOST STREET,Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+676818,Shooting Permit,10/20/2022 12:00:00 PM,10/21/2022 03:00:00 AM,10/14/2022 11:56:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 92 STREET between ROCKAWAY BEACH BOULEVARD and HOLLAND AVENUE, BEACH 92 STREET between ROCKAWAY BEACH BOULEVARD and ROCKAWAY FREEWAY, ROCKAWAY FREEWAY between BEACH 92 STREET and BEACH 94 STREET, BEACH 94 STREET between ROCKAWAY BEACH BOULEVARD and SHORE FRONT PARKWAY, ROCKAWAY BEACH BOULEVARD between BEACH 105 STREET and BEACH 108 STREET, BEACH 105 STREET between ROCKAWAY BEACH BOULEVARD and SHORE FRONT PARKWAY, BEACH 108 STREET between SHORE FRONT PARKWAY and ROCKAWAY BEACH BOULEVARD, ROCKAWAY BEACH BOULEVARD between BEACH 108 STREET and BEACH 109 STREET, ROCKAWAY BEACH BOULEVARD between BEACH 109 STREET and BEACH 110 STREET, BEACH 109 STREET between ROCKAWAY BEACH BOULEVARD and ROCKAWAY BEACH DRIVE, BEACH 109 STREET between ROCKAWAY BEACH DRIVE and SHORE FRONT PARKWAY, ROCKAWAY BEACH DRIVE between BEACH 108 STREET and BEACH 109 STREET",Queens,14,100,Television,Episodic series,United States of America,"11693, 11694"
+676817,Shooting Permit,10/16/2022 05:00:00 PM,10/17/2022 05:00:00 AM,10/14/2022 11:52:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 77 STREET and WEST 73 STREET, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 81 STREET and WEST 77 STREET, BROADWAY between WEST 78 STREET and WEST 82 STREET, WEST 79 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 81 STREET between COLUMBUS AVENUE and CPW, CENTRAL PARK WEST between WEST 81 STREET and WEST 77 STREET, WEST 75 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 77 STREET between COLUMBUS AVENUE and CPW, WEST 46 STREET between 12 AVENUE and 11 AVENUE",Manhattan,"4, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10023, 10024, 10036"
+676812,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 09:00:00 PM,10/14/2022 11:37:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT AVENUE between HOWARD PLACE and PROSPECT PARK WEST, PROPSECT PARK SW between 11TH AVENUE and PARK CIRCLE, PARKSIDE AVE between PARK CIRCLE and PARADE PLACE",Brooklyn,"14, 55, 7","70, 72, 78",Television,Episodic series,United States of America,"11215, 11218, 11226"
+676810,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 08:00:00 PM,10/14/2022 11:34:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 21 STREET and 11 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+676806,Shooting Permit,10/20/2022 10:00:00 AM,10/21/2022 02:00:00 AM,10/14/2022 11:11:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 28 STREET, WEST 25 STREET between 10 AVENUE and 9 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+676805,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 11:30:00 PM,10/14/2022 11:05:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET, BROADWAY between DRIGGS AVENUE and BEDFORD AVENUE",Brooklyn,1,90,WEB,Not Applicable,United States of America,11211
+676781,Shooting Permit,10/17/2022 08:00:00 AM,10/17/2022 11:30:00 PM,10/14/2022 09:43:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET, BROADWAY between DRIGGS AVENUE and BEDFORD AVENUE",Brooklyn,1,90,WEB,Not Applicable,United States of America,11211
+676762,Shooting Permit,10/20/2022 08:30:00 AM,10/20/2022 08:30:00 PM,10/13/2022 09:04:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",LA GUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,"10011, 10012"
+676759,Shooting Permit,11/24/2022 12:01:00 AM,11/24/2022 06:00:00 PM,10/13/2022 08:03:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+676758,Shooting Permit,11/23/2022 12:01:00 AM,11/23/2022 11:59:00 PM,10/13/2022 07:53:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+676757,Shooting Permit,11/22/2022 06:00:00 AM,11/22/2022 11:59:00 PM,10/13/2022 07:47:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+676753,Shooting Permit,10/21/2022 09:00:00 AM,10/22/2022 12:00:00 AM,10/13/2022 05:27:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","CPS between 6 AVENUE and 7 AVENUE, CPS between 7 AVENUE and COLUMBUS CIRCLE",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,10019
+676752,Shooting Permit,10/19/2022 08:00:00 AM,10/19/2022 11:00:00 PM,10/13/2022 05:18:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 3 STREET between SULLIVAN STREET and 6 AVENUE,Manhattan,2,6,Film,Feature,United States of America,10012
+676747,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 09:00:00 PM,10/13/2022 04:43:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER MARKET PLACE between BROOME STREET and GRAND STREET, BROOME STREET between CENTRE STREET and MULBERRY STREET, BROOME STREET between BROADWAY and LAFAYETTE STREET, BROOME STREET between MULBERRY STREET and MOTT STREET, CENTRE STREET between BROOME STREET and GRAND STREET, CENTRE STREET between GRAND STREET and HESTER STREET, GRAND STREET between CENTRE MARKET PLACE and MOTT STREET, MOTT STREET between KENMARE STREET and BROOME STREET, LAFAYETTE STREET between BROOME STREET and CANAL STREET",Manhattan,2,5,Television,Cable-episodic,United States of America,"10012, 10013"
+676743,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 11:00:00 PM,10/13/2022 04:29:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676741,Shooting Permit,10/24/2022 07:00:00 AM,10/24/2022 07:00:00 PM,10/13/2022 04:26:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 43 STREET and WEST 42 STREET, WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 47 STREET and WEST 46 STREET",Manhattan,5,"14, 18",Still Photography,Not Applicable,United States of America,10036
+676735,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 07:00:00 PM,10/13/2022 04:02:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676732,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 08:00:00 PM,10/13/2022 03:42:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, IRVING AVENUE between SCHAEFFER STREET and DECATUR STREET, WYCKOFF AVENUE between NORMAN STREET and SUMMERFIELD STREET, NORMAN STREET between CYPRESS AVENUE and WYCKOFF AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+676727,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/13/2022 03:22:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between 6 AVENUE and SULLIVAN STREET, 6 AVENUE between WEST HOUSTON STREET and BLEECKER STREET, 6 AVENUE between BLEECKER STREET and WEST 3 STREET, 6 AVENUE between WEST 4 STREET and WEST 9 STREET, WEST HOUSTON STREET between 6 AVENUE and VARICK STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10012, 10014"
+676724,Shooting Permit,10/19/2022 08:00:00 AM,10/19/2022 11:00:00 PM,10/13/2022 03:07:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+676721,Shooting Permit,10/20/2022 08:00:00 AM,10/20/2022 11:00:00 PM,10/13/2022 02:53:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 64 STREET between PARK AVENUE and MADISON AVENUE, EAST 65 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, PARK AVENUE between EAST 82 STREET and EAST 83 STREET, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and COLUMBUS CIRCLE",Manhattan,"5, 64, 8","18, 19, 22",Film,Feature,United States of America,"10019, 10028, 10065"
+676718,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 11:00:00 PM,10/13/2022 02:50:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 47 STREET, PARK AVENUE between EAST 47 STREET and EAST 46 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10167, 10171, 10172, 10177"
+676712,Shooting Permit,10/26/2022 08:00:00 AM,10/28/2022 11:59:00 PM,10/13/2022 02:27:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Television,Special/Awards Show,United States of America,10023
+676711,Shooting Permit,10/16/2022 06:00:00 AM,10/16/2022 07:00:00 PM,10/13/2022 02:23:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 78 STREET and WEST 79 STREET, RIVERSIDE DRIVE between WEST 79 STREET and WEST 80 STREET, RIVERSIDE DRIVE between WEST 80 STREET and WEST 81 STREET",Manhattan,7,20,Music Video,Signed Artist,United States of America,10024
+676709,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 09:00:00 PM,10/13/2022 02:19:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+676707,Theater Load in and Load Outs,10/18/2022 06:00:00 AM,10/18/2022 11:59:00 PM,10/13/2022 02:16:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676698,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 11:00:00 PM,10/13/2022 01:35:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DUPONT STREET and DEAD END, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676697,Theater Load in and Load Outs,10/17/2022 12:01:00 AM,10/17/2022 11:59:00 PM,10/13/2022 01:31:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676696,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/13/2022 01:27:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 65 STREET between MADISON AVENUE and PARK AVENUE, EAST 66 STREET between MADISON AVENUE and PARK AVENUE, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 65 STREET and EAST 71 STREET, MADISON AVENUE between EAST 60 STREET and EAST 61 STREET, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+676694,Shooting Permit,10/14/2022 09:00:00 AM,10/15/2022 02:00:00 AM,10/13/2022 01:24:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 22 STREET and WEST 24 STREET, WEST 24 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+676685,Theater Load in and Load Outs,10/26/2022 12:01:00 AM,11/09/2022 11:59:00 PM,10/13/2022 12:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676682,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 11:00:00 PM,10/13/2022 11:57:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 43 AVENUE and QUEENS BOULEVARD, 44 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 AVENUE between 44 STREET and 45 STREET, QUEENS BOULEVARD between 43 STREET and 45 STREET, 45 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 AVENUE between 45 STREET and 46 STREET, QUEENS BOULEVARD between 39 PLACE and 40 STREET, 40 STREET between 43 AVENUE and QUEENS BOULEVARD, 41 ST between 43 AVENUE and QUEENS BOULEVARD, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 40 STREET and 43 STREET, QUEENS BOULEVARD between 52 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11104, 11377"
+676680,Theater Load in and Load Outs,11/01/2022 12:01:00 AM,11/06/2022 11:59:00 PM,10/13/2022 11:52:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+676679,Theater Load in and Load Outs,10/17/2022 12:01:00 AM,10/31/2022 11:59:00 PM,10/13/2022 11:47:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+676678,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 11:00:00 PM,10/13/2022 11:45:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676672,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 10:30:00 PM,10/13/2022 11:00:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between SACKETT STREET and PRESIDENT STREET, PRESIDENT STREET between HOYT STREET and BOND STREET, UNION STREET between BOND STREET and NEVINS STREET, NEVINS STREET between SACKETT STREET and UNION STREET, UNION STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between UNION STREET and PRESIDENT STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+676670,Shooting Permit,10/17/2022 09:00:00 AM,10/17/2022 11:00:00 PM,10/13/2022 10:52:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","TENNIS COURT between EAST 18 STREET and OCEAN AVENUE, EAST 19 STREET between TENNIS COURT and ALBEMARLE ROAD, EAST 19 STREET between CHURCH AVENUE and TENNIS COURT, OCEAN AVENUE between CHURCH AVENUE and ALBEMARLE ROAD, OCEAN AVENUE between ALBERMARLE ROAD and BEVERLY ROAD, EAST 18 STREET between ALBERMARLE ROAD and BEVERLY ROAD, ALBERMARLE ROAD between EAST 18 STREET and FLATBUSH AVENUE, FLATBUSH AVENUE between REGENT PLACE and CHURCH AVENUE",Brooklyn,14,70,Television,Made for TV/mini-series,United States of America,11226
+676669,Shooting Permit,10/18/2022 08:00:00 AM,10/18/2022 07:00:00 PM,10/13/2022 10:51:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between CLEVELAND PLACE and MULBERRY STREET,Manhattan,"2, 3","1, 5, 6, 7, 9",Still Photography,Not Applicable,United States of America,"10002, 10012, 10013, 10014, 10038"
+676663,Shooting Permit,10/16/2022 09:00:00 AM,10/19/2022 11:59:00 PM,10/13/2022 10:36:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH END AVENUE between MURRAY STREET and VESEY STREET,Manhattan,1,1,Television,Not Applicable,United States of America,10282
+676662,Theater Load in and Load Outs,10/16/2022 12:01:00 AM,10/16/2022 11:59:00 PM,10/13/2022 10:27:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676658,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 10:00:00 PM,10/13/2022 10:13:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",BERGEN STREET between HOYT STREET and BOND STREET,Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11201, 11217"
+676648,Theater Load in and Load Outs,11/11/2022 12:01:00 AM,11/11/2022 11:59:00 PM,10/13/2022 09:16:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+676639,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 08:00:00 PM,10/13/2022 08:02:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 72 STREET and WEST 71 STREET, BROADWAY between WEST 71 STREET and WEST 70 STREET, WEST 71 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 74 STREET and WEST 73 STREET, WEST 73 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 72 STREET between BROADWAY and WEST END AVENUE, WEST 72 STREET between WEST END AVENUE and RIVERSIDE BOULEVARD, WEST END AVENUE between WEST 73 STREET and WEST 72 STREET",Manhattan,7,20,Television,Cable-episodic,United States of America,10023
+676631,Shooting Permit,10/19/2022 07:30:00 AM,10/19/2022 08:30:00 PM,10/12/2022 11:59:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between GRAND STREET and CANAL STREET, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, MERCER STREET between GRAND STREET and CANAL STREET",Manhattan,"1, 2",1,WEB,Not Applicable,United States of America,"10013, 10280, 10282"
+676613,Theater Load in and Load Outs,10/30/2022 08:00:00 AM,10/30/2022 11:59:00 PM,10/12/2022 07:31:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+676612,Theater Load in and Load Outs,10/17/2022 07:00:00 AM,10/17/2022 11:59:00 PM,10/12/2022 07:31:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+676611,Theater Load in and Load Outs,10/16/2022 07:00:00 AM,10/16/2022 11:59:00 PM,10/12/2022 07:31:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+676608,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 11:00:00 PM,10/12/2022 06:56:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","45 ST between 50 AVENUE and QUEENS MIDTOWN EXWY, 44 ST between 50 AVENUE and QUEENS MIDTOWN EXPRESSWAY, 50 AVENUE between 44 STREET and CELTIC AVENUE, 50 AVENUE between 45 STREET and 44 STREET, QUEENS MIDTOWN EXPRESSWAY between 43 STREET and 46 STREET, 45 STREET between 50 AVENUE and BROOKLYN QUEENS EXPRESSWAY, REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET, LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD",Queens,2,108,Television,Episodic series,United States of America,"11101, 11377, 11378"
+676596,Theater Load in and Load Outs,11/05/2022 07:00:00 AM,11/06/2022 11:59:00 PM,10/12/2022 05:06:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between FULTON STREET and DEKALB AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+676595,Theater Load in and Load Outs,10/24/2022 07:00:00 AM,10/25/2022 11:59:00 PM,10/12/2022 05:06:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between FULTON STREET and DEKALB AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+676593,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/12/2022 04:53:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+676591,Theater Load in and Load Outs,10/29/2022 12:01:00 AM,10/29/2022 11:59:00 PM,10/12/2022 04:49:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+676587,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 10:00:00 PM,10/12/2022 03:56:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between BEEKMAN STREET and FULTON STREET, GOLD STREET between SPRUCE STREET and FULTON STREET, FULTON STREET between GOLD STREET and PEARL STREET, BEEKMAN STREET between WATER STREET and SOUTH STREET, SOUTH STREET between JOHN STREET and PECK SLIP, JOHN STREET between FRONT STREET and SOUTH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,10038
+676585,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 08:00:00 PM,10/12/2022 03:34:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between MADISON AVENUE and PARK AVENUE, EAST 56 STREET between 5 AVENUE and PARK AVENUE, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 57 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,10022
+676581,Theater Load in and Load Outs,10/22/2022 12:01:00 AM,10/22/2022 11:59:00 PM,10/12/2022 03:20:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+676578,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 08:00:00 PM,10/12/2022 03:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+676560,Shooting Permit,10/21/2022 07:00:00 AM,10/21/2022 09:00:00 PM,10/12/2022 02:09:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+676558,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 09:00:00 PM,10/12/2022 02:02:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+676554,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 09:00:00 PM,10/12/2022 01:52:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+676549,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 11:59:00 PM,10/12/2022 01:15:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+676545,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 09:00:00 PM,10/12/2022 01:02:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+676537,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 11:00:00 PM,10/12/2022 12:39:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 47 STREET, PARK AVENUE between EAST 47 STREET and EAST 46 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10167, 10171, 10172, 10177"
+676531,Shooting Permit,10/15/2022 07:00:00 AM,10/15/2022 08:00:00 PM,10/12/2022 12:17:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR AVENUE between EAST 187 STREET and EAST 188 STREET,Bronx,6,48,Commercial,Commercial,United States of America,10458
+676530,Shooting Permit,10/19/2022 07:00:00 AM,10/19/2022 09:00:00 PM,10/12/2022 12:17:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 STREET between MORRIS AVENUE and FRONT AVENUE, DOCK AVENUE between 2 STREET and 3 STREET",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+676528,Shooting Permit,10/18/2022 06:30:00 AM,10/18/2022 10:00:00 PM,10/12/2022 12:11:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 47 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 47 STREET, PARK AVENUE between EAST 47 STREET and EAST 46 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10167, 10171, 10172, 10177"
+676527,Shooting Permit,10/18/2022 07:30:00 AM,10/18/2022 08:30:00 PM,10/12/2022 12:10:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 62 STREET and WEST 63 STREET,Manhattan,"64, 7","20, 22",WEB,Not Applicable,United States of America,10023
+676522,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 06:00:00 PM,10/12/2022 11:50:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","NOBLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between MILTON STREET and OAK STREET, FRANKLIN STREET between NOBLE STREET and MILTON STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676519,Theater Load in and Load Outs,10/31/2022 05:30:00 AM,11/02/2022 06:00:00 AM,10/12/2022 11:40:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676518,Theater Load in and Load Outs,10/30/2022 05:30:00 AM,10/31/2022 05:00:00 AM,10/12/2022 11:40:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676517,Theater Load in and Load Outs,10/28/2022 06:00:00 AM,10/30/2022 05:00:00 AM,10/12/2022 11:39:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676516,Theater Load in and Load Outs,10/27/2022 05:45:00 AM,10/28/2022 05:30:00 AM,10/12/2022 11:39:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676515,Theater Load in and Load Outs,10/26/2022 05:30:00 AM,10/27/2022 05:30:00 AM,10/12/2022 11:38:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676514,Theater Load in and Load Outs,10/25/2022 05:00:00 AM,10/26/2022 05:00:00 AM,10/12/2022 11:37:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676513,Theater Load in and Load Outs,10/21/2022 05:30:00 AM,10/23/2022 01:00:00 PM,10/12/2022 11:36:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676512,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 08:00:00 PM,10/12/2022 11:36:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 81","110, 94",Television,Episodic series,United States of America,"11222, 11368"
+676511,Theater Load in and Load Outs,10/18/2022 05:30:00 AM,10/20/2022 01:00:00 PM,10/12/2022 11:35:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676510,Theater Load in and Load Outs,10/16/2022 06:15:00 AM,10/17/2022 01:00:00 PM,10/12/2022 11:34:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676509,Theater Load in and Load Outs,10/15/2022 05:45:00 AM,10/16/2022 06:00:00 AM,10/12/2022 11:33:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676507,Theater Load in and Load Outs,10/13/2022 05:30:00 AM,10/15/2022 05:30:00 AM,10/12/2022 11:32:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676506,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 10:00:00 PM,10/12/2022 11:26:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+676504,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 09:00:00 PM,10/12/2022 11:12:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between WATER STREET and PEARL STREET, PEARL STREET between WALL STREET and HANOVER SQUARE, PEARL STREET between WALL STREET and PINE STREET, BEAVER STREET between PEARL STREET and HANOVER STREET, WATER STREET between WALL STREET and OLD SLIP, WATER STREET between MAIDEN LANE and WALL STREET, MAIDEN LANE between SOUTH STREET and PEARL STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10004, 10005, 10007, 10038, 10045"
+676495,Theater Load in and Load Outs,10/14/2022 12:01:00 AM,10/15/2022 11:59:00 PM,10/12/2022 10:35:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+676493,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 09:00:00 PM,10/12/2022 10:01:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+676484,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 11:00:00 PM,10/12/2022 08:15:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676483,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 08:00:00 PM,10/12/2022 08:01:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+676476,Theater Load in and Load Outs,10/14/2022 12:01:00 AM,10/15/2022 11:59:00 PM,10/12/2022 12:11:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676471,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 11:00:00 PM,10/11/2022 07:36:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 68 STREET and EAST 70 STREET",Manhattan,8,19,Film,Feature,United States of America,"10021, 10065, 10075"
+676467,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 10:00:00 PM,10/11/2022 06:43:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 68 STREET and EAST 69 STREET, EAST 68 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 68 STREET, PARK AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 67 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 63 STREET between 5 AVENUE and MADISON AVENUE, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 62 STREET, EAST 62 STREET between PARK AVENUE and 3 AVENUE, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+676466,Shooting Permit,10/14/2022 09:00:00 AM,10/15/2022 01:00:00 AM,10/11/2022 05:55:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between EASTERN PARKWAY and CROWN STREET, LINCOLN PLACE between FRANKLIN AVENUE and CLASSON AVENUE, FRANKLIN AVENUE between EASTERN PARKWAY and LINCOLN PLACE, FRANKLIN AVENUE between LINCOLN PLACE and STERLING PLACE, ST JOHNS PLACE between FRANKLIN AVENUE and CLASSON AVENUE, ST JOHNS PLACE between FRANKLIN AVENUE and ST CHARLES PLACE, STERLING PLACE between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,"55, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11216, 11225, 11238"
+676462,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 08:30:00 PM,10/11/2022 05:42:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 5 STREET between NORTH 4 PLACE and WYTHE AVENUE, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, KENT AVENUE between NORTH 4 STREET and NORTH 5 STREET, KENT AVENUE between NORTH 4 STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between RIVER STREET and WYTHE AVENUE, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, KENT AVENUE between SOUTH 5 STREET and BROADWAY, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11211, 11249"
+676452,Theater Load in and Load Outs,10/19/2022 12:01:00 AM,10/20/2022 06:00:00 AM,10/11/2022 04:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+676448,Theater Load in and Load Outs,10/29/2022 12:01:00 AM,10/29/2022 11:59:00 PM,10/11/2022 03:59:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+676443,Shooting Permit,10/14/2022 12:00:00 PM,10/15/2022 01:00:00 AM,10/11/2022 03:02:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","105 STREET between 37 AVENUE and 35 AVENUE, 37 AVENUE between 104 STREET and 106 STREET, 37 AVENUE between 103 STREET and 104 STREET, 104 STREET between 37 AVENUE and 37 ROAD, 46 AVENUE between 104 STREET and 102 STREET, 104 STREET between 45 AVENUE and 46 AVENUE, 104 STREET between 46 AVENUE and 47 AVENUE, 46 AVENUE between 104 STREET and 108 STREET, 104 STREET between 42 AVENUE and 44 AVENUE, 104 STREET between 46 AVENUE and NICOLLS AVENUE",Queens,"3, 4","110, 115",Television,Cable-episodic,United States of America,11368
+676439,DCAS Prep/Shoot/Wrap Permit,10/13/2022 02:00:00 PM,10/13/2022 09:00:00 PM,10/11/2022 02:59:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DUANE STREET and CHAMBERS STREET, BROADWAY between WARREN STREET and MURRAY STREET, CENTRE STREET between DUANE STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+676433,Theater Load in and Load Outs,10/17/2022 12:01:00 AM,10/17/2022 11:59:00 PM,10/11/2022 02:16:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676431,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 07:00:00 PM,10/11/2022 02:11:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WILSON AVENUE between FLUSHING AVENUE and MELROSE STREET,Brooklyn,4,83,Commercial,Commercial,United States of America,11237
+676429,Shooting Permit,10/14/2022 03:00:00 PM,10/15/2022 03:00:00 AM,10/11/2022 01:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","15 AVENUE between 138 STREET and 141 STREET, 15 AVENUE between 141 STREET and 143 STREET",Queens,7,109,Television,Made for TV/mini-series,United States of America,11357
+676418,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 11:00:00 PM,10/11/2022 01:28:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+676417,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/11/2022 01:27:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+676416,Shooting Permit,10/14/2022 02:30:00 PM,10/15/2022 01:00:00 AM,10/11/2022 01:14:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 24 STREET and WEST 25 STREET, 10 AVENUE between WEST 23 STREET and WEST 24 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+676415,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 11:00:00 PM,10/11/2022 01:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676413,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 11:00:00 PM,10/11/2022 12:50:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676406,Theater Load in and Load Outs,10/15/2022 12:01:00 AM,10/15/2022 11:59:00 PM,10/11/2022 12:24:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676404,Theater Load in and Load Outs,10/16/2022 12:01:00 AM,10/16/2022 11:59:00 PM,10/11/2022 12:10:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676401,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 09:00:00 PM,10/11/2022 12:03:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+676400,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 11:00:00 PM,10/11/2022 12:00:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between HILLCREST AVENUE and PROSPECT AVENUE, HILLCREST AVENUE between HILLSIDE AVENUE and CHERRY STREET",Queens,11,111,Documentary,Not Applicable,United States of America,11363
+676391,Theater Load in and Load Outs,10/13/2022 12:01:00 AM,10/14/2022 11:59:00 PM,10/11/2022 11:23:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676383,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 09:00:00 PM,10/11/2022 10:56:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE, LINCOLN ROAD between FLATBUSH AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between LINCOLN ROAD and LEFFERTS AVENUE, LINCOLN ROAD between OCEAN AVENUE and FLATBUSH AVENUE, FLATBUSH AVENUE between LINCOLN ROAD and RUTLAND ROAD",Brooklyn,"55, 9","71, 78",Television,Episodic series,United States of America,11225
+676377,Shooting Permit,10/13/2022 03:00:00 PM,10/14/2022 03:00:00 AM,10/11/2022 10:05:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","15 AVENUE between 138 STREET and 141 STREET, 15 AVENUE between 141 STREET and 143 STREET",Queens,7,109,Television,Made for TV/mini-series,United States of America,11357
+676366,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 10:00:00 PM,10/11/2022 09:17:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 42 STREET between 12 AVENUE and 10 AVENUE, 10 AVENUE between WEST 41 STREET and WEST 43 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10011, 10036"
+676364,Shooting Permit,10/13/2022 08:00:00 AM,10/13/2022 11:00:00 PM,10/11/2022 09:02:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between PIERREPONT STREET and PINEAPPLE STREET, CLARK STREET between WILLOW STREET and HICKS STREET, WILLOW STREET between CLARK STREET and PINEAPPLE STREET, ORANGE STREET between HICKS STREET and HENRY STREET, REEVES AVENUE between HORACE HARDING EXPRESSWAY and 149 STREET, 153 STREET between REEVES AVENUE and HORACE HARDING EXPRESSWAY, 61 ROAD between REEVES AVENUE and 153 STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,"2, 8","107, 84",Film,Feature,United States of America,"11201, 11367"
+676363,Shooting Permit,10/14/2022 01:00:00 AM,10/15/2022 04:00:00 AM,10/11/2022 08:28:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",WILD AVENUE between ALBERTA AVENUE and ROSWELL AVENUE,Staten Island,2,121,Television,Episodic series,United States of America,10314
+676362,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 08:00:00 PM,10/11/2022 07:40:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, ASTOR PLACE between LAFAYETTE STREET and BROADWAY",Manhattan,2,"6, 9",Commercial,Commercial,United States of America,"10003, 10012"
+676361,Theater Load in and Load Outs,10/12/2022 06:00:00 AM,10/13/2022 05:00:00 AM,10/11/2022 04:27:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+676357,Shooting Permit,10/12/2022 10:00:00 AM,10/12/2022 10:00:00 PM,10/10/2022 10:28:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between MECHANICS ALLEY and MARKET STREET, MARKET STREET between HENRY STREET and MADISON STREET",Manhattan,3,5,Film,Feature,United States of America,10002
+676355,Shooting Permit,10/12/2022 12:00:00 PM,10/13/2022 05:00:00 AM,10/10/2022 09:50:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between MARKET STREET and PIKE STREET, MADISON STREET between MARKET STREET and CATHERINE STREET, MARKET STREET between HENRY STREET and MADISON STREET, HENRY STREET between CATHERINE STREET and PIKE STREET, CATHERINE STREET between MADISON STREET and HENRY STREET, MARKET STREET between MADISON STREET and MONROE STREET, MONROE STREET between MARKET STREET and MECHANICS ALLEY, EAST BROADWAY between CATHERINE STREET and PIKE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, PIKE STREET between MADISON STREET and MONROE STREET, EAST 41 STREET between MADISON AVENUE and 3 AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 43 STREET between 5 AVENUE and VANDERBILT AVENUE, EAST 44 STREET between 5 AVENUE and VANDERBILT AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, EAST 40 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"3, 5, 6","14, 17, 5, 7",Film,Feature,United States of America,"10002, 10016, 10017, 10038, 10173"
+676341,Shooting Permit,10/14/2022 10:00:00 AM,10/15/2022 02:00:00 AM,10/10/2022 06:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 8 AVENUE and 7 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 26 STREET and WEST 23 STREET, 6 AVENUE between WEST 27 STREET and WEST 24 STREET, WEST 25 STREET between 6 AVENUE and BROADWAY",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011"
+676338,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 11:00:00 PM,10/10/2022 05:38:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between VANDERBILT AVENUE and MADISON AVENUE, EAST 46 STREET between MADISON AVENUE and 5 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 44 STREET and EAST 46 STREET, VANDERBILT AVENUE between EAST 44 STREET and EAST 46 STREET, EAST 44 STREET between VANDERBILT AVENUE and MADISON AVENUE, VANDERBILT AVENUE between EAST 43 STREET and EAST 44 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+676334,Theater Load in and Load Outs,10/22/2022 12:01:00 AM,10/22/2022 11:59:00 PM,10/10/2022 05:02:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676328,Theater Load in and Load Outs,10/21/2022 12:01:00 AM,10/21/2022 11:59:00 PM,10/10/2022 04:08:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676325,Theater Load in and Load Outs,10/20/2022 12:01:00 AM,10/20/2022 11:59:00 PM,10/10/2022 03:52:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676320,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 08:00:00 PM,10/10/2022 02:37:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+676318,Theater Load in and Load Outs,10/15/2022 12:01:00 AM,10/16/2022 06:00:00 AM,10/10/2022 02:21:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+676317,Theater Load in and Load Outs,10/15/2022 12:01:00 AM,10/16/2022 11:59:00 PM,10/10/2022 02:17:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676308,Theater Load in and Load Outs,10/13/2022 12:01:00 AM,10/14/2022 06:00:00 AM,10/10/2022 01:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676303,Theater Load in and Load Outs,10/12/2022 12:01:00 AM,10/12/2022 11:59:00 PM,10/10/2022 12:54:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676287,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 10:00:00 PM,10/10/2022 10:07:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+676286,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 10:00:00 PM,10/10/2022 10:06:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+676285,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 10:00:00 PM,10/10/2022 10:06:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+676208,Theater Load in and Load Outs,10/11/2022 12:01:00 AM,10/12/2022 11:59:00 PM,10/07/2022 04:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+676207,Theater Load in and Load Outs,10/11/2022 12:01:00 AM,10/11/2022 11:59:00 PM,10/07/2022 04:14:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+676204,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 09:00:00 PM,10/07/2022 03:42:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Cable-episodic,United States of America,11101
+676203,Theater Load in and Load Outs,10/24/2022 06:00:00 AM,10/24/2022 11:59:00 PM,10/07/2022 03:39:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+676201,Theater Load in and Load Outs,10/11/2022 06:00:00 AM,10/11/2022 11:59:00 PM,10/07/2022 03:22:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",8 AVENUE between WEST 31 STREET and WEST 33 STREET,Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+676194,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 10:00:00 PM,10/07/2022 02:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 8 AVENUE and 7 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 26 STREET and WEST 23 STREET, 6 AVENUE between WEST 27 STREET and WEST 24 STREET, WEST 25 STREET between 6 AVENUE and BROADWAY",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011"
+676192,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 09:00:00 PM,10/07/2022 02:34:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+676189,Shooting Permit,10/11/2022 07:30:00 AM,10/11/2022 08:00:00 PM,10/07/2022 02:30:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between WEST 24 STREET and WEST 26 STREET, WEST 26 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 26 STREET, 11 AVENUE between WEST 26 STREET and WEST 25 STREET, WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+676188,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 09:00:00 PM,10/07/2022 02:26:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between NORTH MOORE STREET and WALKER STREET, NORTH MOORE STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between FRANKLIN STREET and BEACH STREET, VARICK STREET between NORTH MOORE STREET and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, W BROADWAY between NORTH MOORE STREET and FRANKLIN ST, 6 AVENUE between FRANKLIN STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+676176,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 08:00:00 PM,10/07/2022 02:13:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST MARKS AVENUE between NOSTRAND AVENUE and ROGERS AVENUE,Brooklyn,8,77,Still Photography,Not Applicable,United States of America,11216
+676173,Shooting Permit,10/13/2022 02:00:00 PM,10/13/2022 08:00:00 PM,10/07/2022 02:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 24 STREET and 28 STREET,Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+676170,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 09:00:00 PM,10/07/2022 02:04:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE,Bronx,2,41,Commercial,Commercial,United States of America,10474
+676166,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 09:00:00 PM,10/07/2022 02:01:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Commercial,Commercial,United States of America,10474
+676154,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 09:00:00 PM,10/07/2022 01:32:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BERRY STREET and WYTHE AVENUE, WYTHE AVENUE between NORTH 9 STREET and NORTH 12 STREET, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 10 STREET and NORTH 12 STREET, NORTH 11 STREET between WYTHE AVENUE and BERRY STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, GRAND STREET between KENT AVENUE and WYTHE AVENUE, GRAND STREET between BERRY STREET and ROEBLING STREET",Brooklyn,"1, 2","108, 90, 94",Television,Episodic series,United States of America,"11101, 11211, 11249"
+676152,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 06:00:00 PM,10/07/2022 01:30:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+676151,Rigging Permit,10/12/2022 05:45:00 PM,10/12/2022 09:45:00 PM,10/07/2022 01:27:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+676149,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 09:00:00 PM,10/07/2022 01:25:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANIDA STREET between LAFAYETTE AVENUE and GARRISON AVENUE, BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE",Bronx,2,41,Commercial,Commercial,United States of America,10474
+676147,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 10:00:00 PM,10/07/2022 01:20:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, PEARL STREET between MAIDEN LANE and PINE STREET, PEARL STREET between PINE STREET and WALL STREET, PEARL STREET between WALL STREET and HANOVER STREET, WALL STREET between PEARL STREET and WATER STREET, MAIDEN LANE between PEARL STREET and WATER STREET, MAIDEN LANE between WATER STREET and FRONT STREET, JOHN STREET between PEARL STREET and WATER STREET, JOHN STREET between WATER STREET and FRONT STREET, FRONT STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between FRONT STREET and SOUTH STREET, SOUTH STREET between FLETCHER STREET and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+676146,Rigging Permit,10/11/2022 06:00:00 PM,10/11/2022 10:00:00 PM,10/07/2022 01:16:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+676145,Theater Load in and Load Outs,10/12/2022 12:01:00 AM,10/13/2022 11:59:00 PM,10/07/2022 01:13:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676131,Shooting Permit,10/12/2022 03:00:00 PM,10/13/2022 01:00:00 AM,10/07/2022 12:29:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE NORTH between 5 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE WEST between WAVERLY PLACE and WEST 4 STREET, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WEST 4 STREET between 6 AVENUE and WASHINGTON SQUARE WEST, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6TH AVE between MINETTA LANE and WEST HOUSTON ST, LEROY STREET between BLEEKER STREET and BEDFORD STREET, BLEEKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BLEEKER STREET and BEDFORD STREET, WASHINGTON PLACE between WASHINGTON SQUARE EAST and GREENE STREET",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10003, 10011, 10012, 10014"
+676125,Shooting Permit,10/20/2022 07:00:00 AM,10/20/2022 09:00:00 PM,10/07/2022 12:11:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676124,Shooting Permit,10/18/2022 07:00:00 AM,10/18/2022 09:00:00 PM,10/07/2022 11:59:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676123,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 08:00:00 PM,10/07/2022 11:54:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 10 STREET between DRIGGS AVENUE and ROEBLING STREET, BEDFORD AVENUE between NORTH 9 STREET and LORIMER STREET, NORTH 9 STREET between BEDFORD AVENUE and DRIGGS AVENUE, HAVEMEYER STREET between NORTH 9 STREET and NORTH 8 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+676122,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 09:00:00 PM,10/07/2022 11:52:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between CHURCH AVENUE and MARTENSE STREET, NOSTRAND AVENUE between MARTENSE STREET and LINDEN BOULEVARD, CHURCH AVENUE between ROGERS AVENUE and NEW YORK AVENUE, MARTENSE STREET between NOSTRAND AVENUE and ROGERS AVENUE, MARTENSE STREET between NOSTRAND AVENUE and FAIRVIEW PLACE, BEDFORD AVENUE between SNYDER AVENUE and ALBERMARLE ROAD, LINDEN BOULEVARD between ROGERS AVENUE and NOSTRAND AVENUE, OCEAN AVENUE between CATON AVENUE and PARKSIDE AVENUE, CATON AVENUE between OCEAN AVENUE and ST PAULS PLACE, PARKSIDE AVENUE between PARK CIRCLE and PARADE PLACE, PARKSIDE AVENUE between OCEAN AVENUE and FLATBUSH AVENUE, OCEAN AVENUE between PARKSIDE AVENUE and LINCOLN ROAD",Brooklyn,"14, 17, 55, 9","67, 70, 71, 78",Television,Episodic series,United States of America,"11225, 11226"
+676121,Shooting Permit,10/17/2022 07:00:00 AM,10/17/2022 09:00:00 PM,10/07/2022 11:47:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676120,Theater Load in and Load Outs,10/10/2022 12:01:00 AM,10/11/2022 11:59:00 PM,10/07/2022 11:46:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+676118,Shooting Permit,10/11/2022 03:00:00 PM,10/12/2022 11:00:00 PM,10/07/2022 11:35:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE NORTH between MACDOUGAL STREET and 5 AVENUE, WASHINGTON SQUARE WEST between WAVERLY PLACE and WEST 4 STREET, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WEST 4 STREET between 6 AVENUE and WASHINGTON SQUARE WEST, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6TH AVE between MINETTA LANE and WEST HOUSTON ST, LEROY STREET between BLEEKER STREET and BEDFORD STREET, BLEEKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BLEEKER STREET and BEDFORD STREET",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+676117,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 09:00:00 PM,10/07/2022 11:34:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676116,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 09:00:00 PM,10/07/2022 11:29:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676115,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 09:00:00 PM,10/07/2022 11:25:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676113,Shooting Permit,10/13/2022 10:00:00 AM,10/14/2022 02:00:00 AM,10/07/2022 11:16:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 ROAD between BELL BOULEVARD and DEAD END, 35 AVENUE between BELL BOULEVARD and 213 STREET, 35 AVENUE between BELL BOULEVARD and CORPORAL STONE STREET, BELL BOULEVARD between 35 AVENUE and 36 AVENUE, 36 AVENUE between BELL BOULEVARD and 213 STREET, 36 AVENUE between BELL BOULEVARD and CORPORAL STONE STREET, BELL BOULEVARD between 36 AVENUE and 38 AVENUE, 223 STREET between NORTHERN BOULEVARD and 46 AVENUE, CLOVERDALE BOULEVARD between 46 AVENUE and BIRMINGTON PARKWAY, 46 AVENUE between 220 PLACE and 223 STREET, NORTHERN BOULEVARD between 220 PLACE and 223 STREET",Queens,11,111,Television,Episodic series,United States of America,"11361, 11364"
+676112,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 09:00:00 PM,10/07/2022 11:15:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676097,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 07:00:00 PM,10/07/2022 09:54:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, COURT STREET between SCHERMERHORN STREET and LIVINGSTON STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+676085,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 10:00:00 PM,10/07/2022 08:59:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 49 STREET and WEST 48 STREET, WEST 48 STREET between 7 AVENUE and 6 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 49 STREET and WEST 48 STREET, 6 AVENUE between WEST 50 STREET and WEST 49 STREET, BROADWAY between WEST 51 STREET and WEST 49 STREET, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10036, 10105"
+676082,Shooting Permit,10/12/2022 11:00:00 AM,10/12/2022 11:30:00 PM,10/07/2022 08:29:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 34 STREET and 35 STREET, 4 AVENUE between 36 STREET and 35 STREET, 5 AVENUE between 34 STREET and 32 STREET, 36 STREET between 5 AVENUE and 7 AVENUE, 5 AVENUE between 36 STREET and 37 STREET, 4 AVENUE between 36 STREET and 37 STREET, 37 STREET between 4 AVENUE and 5 AVENUE, 36TH ST between 4 AVENUE and 5 AVENUE, 5 AVENUE between 36 STREET and 34 STREET, THIRD AVENUE between 34 STREET and 35 STREET, THIRD AVENUE between 36 STREET and 37 STREET, THIRD AVENUE between 36 STREET and 35 STREET, 37 STREET between 2 AVENUE and 3 AVENUE",Brooklyn,7,72,Television,Episodic series,United States of America,11232
+676080,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 07:00:00 PM,10/07/2022 07:46:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE,Queens,"1, 2","108, 114",Commercial,Commercial,United States of America,11101
+676069,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 11:00:00 PM,10/06/2022 06:23:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, SCHERMERHORN STREET between CLINTON STREET and COURT STREET, COURT STREET between LIVINGSTON STREET and STATE STREET, LIVINGSTON STREET between COURT STREET and BOERUM PLACE, CLINTON STREET between SCHERMERHORN STREET and LIVINGSTON STREET, BOERUM PLACE between LIVINGSTON STREET and ATLANTIC AVENUE, ATLANTIC AVENUE between CLINTON STREET and BOERUM PLACE, 31 STREET between 47 AVENUE and 48 AVENUE",Brooklyn,"2, 6","108, 76, 84",Television,Episodic series,United States of America,"11101, 11201"
+676052,Shooting Permit,10/11/2022 02:00:00 PM,10/11/2022 08:00:00 PM,10/06/2022 04:45:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between MECHANICS ALLEY and MARKET STREET, MARKET STREET between HENRY STREET and MADISON STREET",Manhattan,3,5,Film,Feature,United States of America,10002
+676048,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 10:00:00 PM,10/06/2022 04:22:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 8 AVENUE and 7 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, WEST 25 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 26 STREET and WEST 23 STREET, 6 AVENUE between WEST 27 STREET and WEST 24 STREET, WEST 25 STREET between 6 AVENUE and BROADWAY",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011"
+676044,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 10:00:00 PM,10/06/2022 03:27:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between HORATIO STREET and WEST 11 STREET, 7 AVENUE SOUTH between GREENWICH AVENUE and PERRY STREET, WEST 11 STREET between WAVERLY PLACE and GREENWICH AVENUE, WEST 13 STREET between 7 AVENUE and GREENWICH AVENUE, WAVERLY PLACE between BANK STREET and WEST 11 STREET, BANK STREET between WAVERLY PLACE and WEST 4 STREET, W 14 ST between 10 AVENUE and 9 AVE, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 19 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","13, 6",Television,Episodic series,United States of America,"10011, 10014"
+676038,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 10:00:00 PM,10/06/2022 03:07:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between HORATIO STREET and WEST 11 STREET, 7 AVENUE SOUTH between GREENWICH AVENUE and PERRY STREET, WEST 11 STREET between WAVERLY PLACE and GREENWICH AVENUE, WEST 13 STREET between 7 AVENUE and GREENWICH AVENUE, WAVERLY PLACE between BANK STREET and WEST 11 STREET, BANK STREET between WAVERLY PLACE and WEST 4 STREET, W 14 st between 10 AVENUE and 9 ave, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 19 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","13, 6",Television,Episodic series,United States of America,"10011, 10014"
+676036,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 10:00:00 PM,10/06/2022 03:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, HUMBOLDT STREET between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+676035,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 10:00:00 PM,10/06/2022 03:03:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+676034,Shooting Permit,10/12/2022 06:30:00 AM,10/12/2022 08:00:00 PM,10/06/2022 03:01:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between VARICK AVENUE and GARDNER AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, WOODWARD AVENUE between STANHOPE STREET and STARR STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE",Queens,"1, 5, 6, 9","104, 75, 90",Television,Cable-episodic,United States of America,"11237, 11375, 11385, 11415, 11421"
+676026,Theater Load in and Load Outs,10/13/2022 12:01:00 AM,10/13/2022 11:59:00 PM,10/06/2022 02:47:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+676020,Shooting Permit,10/10/2022 11:00:00 AM,10/10/2022 05:00:00 PM,10/06/2022 02:37:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHENECTADY AVENUE between CHURCH AVENUE and SNYDER AVENUE, CHURCH AVENUE between TROY AVENUE and EAST 45 STREET, CHURCH AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 46 STREET between CHURCH AVENUE and SNYDER AVENUE, CHURCH AVENUE between EAST 48 STREET and UTICA AVENUE, EAST 49 STREET between CHURCH AVENUE and SNYDER AVENUE, UTICA AVENUE between LINDEN BOULEVARD and CHURCH AVENUE, CHURCH AVENUE between EAST 46 STREET and EAST 48 STREET, EAST 48 STREET between LINDEN BOULEVARD and CHURCH AVENUE",Brooklyn,17,67,Television,Made for TV/mini-series,United States of America,11203
+676016,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 09:00:00 PM,10/06/2022 02:30:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between DEAD END and GREENPOINT AVE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+676010,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 08:00:00 PM,10/06/2022 02:18:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+676008,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 08:00:00 PM,10/06/2022 02:12:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, WILLIAMS AVENUE between DUMONT AVENUE and LIVONIA AVENUE, ALABAMA AVENUE between DUMONT AVENUE and LIVONIA AVENUE, WILLIAMS AVENUE between DUMONT AVENUE and BLAKE AVENUE, LIVONIA AVENUE between ALABAMA AVENUE and SHEFFIELD AVENUE, RIVERDALE AVENUE between SNEDIKER AVENUE and GEORGIA AVENUE",Queens,"4, 5","104, 75, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+675999,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 11:00:00 PM,10/06/2022 01:20:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 99 STREET between 2 AVENUE and 1 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 101 STREET and EAST 100 STREET, 1 AVENUE between EAST 101 STREET and EAST 102 STREET, EAST 102 STREET between 1 AVENUE and FDR DRIVE",Manhattan,11,"23, 25",Television,Cable-episodic,United States of America,"10029, 10035"
+675990,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 11:59:00 PM,10/06/2022 12:45:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","74 STREET between 37 AVENUE and 37 ROAD, BROADWAY between 37 ROAD and 74 STREET, 74 STREET between 37 ROAD and BROADWAY, 75 STREET between 37 AVENUE and 37 ROAD, 37 ROAD between 74 STREET and 75 STREET, 73 STREET between 37 AVENUE and 37 ROAD, BROADWAY between 72 STREET and 73 STREET, BROADWAY between 74 STREET and 75 STREET, 75 STREET between BROADWAY and 41 AVENUE, BROADWAY between 75 STREET and 76 STREET, 76 STREET between BROADWAY and 41 AVENUE, BROADWAY between 76 STREET and 78 STREET, BROADWAY between 78 STREET and BAXTER AVENUE",Queens,"3, 4","110, 115",Television,Episodic series,United States of America,"11372, 11373"
+675987,Shooting Permit,10/09/2022 06:00:00 AM,10/09/2022 07:00:00 PM,10/06/2022 12:26:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 116 STREET and WEST 120 STREET,Manhattan,9,26,Theater,Theater,United States of America,10027
+675978,Shooting Permit,10/11/2022 09:00:00 AM,10/11/2022 10:00:00 PM,10/06/2022 11:58:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+675974,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 08:00:00 PM,10/06/2022 11:53:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between 24 STREET and 28 STREET, 19 STREET between PROSPECT PARK WEST and 8 AVENUE, 20 STREET between PROSPECT PARK WEST and 10 AVENUE, PROSPECT PARK WEST between 18 STREET and 19 STREET, PROSPECT PARK WEST between 19 STREET and 20 STREET, MCDONALD AVENUE between 10 AVENUE and FORT HAMILTON PARKWAY",Brooklyn,7,72,Television,Cable-episodic,United States of America,"11215, 11218, 11232"
+675963,Shooting Permit,10/10/2022 07:00:00 AM,10/10/2022 11:00:00 PM,10/06/2022 11:22:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675955,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 07:00:00 PM,10/06/2022 10:32:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WELLINGTON COURT between RUGBY ROAD and DEAD END,Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+675948,Shooting Permit,10/11/2022 01:00:00 PM,10/12/2022 05:00:00 AM,10/06/2022 10:18:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 41 STREET and EAST 42 STREET, EAST 42 STREET between LEXINGTON AVENUE and 3 AVENUE, VANDERBILT AVENUE between EAST 45 STREET and EAST 47 STREET, PARK AVENUE between EAST 38 STREET and EAST 39 STREET, EAST 43 STREET between VANDERBILT AVENUE and MADISON AVENUE, EAST 42 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between MADISON AVENUE and 3 AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 42 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 42 STREET between PARK AVENUE and MADISON AVENUE, EAST 43 STREET between 5 AVENUE and VANDERBILT AVENUE, EAST 44 STREET between 5 AVENUE and VANDERBILT AVENUE, EAST 45 STREET between MADISON AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, EAST 41 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17, 18",Film,Feature,United States of America,"10016, 10017, 10165, 10173"
+675946,Shooting Permit,10/14/2022 10:00:00 AM,10/14/2022 08:00:00 PM,10/06/2022 10:09:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",MACDONOUGH STREET between MALCOLM X BOULEVARD and PATCHEN AVENUE,Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11233
+675943,Shooting Permit,10/10/2022 06:00:00 AM,10/10/2022 09:00:00 PM,10/06/2022 09:54:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and HORATIO STREET, GREENWICH STREET between GANSEVOORT STREET and JANE STREET, GANSEVOORT STREET between GREENWICH STREET and HUDSON STREET, 9 AVENUE between GANSEVOORT STREET and LITTLE WEST 12 STREET, WEST 14 STREET between 10 AVENUE and 8 AVENUE, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, 10 AVENUE between WEST STREET and GANSEVOORT STREET, WEST 13 STREET between HUDSON STREET and GANSEVOORT STREET, GANSEVOORT STREET between HUDSON STREET and WEST 13 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,10014
+675941,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 10:00:00 PM,10/06/2022 09:44:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+675940,Shooting Permit,10/10/2022 06:00:00 AM,10/10/2022 10:00:00 PM,10/06/2022 09:44:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+675937,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 10:00:00 PM,10/06/2022 09:13:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","ENGERT AVENUE between MANHATTAN AVENUE and ECKFORD STREET, ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, DRIGGS AVENUE between LEONARD STREET and ECKFORD STREET, LORIMER STREET between BEDFORD AVENUE and RICHARDSON STREET, GRAHAM AVENUE between DRIGGS AVENUE and ENGERT AVENUE, LEONARD STREET between DRIGGS AVENUE and MANHATTAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+675935,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 06:00:00 PM,10/06/2022 09:03:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 135 STREET and WEST 138 STREET,Manhattan,9,30,Still Photography,Not Applicable,United States of America,10031
+675934,Shooting Permit,10/10/2022 07:00:00 AM,10/10/2022 10:00:00 PM,10/06/2022 08:44:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 49 STREET and WEST 48 STREET, WEST 48 STREET between 7 AVENUE and 6 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 49 STREET and WEST 48 STREET, 6 AVENUE between WEST 50 STREET and WEST 49 STREET, BROADWAY between WEST 51 STREET and WEST 49 STREET, WEST 51 STREET between 7 AVENUE and 8 AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10036, 10105"
+675933,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 09:00:00 PM,10/06/2022 08:41:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 22 STREET between 1 AVENUE and 2 AVENUE,Manhattan,6,13,Television,Reality,United States of America,10010
+675931,Shooting Permit,10/11/2022 08:00:00 AM,10/11/2022 10:00:00 PM,10/06/2022 07:12:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 33 STREET and 35 STREET, 34 STREET between BROADWAY and 34 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+675928,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 07:00:00 PM,10/05/2022 10:30:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 242 STREET and WEST 240 STREET,Bronx,"26, 7, 8","24, 50",Film,Feature,United States of America,"10024, 10463, 10471"
+675913,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 08:00:00 PM,10/05/2022 05:22:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 10 STREET between DRIGGS AVENUE and ROEBLING STREET, BEDFORD AVENUE between NORTH 9 STREET and LORIMER STREET, NORTH 12 STREET between BEDFORD AVENUE and BERRY STREET, DRIGGS AVENUE between NORTH 12 STREET and UNION AVENUE, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 9 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 10 STREET between WYTHE AVENUE and KENT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+675910,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 10:00:00 PM,10/05/2022 05:00:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between BEDFORD AVENUE and RICHARDSON STREET, ENGERT AVENUE between MANHATTAN AVENUE and ECKFORD STREET, GRAHAM AVENUE between DRIGGS AVENUE and ENGERT AVENUE, LEONARD STREET between DRIGGS AVENUE and MANHATTAN AVENUE, ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, DRIGGS AVENUE between LEONARD STREET and ECKFORD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+675907,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 10:00:00 PM,10/05/2022 04:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675902,Shooting Permit,10/11/2022 10:00:00 AM,10/12/2022 02:00:00 AM,10/05/2022 03:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 23 STREET between 2 AVENUE and 3 AVENUE, EAST 22 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 23 STREET between 1 AVENUE and 2 AVENUE, EAST 23 STREET between 1 AVENUE and AVENUE C, 1 AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST",Manhattan,6,13,Television,Cable-episodic,United States of America,"10003, 10010"
+675900,Shooting Permit,10/11/2022 06:00:00 PM,10/11/2022 10:00:00 PM,10/05/2022 03:37:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 118 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVE. between WEST 119TH and WEST 118TH, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 117 STREET",Manhattan,10,28,Television,Cable-episodic,United States of America,10026
+675898,Shooting Permit,10/14/2022 11:30:00 AM,10/15/2022 01:30:00 AM,10/05/2022 03:28:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","95 AVENUE between 149 STREET and 150 STREET, 149 STREET between 95 AVENUE and 97 AVENUE, 95 AVENUE between 148 STREET and 149 STREET, 148 STREET between 95 AVENUE and 97 AVENUE, 97 AVENUE between 148 STREET and 149 STREET, 97 AVENUE between 149 STREET and 150 STREET, 148 STREET between 97 AVENUE and LIBERTY AVENUE, 149 STREET between 95 AVENUE and 97 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 148 STREET",Queens,12,103,Television,Cable-episodic,United States of America,11435
+675896,Shooting Permit,10/07/2022 06:00:00 AM,10/07/2022 08:00:00 PM,10/05/2022 03:17:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WEST 14 STREET between WASHINGTON STREET and 9 AVENUE, WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between GANSEVOORT STREET and HORATIO STREET, WEST 14 STREET between HUDSON STREET and 8 AVENUE, WEST 13 STREET between HUDSON STREET and GANSEVOORT STREET, GANSEVOORT STREET between WEST 13 STREET and HUDSON STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, LITTLE WEST 12 STREET between WASHINGTON STREET and 10 AVENUE, 10 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, 10 AVENUE between WEST STREET and GANSEVOORT STREET, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10001, 10014"
+675894,Shooting Permit,10/10/2022 12:00:00 PM,10/10/2022 11:59:00 PM,10/05/2022 03:12:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUBERT STREET between WEST STREET and GREENWICH STREET, PECK SLIP between PEARL STREET and FRONT STREET, DESBROSSES STREET between GREENWICH STREET and WASHINGTON STREET, WASHINGTON STREET between VESTRY STREET and DESBROSSES STREET, WEST STREET between NORTH MOORE STREET and DESBROSSES STREET, GREENWICH STREET between LAIGHT STREET and HUBERT STREET, GREENWICH STREET between HUBERT STREET and NORTH MOORE STREET, WEST 11 STREET between WEST 4 STREET and WAVERLY PLACE, WEST 11 STREET between WEST 4 STREET and BLEECKER STREET, WEST 4 STREET between WEST 11 STREET and BANK STREET, WEST 11 STREET between WAVERLY PLACE and GREENWICH AVENUE, GREENWICH AVENUE between JANE STREET and 7 AVENUE, 7 AVENUE SOUTH between GREENWICH AVENUE and WEST 10 STREET",Manhattan,"1, 2, 3","1, 6, 7, 9",Commercial,Commercial,United States of America,"10002, 10004, 10005, 10006, 10007, 10011, 10013, 10014, 10038, 10041, 10280, 10282"
+675890,Shooting Permit,10/07/2022 06:00:00 PM,10/08/2022 07:00:00 AM,10/05/2022 03:04:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON SQUARE SOUTH between THOMPSON STREET and WASHINGTON SQUARE EAST, WASHINGTON SQUARE NORTH between MACDOUGAL STREET and 5 AVENUE, MACDOUGAL STREET between WEST 8 STREET and WASHINGTON SQUARE NORTH, WASHINGTON SQUARE WEST between WAVERLY PLACE and WEST 4 STREET, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WEST 4 STREET between 6 AVENUE and WASHINGTON SQUARE WEST, THOMPSON STREET between WASHINGTON SQUARE SOUTH and BLEEKER STREET, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6TH AVE between MINETTA LANE and WEST HOUSTON ST, LEROY STREET between BLEEKER STREET and BEDFORD STREET, BLEEKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BLEEKER STREET and BEDFORD STREET",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+675888,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 09:00:00 PM,10/05/2022 02:59:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+675885,Shooting Permit,10/11/2022 01:00:00 PM,10/11/2022 11:00:00 PM,10/05/2022 02:52:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between JACKSON AVENUE and 11 STREET, JACKSON AVENUE between 47 AVENUE and 48 AVENUE, 46 ROAD between 11 STREET and 21 STREET, 21 STREET between JACKSON AVENUE and 46 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, CENTER BOULEVARD between 46 AVENUE and 47 AVENUE, 5 STREET between 47 ROAD and 47 AVENUE, 5 STREET between 47 ROAD and 48 AVENUE, 47 ROAD between 5 STREET and CENTER BOULEVARD, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11109, 11222"
+675884,Shooting Permit,10/10/2022 09:00:00 AM,10/11/2022 12:00:00 AM,10/05/2022 02:52:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 95 STREET between AVENUE K and AVENUE L, AVENUE L between ROCKAWAY PARKWAY and EAST 94 STREET",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+675881,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 07:30:00 PM,10/05/2022 02:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 21 STREET and 11 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+675880,Shooting Permit,10/12/2022 06:30:00 AM,10/12/2022 07:30:00 PM,10/05/2022 02:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+675882,Shooting Permit,10/14/2022 06:00:00 AM,10/14/2022 08:30:00 PM,10/05/2022 02:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+675870,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 08:00:00 PM,10/05/2022 02:18:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",MAHAN AVENUE between ROBERTS AVENUE and MIDDLETOWN ROAD,Bronx,10,45,Commercial,Commercial,United States of America,10461
+675866,Shooting Permit,10/13/2022 10:00:00 AM,10/13/2022 07:00:00 PM,10/05/2022 02:02:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","95 AVENUE between 149 STREET and 150 STREET, 149 STREET between 95 AVENUE and 97 AVENUE, 149 STREET between 95 AVENUE and 97 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 95 AVENUE between 148 STREET and 149 STREET, 148 STREET between 95 AVENUE and 97 AVENUE, 97 AVENUE between 148 STREET and 149 STREET, 97 AVENUE between 149 STREET and 150 STREET, 148 STREET between 97 AVENUE and LIBERTY AVENUE",Queens,12,103,Television,Cable-episodic,United States of America,11435
+675865,Shooting Permit,10/13/2022 06:00:00 AM,10/13/2022 11:00:00 PM,10/05/2022 02:01:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675855,Shooting Permit,10/07/2022 10:00:00 AM,10/07/2022 11:00:00 PM,10/05/2022 01:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE, WEST 21 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 23 STREET and WEST 22 STREET, 8 AVENUE between WEST 22 STREET and WEST 21 STREET, 8 AVENUE between WEST 20 STREET and WEST 21 STREET, 9 AVENUE between WEST 23 STREET and WEST 22 STREET, 9 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+675850,Shooting Permit,10/10/2022 06:00:00 AM,10/10/2022 10:00:00 PM,10/05/2022 01:09:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between CHURCH AVENUE and LINDEN BOULEVARD, CHURCH AVENUE between ROCKAWAY PARKWAY and EAST 95 STREET, LINDEN BOULEVARD between EAST 95 STREET and EAST 96 STREET",Brooklyn,"17, 18","67, 69",Television,Cable-episodic,United States of America,"11212, 11236"
+675844,Shooting Permit,10/06/2022 09:00:00 AM,10/06/2022 11:00:00 PM,10/05/2022 12:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 10 AVENUE and 9 AVENUE, WEST 52 STREET between 10 AVENUE and 11 AVENUE, WEST 53 STREET between 11 AVENUE and 10 AVENUE, WEST 52 STREET between 11 AVENUE and 12 AVENUE, WEST 52 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 51 STREET between 11 AVENUE and 12 AVENUE, WEST 50 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10019"
+675838,Shooting Permit,10/10/2022 07:00:00 AM,10/10/2022 10:00:00 PM,10/05/2022 12:14:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 41 STREET between 6 AVENUE and 7 AVENUE, WEST 39 STREET between 6 AVENUE and 9 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, EAST 28 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 29 STREET and EAST 28 STREET, EAST 27 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, EAST 13 STREET between BROADWAY and UNIVERSITY PLACE, EAST 13 STREET between BROADWAY and 4 AVENUE, BROADWAY between EAST 13 STREET and EAST 14 STREET, BROADWAY between EAST 12 STREET and EAST 13 STREET, EAST 12 STREET between BROADWAY and 2 AVENUE, WEST 12 STREET between 5 AVENUE and 6 AVENUE, WEST 38 STREET between 6 AVENUE and 7 AVENUE, BROADWAY between WEST 38 STREET and WEST 37 STREET",Manhattan,"2, 3, 4, 5, 6","13, 14, 18, 6, 9",Television,Episodic series,United States of America,"10003, 10011, 10016, 10018, 10036"
+675830,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 09:00:00 PM,10/05/2022 11:35:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",MANSION AVENUE between WHITMAN AVENUE and MCKEE AVENUE,Staten Island,3,122,Television,Episodic series,United States of America,10308
+675828,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 08:00:00 PM,10/05/2022 11:23:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+675819,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 08:00:00 PM,10/05/2022 10:40:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+675817,Shooting Permit,10/07/2022 01:00:00 PM,10/08/2022 04:00:00 AM,10/05/2022 10:34:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 8 STREET and WEST 12 STREET, WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, W.12TH ST. between SURF AVENUE and DEAD END, STILLWELL AVENUE between SURF AVENUE and RIEGELMANN BOARDWALK, WEST 21 STREET between SURF AVENUE and DEAD END, BOWERY STREET between JONES WALK and WEST 12 STREET",Brooklyn,13,60,Film,Feature,United States of America,"11214, 11223, 11224"
+675810,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 10:00:00 PM,10/05/2022 10:11:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between THROOP AVENUE and BROADWAY, BROADWAY between THORNTON STREET and FLUSHING AVENUE, BROADWAY between SUMNER PLACE and ELLERY STREET, MARCUS GARVEY BOULEVARD between BROADWAY and ELLERY STREET, ELLERY STREET between MARCUS GARVEY BOULEVARD and BROADWAY, THROOP AVENUE between HOPKINS STREET and PARK AVENUE",Brooklyn,"1, 3, 4","79, 81, 83, 90",Television,Cable-episodic,United States of America,11206
+675799,Theater Load in and Load Outs,10/08/2022 12:01:00 AM,10/08/2022 11:59:00 PM,10/05/2022 09:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+675786,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 07:00:00 PM,10/04/2022 09:08:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",CONVENT AVENUE between WEST 143 STREET and WEST 145 STREET,Manhattan,9,30,Film,Feature,United States of America,10031
+675784,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 07:00:00 PM,10/04/2022 08:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST TREMONT AVENUE between 3 AVENUE and MONTEREY AVENUE,Bronx,"26, 6","48, 50",Film,Feature,United States of America,"10457, 10471"
+675774,Shooting Permit,10/12/2022 06:00:00 AM,10/13/2022 01:00:00 AM,10/04/2022 06:00:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+675773,Shooting Permit,10/07/2022 09:00:00 AM,10/07/2022 07:00:00 PM,10/04/2022 05:50:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CREAMER STREET between COURT STREET and SMITH STREET, COURT STREET between CREAMER STREET and BAY STREET, BAY STREET between COURT STREET and SMITH STREET, SMITH STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+675772,Shooting Permit,10/11/2022 08:00:00 AM,10/11/2022 06:00:00 PM,10/04/2022 05:50:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between CANAL STREET and WALKER STREET, NORTH 3 STREET between RIVER STREET and DEAD END, FULTON STREET between CLASSON AVENUE and CLAVER PLACE",Manhattan,"1, 3","1, 5, 79, 94",WEB,Not Applicable,United States of America,"10013, 11238, 11249"
+675765,Shooting Permit,10/11/2022 07:00:00 AM,10/11/2022 09:00:00 PM,10/04/2022 04:55:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 67 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 66 STREET and EAST 64 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 64 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 67 STREET and EAST 64 STREET, EAST 62 STREET between PARK AVENUE and 3 AVENUE, PARK AVENUE between EAST 63 STREET and EAST 62 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+675757,Shooting Permit,10/08/2022 07:00:00 AM,10/08/2022 07:00:00 PM,10/04/2022 04:20:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON SQUARE NORTH between 5 AVENUE and WASHINGTON SQUARE EAST,Manhattan,2,6,Commercial,Commercial,United States of America,"10003, 10011"
+675754,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 07:00:00 PM,10/04/2022 04:03:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,18,Still Photography,Not Applicable,United States of America,10019
+675753,Shooting Permit,10/09/2022 07:00:00 AM,10/09/2022 08:00:00 PM,10/04/2022 04:00:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between 4 STREET and 5 STREET, 5 AVENUE between 5 STREET and 6 STREET, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE",Brooklyn,"14, 6","70, 78",Commercial,Commercial,United States of America,"11215, 11226"
+675752,Shooting Permit,10/07/2022 11:00:00 AM,10/08/2022 01:00:00 AM,10/04/2022 03:59:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRESCENT STREET between 21 AVENUE and DITMARS BOULEVARD, DITMARS BOULEVARD between 21 STREET and 19 STREET, DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, 21 STREET between 21 ROAD and 22 DRIVE",Queens,1,114,Television,Episodic series,United States of America,11105
+675751,Shooting Permit,10/07/2022 08:00:00 AM,10/08/2022 12:00:00 AM,10/04/2022 03:58:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between MARKET STREET and PIKE STREET, MONROE STREET between MARKET STREET and PIKE STREET, MARKET SLIP between CHERRY STREET and SOUTH STREET, PIKE STREET between MONROE STREET and MADISON STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and PIKE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, MARKET STREET between MONROE STREET and MADISON STREET, PIKE STREET between CHERRY STREET and MONROE STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+675744,Shooting Permit,10/06/2022 02:00:00 AM,10/06/2022 09:00:00 PM,10/04/2022 03:28:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between GANSEVOORT STREET and HORATIO STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 10 AVENUE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, 10 AVENUE between WEST STREET and GANSEVOORT STREET, 10 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, WEST 14 STREET between 10 AVENUE and 8 AVENUE, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10001, 10014"
+675740,Shooting Permit,10/07/2022 10:00:00 AM,10/08/2022 01:00:00 AM,10/04/2022 03:16:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY STREET between COURT STREET and SMITH STREET, COLUMBIA STREET between DEAD END and HALLECK STREET, COURT STREET between HALLECK STREET and BRYANT STREET, CLINTON STREET between LORRAINE STREET and HALLECK STREET, BAY STREET between COLUMBIA STREET and CLINTON STREET, HENRY STREET between LORRAINE STREET and BAY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+675735,Shooting Permit,10/10/2022 10:00:00 AM,10/11/2022 01:00:00 AM,10/04/2022 03:00:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 124 STREET and 126 STREET, JAMAICA AVENUE between 123 STREET and 124 STREET, 124 STREET between JAMAICA AVENUE and HILLSIDE AVENUE, 125 STREET between JAMAICA AVENUE and HILLSIDE AVENUE, 125 STREET between JAMAICA AVENUE and 89 AVENUE, 124 STREET between JAMAICA AVENUE and 89 AVENUE, 89 AVENUE between 123 STREET and 125 STREET, JAMAICA AVENUE between 131 STREET and METROPOLITAN AVENUE, 132 STREET between JAMAICA AVENUE and METROPOLITAN AVENUE, 91 AVENUE between 139 STREET and 146 STREET, 143 STREET between 91 AVENUE and ARCHER AVENUE, 144 PLACE between 91 AVENUE and ARCHER AVENUE, ARCHER AVENUE between 143 STREET and 146 STREET",Queens,"12, 9","102, 103",Television,Cable-episodic,United States of America,"11418, 11435"
+675734,Shooting Permit,10/12/2022 08:00:00 AM,10/12/2022 11:30:00 PM,10/04/2022 02:56:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675732,Theater Load in and Load Outs,10/10/2022 12:01:00 AM,10/10/2022 11:59:00 PM,10/04/2022 02:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+675722,Shooting Permit,10/06/2022 04:00:00 PM,10/07/2022 06:00:00 AM,10/04/2022 02:07:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY PLACE between 6 AVENUE and MACDOUGAL STREET, MACDOUGAL STREET between WEST 8 STREET and WAVERLY PLACE, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, WAVERLY PLACE between MACDOUGAL STREET and 6 AVENUE, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WASHINGTON SQUARE WEST between WAVERLY PLACE and WEST 4 STREET, 6 AVENUE between WEST 8 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6TH AVE between MINETTA LANE and W. HOUSTON ST, BLEEKER STREET between 6 AVENUE and LEROY STREET, CARMINE STREET between BLEEKER STREET and BEDFORD STREET, LEROY STREET between BLEEKER STREET and BEDFORD STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, BLEEKER STREET between LAGUARDIA PLACE and BROADWAY",Manhattan,2,6,Television,Made for TV/mini-series,United States of America,"10011, 10012, 10014"
+675715,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 11:00:00 PM,10/04/2022 01:47:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+675714,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 10:00:00 PM,10/04/2022 01:43:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 44 STREET and WEST 45 STREET, 10 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 46 STREET between 11 AVENUE and 10 AVENUE, WEST 46 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 47 STREET between 11 AVENUE and 10 AVENUE, WEST 47 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,18,Television,Cable-episodic,United States of America,10036
+675712,Theater Load in and Load Outs,10/09/2022 12:01:00 AM,10/09/2022 11:59:00 PM,10/04/2022 01:34:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+675707,Shooting Permit,10/07/2022 03:00:00 PM,10/08/2022 06:00:00 AM,10/04/2022 01:13:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675701,Shooting Permit,10/07/2022 06:00:00 AM,10/07/2022 09:00:00 PM,10/04/2022 12:54:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between LUDLOW STREET and ESSEX STREET, ESSEX STREET between HESTER STREET and CANAL STREET, ESSEX STREET between GRAND STREET and HESTER STREET, MULBERRY STREET between EAST HOUSTON STREET and JERSEY STREET",Manhattan,"2, 3","5, 7",Commercial,Commercial,United States of America,"10002, 10012"
+675696,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 11:00:00 PM,10/04/2022 12:31:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+675695,Shooting Permit,10/07/2022 07:00:00 AM,10/07/2022 11:00:00 PM,10/04/2022 12:27:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+675693,Theater Load in and Load Outs,10/09/2022 12:01:00 AM,10/09/2022 11:59:00 PM,10/04/2022 12:19:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+675690,Theater Load in and Load Outs,10/20/2022 12:01:00 AM,10/20/2022 11:59:00 PM,10/04/2022 12:14:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+675689,Theater Load in and Load Outs,10/06/2022 12:01:00 AM,10/07/2022 06:00:00 AM,10/04/2022 12:12:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+675680,Shooting Permit,10/07/2022 06:00:00 AM,10/07/2022 08:00:00 PM,10/04/2022 11:53:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 15 STREET and EAST 17 STREET, 1 AVENUE between EAST 18 STREET and EAST 20 STREET, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, EAST 18 STREET between 2 AVENUE and 1 AVENUE, EAST 17 STREET between 2 AVENUE and 1 AVENUE, EAST 16 STREET between 3 AVENUE and RUTHERFORD PLACE",Manhattan,6,13,Television,Episodic series,United States of America,"10003, 10009"
+675678,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 10:00:00 PM,10/04/2022 11:46:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675667,Shooting Permit,10/08/2022 06:00:00 AM,10/08/2022 09:00:00 PM,10/04/2022 11:06:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",COVERT STREET between BUSHWICK AVENUE and BROADWAY,Brooklyn,4,83,Commercial,Commercial,United States of America,11207
+675659,Shooting Permit,10/07/2022 08:00:00 AM,10/07/2022 10:00:00 PM,10/04/2022 10:31:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+675658,Shooting Permit,10/10/2022 07:00:00 AM,10/10/2022 06:30:00 PM,10/04/2022 10:25:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN CORTLANDT AVENUE EAST between RISSE STREET and VILLA AVENUE, GOUVERNEUR AVENUE between SEDGEWICK AVENUE and VAN CORTLANDT PARK SOUTH, Duncomb Avenue between Olinville Ave and Barker Ave",Bronx,"11, 12, 6, 7, 8","48, 50, 52",Film,Feature,United States of America,"10452, 10458, 10460, 10462, 10463, 10467, 10468"
+675649,Shooting Permit,10/07/2022 06:00:00 AM,10/07/2022 11:00:00 PM,10/04/2022 09:48:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675648,Shooting Permit,10/06/2022 06:00:00 AM,10/06/2022 11:00:00 PM,10/04/2022 09:45:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675646,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 09:00:00 PM,10/04/2022 09:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 6 AVENUE and 5 AVENUE, WEST 40 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 39 STREET and WEST 40 STREET, 6 AVENUE between WEST 39 STREET and WEST 38 STREET, WEST 41 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 41 STREET and WEST 40 STREET, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 39 STREET between BROADWAY and 6 AVENUE, WEST 39 STREET between 6 AVENUE and 5 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 7 AVENUE and 8 AVENUE, WEST 38 STREET between BROADWAY and 6 AVENUE, WEST 38 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10016, 10018, 10036"
+675638,Shooting Permit,10/12/2022 06:00:00 AM,10/12/2022 10:00:00 PM,10/04/2022 08:13:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between FORT HAMILTON PARKWAY and SEELEY STREET, 1 AVENUE between 43 STREET and 48 STREET",Brooklyn,"12, 7","66, 72",Television,Episodic series,United States of America,"11218, 11232"
+675612,Theater Load in and Load Outs,10/17/2022 12:01:00 AM,10/19/2022 11:59:00 PM,10/03/2022 06:08:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 10 STREET and EAST 11 STREET, EAST 11 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"11, 2, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+675610,Shooting Permit,10/06/2022 08:00:00 AM,10/06/2022 07:00:00 PM,10/03/2022 05:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DUPONT STREET and HURON STREET, GREEN STREET between FRANKLIN STREET and MANHATTAN AVENUE, FREEMAN STREET between MANHATTAN AVENUE and FRANKLIN STREET, 31 STREET between 47 AVENUE and 48 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+675607,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 10:00:00 PM,10/03/2022 05:00:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 56 STREET between MADISON AVENUE and PARK AVENUE, EAST 55 STREET between PARK AVENUE and MADISON AVENUE, EAST 54 STREET between PARK AVENUE and MADISON AVENUE, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, EAST 52 STREET between MADISON AVENUE and PARK AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 54 STREET between 1 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10019, 10022"
+675601,Theater Load in and Load Outs,10/09/2022 12:01:00 AM,10/10/2022 06:00:00 AM,10/03/2022 04:44:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+675600,Theater Load in and Load Outs,10/08/2022 12:01:00 AM,10/08/2022 11:59:00 PM,10/03/2022 04:42:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+675599,Theater Load in and Load Outs,10/05/2022 12:01:00 AM,10/07/2022 06:00:00 AM,10/03/2022 04:41:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+675597,Shooting Permit,10/09/2022 10:00:00 AM,10/10/2022 04:00:00 AM,10/03/2022 04:36:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between HOWARD STREET and CANAL STREET,Manhattan,2,5,Film,Feature,United States of America,10013
+675594,Theater Load in and Load Outs,10/09/2022 12:01:00 AM,10/09/2022 11:59:00 PM,10/03/2022 04:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+675591,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 11:00:00 PM,10/03/2022 04:10:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between EAST 43 STREET and EAST 44 STREET, VANDERBILT AVENUE between EAST 44 STREET and EAST 45 STREET, MADISON AVENUE between EAST 43 STREET and EAST 46 STREET, EAST 44 STREET between VANDERBILT AVENUE and MADISON AVENUE, WEST 45 STREET between 5 AVENUE and BROADWAY",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+675588,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 09:00:00 PM,10/03/2022 03:58:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675587,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 08:00:00 PM,10/03/2022 03:58:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MULBERRY STREET between BAYARD STREET and WORTH STREET, MULBERRY STREET between BAYARD STREET and CANAL STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between PIKE STREET and MARKET STREET, PIKE STREET between EAST BROADWAY and HENRY STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, CENTRE STREET between LEONARD STREET and WORTH STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, MOSCO STREET between MULBERRY STREET and MOTT STREET",Manhattan,"1, 3","5, 7",Television,Episodic series,United States of America,"10002, 10007, 10013"
+675582,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 11:00:00 PM,10/03/2022 03:46:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and RIVERSIDE DRIVE, WEST 156 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 157 STREET and WEST 155 STREET, WEST 155 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 156 STREET and WEST 153 STREET, RIVERSIDE DRIVE EAST between WEST 155TH ST. and RIVERSIDE DRIVE",Manhattan,"12, 9","30, 33",Television,Cable-episodic,United States of America,10032
+675563,Theater Load in and Load Outs,10/05/2022 12:01:00 AM,10/06/2022 11:59:00 PM,10/03/2022 02:38:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+675555,Shooting Permit,10/17/2022 08:00:00 AM,10/17/2022 08:00:00 PM,10/03/2022 02:16:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON AVENUE between BROADWAY and BUSHWICK AVENUE,Brooklyn,4,83,Student,Student Film,United States of America,11221
+675548,Shooting Permit,10/06/2022 02:00:00 PM,10/06/2022 08:00:00 PM,10/03/2022 01:56:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, 3 AVENUE between EAST 91 STREET and EAST 92 STREET",Manhattan,"7, 8","19, 20",Television,Cable-episodic,United States of America,"10024, 10128"
+675542,Shooting Permit,10/05/2022 09:00:00 AM,10/05/2022 11:30:00 PM,10/03/2022 01:27:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 47 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 46 STREET and EAST 47 STREET, LEXINGTON AVENUE between EAST 48 STREET and EAST 49 STREET, THIRD AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 51 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10171, 10172"
+675540,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 09:00:00 PM,10/03/2022 01:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","HYATT STREET between ST MARKS PLACE and STUYVESANT PLACE, ST MARKS PLACE between HYATT STREET and VICTORY BOULEVARD, CENTRAL AVENUE between HYATT STREET and BAY STREET",Staten Island,1,120,Film,Feature,United States of America,10301
+675536,Shooting Permit,10/07/2022 07:00:00 AM,10/07/2022 11:00:00 PM,10/03/2022 01:11:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between CLIFFORD PLACE and GUERNSEY STREET, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, CALYER STREET between GUERNSEY STREET and MANHATTAN AVENUE, MESEROLE AVENUE between BANKER STREET and DOBBIN STREET, GUERNSEY STREET between CALYER STREET and OAK STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675527,Shooting Permit,10/06/2022 06:00:00 AM,10/06/2022 08:00:00 PM,10/03/2022 12:46:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between HIMROD STREET and HARMAN STREET, WILSON AVENUE between STANHOPE STREET and HIMROD STREET, STANHOPE STREET between MYRTLE AVENUE and WILSON AVENUE, STANHOPE STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, HARMAN STREET between MYRTLE AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between HIMROD STREET and HARMAN STREET, HIMROD STREET between MYRTLE AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between HIMROD STREET and STARR STREET",Brooklyn,4,83,Television,Episodic series,United States of America,"11221, 11237"
+675520,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 08:00:00 PM,10/03/2022 12:11:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between JERSEY STREET and PRINCE STREET,Manhattan,2,"5, 9",Commercial,Commercial,United States of America,10012
+675506,Shooting Permit,10/04/2022 08:00:00 AM,10/04/2022 11:59:00 PM,10/03/2022 11:34:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between GARDNER AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and VARICK AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, WOODWARD AVENUE between STANHOPE STREET and STARR STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, GARDNER AVENUE between INGRAHAM STREET and JOHNSON AVENUE, GARDNER AVENUE between JOHNSON AVENUE and RANDOLPH STREET",Queens,"1, 4, 5, 6, 9","104, 75, 83, 90",Television,Cable-episodic,United States of America,"11206, 11237, 11375, 11385, 11415, 11421"
+675494,Shooting Permit,10/06/2022 08:00:00 AM,10/06/2022 10:00:00 PM,10/03/2022 11:07:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+675493,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 07:00:00 PM,10/03/2022 11:05:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",BRADHURST AVENUE between WEST 146 STREET and WEST 148 STREET,Manhattan,10,"30, 32",Commercial,Commercial,United States of America,10039
+675490,Shooting Permit,10/05/2022 11:00:00 AM,10/05/2022 11:00:00 PM,10/03/2022 10:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY AVENUE between LEFFERTS BOULEVARD and 118 STREET, 118 STREET between 103 AVENUE and 107 AVENUE, LEFFERTS BOULEVARD between 103 AVENUE and LIBERTY AVENUE, 29 STREET between 30 AVENUE and 30 DRIVE, 30 DRIVE between CRESCENT STREET and 29 STREET, 30 DRIVE between 29 STREET and 30 STREET, 49 STREET between 20 AVENUE and 21 AVENUE, 47 STREET between 20 AVENUE and 21 AVENUE, 48 STREET between 20 AVENUE and 21 AVENUE, 20 AVENUE between 45 STREET and 49 STREET, 47 STREET between 19 AVENUE and 20 AVENUE, 49 STREET between 20 AVENUE and 19 AVENUE",Queens,"1, 10","106, 114",Television,Made for TV/mini-series,United States of America,"11102, 11105, 11419"
+675488,Shooting Permit,10/05/2022 12:00:00 AM,10/05/2022 08:00:00 PM,10/03/2022 10:48:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between TOMPKINS AVENUE and MARCY AVENUE, MARCY AVENUE between LAFAYETTE AVENUE and KOSCIUSZKO STREET",Brooklyn,3,79,WEB,Not Applicable,United States of America,11216
+675475,Shooting Permit,10/07/2022 01:00:00 PM,10/07/2022 07:00:00 PM,10/03/2022 09:37:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","76 STREET between 86 ROAD and JAMAICA AVENUE, JAMAICA AVENUE between 76 STREET and 75 STREET, DEXTER COURT between 86 ROAD and JAMAICA AVENUE, 86 ROAD between DEXTER COURT and 75 STREET",Queens,9,"102, 75",Television,Cable-episodic,United States of America,11421
+675471,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 09:00:00 PM,10/03/2022 09:15:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 36 STREET between MADISON AVENUE and 5 AVENUE, WEST 36 STREET between 5 AVENUE and BROADWAY",Manhattan,5,14,Television,Cable-episodic,United States of America,"10016, 10018"
+675470,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 09:00:00 PM,10/03/2022 09:07:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+675469,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 09:00:00 PM,10/03/2022 09:04:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+675467,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 10:00:00 PM,10/03/2022 08:58:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",STORER AVENUE between ARTHUR KILL ROAD and CARLIN STREET,Staten Island,3,123,Television,Episodic series,United States of America,10309
+675459,Shooting Permit,10/06/2022 06:00:00 AM,10/06/2022 09:00:00 PM,10/03/2022 08:12:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Commercial,Commercial,United States of America,11238
+675442,Shooting Permit,10/05/2022 01:00:00 PM,10/05/2022 11:59:00 PM,10/02/2022 09:04:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PLAZA ST WEST between UNION STREET and BERKELEY PLACE, ALLEN STREET between DELANCEY STREET and BROOME STREET, ALLEN STREET between BROOME STREET and GRAND STREET, WEST 35 STREET between 8 AVENUE and 9 AVENUE",Brooklyn,"3, 4, 5, 55, 6","14, 5, 7, 78",WEB,Not Applicable,United States of America,"10001, 10002, 11217, 11238"
+675441,Shooting Permit,10/05/2022 11:00:00 AM,10/05/2022 10:00:00 PM,10/02/2022 08:57:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between BAYARD STREET and CANAL STREET, BAYARD STREET between MOTT STREET and MULBERRY STREET, MULBERRY STREET between BAYARD STREET and WORTH STREET, GOLD STREET between FRANKFORT STREET and SPRUCE STREET, NASSAU STREET between BEEKMAN STREET and SPRUCE STREET",Manhattan,"1, 2, 3","1, 5, 84",WEB,Not Applicable,United States of America,"10002, 10013, 10038, 11201"
+675433,Shooting Permit,10/06/2022 09:00:00 AM,10/06/2022 11:00:00 PM,10/02/2022 01:15:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",JAY STREET between FRONT STREET and YORK STREET,Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+675406,Shooting Permit,10/08/2022 12:00:00 AM,10/08/2022 02:00:00 PM,10/01/2022 12:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+675380,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 08:00:00 PM,09/30/2022 04:34:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+675368,Theater Load in and Load Outs,10/11/2022 12:01:00 AM,10/18/2022 06:00:00 AM,09/30/2022 03:52:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+675357,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 09:00:00 PM,09/30/2022 03:20:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 87 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 85 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 85 STREET and WEST 82 STREET, RIVERSIDE DRIVE between WEST 87 STREET and WEST 85 STREET, MADISON AVENUE between EAST 60 STREET and EAST 57 STREET, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 59 STREET and EAST 54 STREET",Manhattan,"5, 7, 8","18, 19, 20, 24",Television,Episodic series,United States of America,"10022, 10024"
+675351,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 11:59:00 PM,09/30/2022 02:33:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+675350,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 11:00:00 PM,09/30/2022 02:27:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+675347,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 08:00:00 PM,09/30/2022 02:18:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Film,Feature,United States of America,11222
+675345,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 09:00:00 PM,09/30/2022 02:11:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, 50 AVENUE between CENTER BOULEVARD and 2 STREET, 50 AVENUE between 2 STREET and 5 STREET, 2 STREET between 50 AVENUE and 51 AVENUE, 51 AVENUE between CENTER BOULEVARD and 2 STREET, 51 AVENUE between 2 STREET and 5 STREET, 2 STREET between 51 AVENUE and BORDEN AVENUE, BORDEN AVE between 2 STREET and 5 STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+675337,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 09:00:00 PM,09/30/2022 01:37:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 162 STREET between RIVER AVENUE and GERARD AVENUE, GERARD AVENUE between EAST 161 STREET and EAST 164 STREET, RIVER AVENUE between EAST 164 STREET and EAST 162 STREET, EAST 164 STREET between JEROME AVENUE and GERARD AVENUE, JEROME AVENUE between WEST 166 STREET and EAST 164 STREET, WEST 162 STREET between WOODYCREST AVENUE and ANDERSON AVENUE",Bronx,4,44,Television,Cable-episodic,United States of America,10452
+675333,Theater Load in and Load Outs,10/18/2022 12:01:00 AM,10/22/2022 06:00:00 AM,09/30/2022 01:07:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 66 STREET and EAST 67 STREET",Manhattan,8,19,Theater,Theater,United States of America,10065
+675332,Theater Load in and Load Outs,10/14/2022 12:01:00 AM,10/14/2022 11:59:00 PM,09/30/2022 01:05:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+675325,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 11:00:00 PM,09/30/2022 12:48:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675307,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 08:00:00 PM,09/30/2022 11:58:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 70 STREET and WEST 71 STREET, WEST 70 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22",WEB,Not Applicable,United States of America,10023
+675306,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 11:00:00 PM,09/30/2022 11:56:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE AVENUE between THROOP AVENUE and MARCUS GARVEY BOULEVARD, MARCUS GARVEY BOULEVARD between GREENE AVENUE and VAN BUREN STREET",Brooklyn,"1, 3","79, 81, 94",Commercial,Commercial,United States of America,"11221, 11222"
+675302,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 07:00:00 PM,09/30/2022 11:42:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,18,Still Photography,Not Applicable,United States of America,10019
+675299,Shooting Permit,10/04/2022 12:00:00 PM,10/05/2022 02:00:00 AM,09/30/2022 11:25:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between FRANK T MODICA WAY and PIKE SLIP, MYRTLE AVENUE between NORTH PORTLAND AVENUE and ST EDWARDS STREET",Manhattan,"0, 2, 3, 5","1, 18, 7, 88",WEB,Not Applicable,United States of America,"10002, 10036, 11201, 11205"
+675293,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 09:00:00 PM,09/30/2022 10:56:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 30 PLACE and 31 STREET, 47 AVENUE between 31 STREET and VAN DAM STREET, VAN DAM STREET between 47 AVENUE and THOMSON AVENUE, 47 AVENUE between VAN DAM STREET and 34 STREET, 32 PLACE between 47 AVENUE and QUEENS BOULEVARD, 32 PLACE between 47 AVENUE and 48 AVENUE, 42nd Place into 43rd Street between Northern Boulevard and 37 Avenue, 43 STREET between BARNETT AVENUE and SKILLMAN AVENUE, BARNETT AVENUE between 43 STREET and 39 AVENUE, 37 AVENUE between 43 STREET and 48 STREET, 43 STREET between 37 AVENUE and BARNETT AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11104"
+675292,Theater Load in and Load Outs,10/04/2022 12:01:00 AM,10/04/2022 11:59:00 PM,09/30/2022 10:48:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+675275,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/30/2022 08:53:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675274,Shooting Permit,10/01/2022 06:00:00 AM,10/01/2022 10:00:00 PM,09/30/2022 08:52:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675264,Theater Load in and Load Outs,10/07/2022 12:01:00 AM,10/07/2022 11:59:00 PM,09/30/2022 12:44:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+675240,Shooting Permit,10/09/2022 03:00:00 PM,10/09/2022 11:30:00 PM,09/29/2022 06:13:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 69 STREET and EAST 70 STREET",Manhattan,"64, 8","19, 22",Television,Special/Awards Show,United States of America,"10021, 10065"
+675232,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 11:00:00 PM,09/29/2022 04:59:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675229,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/29/2022 04:40:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between SCOTT AVENUE and CYPRESS AVENUE, GARDNER AVENUE between JOHNSON AVENUE and RANDOLPH STREET, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, SCOTT AVENUE between JEFFERSON STREET and TROUTMAN STREET, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, FLUSHING AVENUE between SCOTT AVENUE and CYPRESS AVENUE, FLUSHING AVENUE between SCOTT AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between ST NICHOLAS AVENUE and WYCKOFF AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and IRVING AVENUE, JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE, SCOTT AVENUE between JOHNSON AVENUE and RANDOLPH STREET",Brooklyn,"1, 4","83, 90",Television,Cable-episodic,United States of America,11237
+675228,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 09:00:00 PM,09/29/2022 04:35:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 10 AVENUE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between 10 AVENUE and 8 AVENUE, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10001, 10014"
+675222,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 09:00:00 PM,09/29/2022 04:14:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 7 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 46 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10036"
+675217,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 09:00:00 PM,09/29/2022 03:58:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 32 STREET and EAST 34 STREET, EAST 33 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 34 STREET and EAST 38 STREET, EAST 35 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17",Television,Made for TV/mini-series,United States of America,10016
+675215,Theater Load in and Load Outs,10/08/2022 12:01:00 AM,10/09/2022 06:00:00 AM,09/29/2022 03:54:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+675211,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 10:00:00 PM,09/29/2022 03:25:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between ALBERMARLE ROAD and BEVERLEY ROAD, WESTMINSTER ROAD between ALBERMARLE ROAD and CHURCH AVENUE, WESTMINSTER ROAD between ALBERMARLE ROAD and BEVERLEY ROAD, WESTMINSTER ROAD between CHURCH AVENUE and CATON AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+675207,Rigging Permit,10/05/2022 05:45:00 PM,10/05/2022 09:45:00 PM,09/29/2022 03:05:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+675206,Rigging Permit,10/04/2022 06:00:00 PM,10/04/2022 10:00:00 PM,09/29/2022 02:58:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+675203,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 11:59:00 PM,09/29/2022 02:29:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ECKFORD STREET between NASSAU AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between MANHATTAN AVENUE and GRAHAM AVENUE, GRAHAM AVENUE between DRIGGS AVENUE and ENGERT AVENUE, MCGUINNESS BOULEVARD between NASSAU AVENUE and DRIGGS AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675201,Theater Load in and Load Outs,10/11/2022 12:01:00 AM,10/25/2022 11:59:00 PM,09/29/2022 02:19:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+675182,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 10:00:00 PM,09/29/2022 12:58:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675176,Shooting Permit,10/04/2022 10:00:00 AM,10/04/2022 11:00:00 PM,09/29/2022 12:26:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between FRANKLIN STREET and BEACH STREET, VARICK STREET between NORTH MOORE STREET and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, W BROADWAY between NORTH MOORE STREET and FRANKLIN ST, 6 AVENUE between FRANKLIN STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, WEST BROADWAY between NORTH MOORE STREET and WALKER STREET, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+675170,Theater Load in and Load Outs,10/08/2022 12:01:00 AM,10/08/2022 11:59:00 PM,09/29/2022 12:07:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+675158,Rigging Permit,10/24/2022 06:00:00 AM,10/25/2022 11:59:00 PM,09/29/2022 11:37:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",GOLD STREET between FRANKFORT STREET and SPRUCE STREET,Manhattan,1,1,Television,News,United States of America,10038
+675157,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/29/2022 11:37:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 16 STREET between NEWKIRK AVENUE and DITMAS AVENUE,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+675152,Shooting Permit,10/05/2022 09:00:00 AM,10/05/2022 11:00:00 PM,09/29/2022 11:20:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","HYATT STREET between ST MARKS PLACE and STUYVESANT PLACE, ST MARKS PLACE between HYATT STREET and VICTORY BOULEVARD, CENTRAL AVENUE between HYATT STREET and BAY STREET",Staten Island,1,120,Film,Feature,United States of America,10301
+675150,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/29/2022 11:18:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675145,Shooting Permit,10/07/2022 07:00:00 AM,10/07/2022 11:00:00 PM,09/29/2022 11:04:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675143,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 11:00:00 PM,09/29/2022 10:59:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675140,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 11:00:00 PM,09/29/2022 10:55:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675131,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 09:00:00 PM,09/29/2022 10:12:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","HYATT STREET between ST MARKS PLACE and STUYVESANT PLACE, ST MARKS PLACE between HYATT STREET and VICTORY BOULEVARD, CENTRAL AVENUE between HYATT STREET and BAY STREET",Staten Island,1,120,Film,Feature,United States of America,10301
+675125,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 10:00:00 PM,09/29/2022 09:51:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 22 STREET and 21 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 12 STREET between DRIGGS AVENUE and UNION AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET, DRIGGS AVENUE between LORIMER STREET and MANHATTAN AVENUE, WITHERS STREET between UNION AVENUE and LORIMER STREET, UNION AVENUE between FROST STREET and WITHERS STREET, UNION AVENUE between WITHERS STREET and JACKSON STREET, UNION AVE between JACKSON STREET and MEEKER AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11211, 11222, 11249"
+675119,Shooting Permit,10/03/2022 12:00:00 PM,10/04/2022 04:00:00 AM,09/29/2022 09:36:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+675112,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 08:00:00 PM,09/29/2022 09:01:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","BUFFALO AVENUE between LINCOLN PLACE and EASTERN PARKWAY, LINCOLN PLACE between BUFFALO AVENUE and RALPH AVENUE",Brooklyn,"16, 8","73, 77",Still Photography,Not Applicable,United States of America,"11213, 11233"
+675110,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 08:00:00 PM,09/29/2022 08:48:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","BUFFALO AVENUE between LINCOLN PLACE and EASTERN PARKWAY, LINCOLN PLACE between BUFFALO AVENUE and RALPH AVENUE",Brooklyn,"16, 8","73, 77",Still Photography,Not Applicable,United States of America,"11213, 11233"
+675086,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 08:00:00 PM,09/28/2022 07:56:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between EAST 46 STREET and EAST 48 STREET, SCHENECTADY AVENUE between CHURCH AVENUE and SNYDER AVENUE, CHURCH AVENUE between TROY AVENUE and EAST 45 STREET, CHURCH AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 46 STREET between CHURCH AVENUE and SNYDER AVENUE, CHURCH AVENUE between EAST 48 STREET and UTICA AVENUE, EAST 49 STREET between CHURCH AVENUE and SNYDER AVENUE, UTICA AVENUE between LINDEN BOULEVARD and CHURCH AVENUE, EAST 48 STREET between LINDEN BOULEVARD and CHURCH AVENUE",Brooklyn,17,67,Television,Made for TV/mini-series,United States of America,11203
+675085,DCAS Prep/Shoot/Wrap Permit,10/04/2022 06:00:00 AM,10/04/2022 12:00:00 PM,09/28/2022 07:38:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+675084,Theater Load in and Load Outs,10/05/2022 12:01:00 AM,10/06/2022 06:00:00 AM,09/28/2022 07:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+675073,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 08:00:00 PM,09/28/2022 05:58:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SECOND AVENUE between EAST 56 STREET and EAST 57 STREET, SECOND AVENUE between EAST 55 STREET and EAST 56 STREET, SECOND AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 55 STREET between THIRD AVENUE and SECOND AVENUE, EAST 55 STREET between SECOND AVENUE and FIRST AVENUE, EAST 54 STREET between THIRD AVENUE and SECOND AVENUE, EAST 54 STREET between SECOND AVENUE and FIRST AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+675069,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 09:00:00 PM,09/28/2022 05:28:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 51 STREET and WEST 48 STREET, WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 49 STREET between 7 AVENUE and 6 AVENUE, WEST 48 STREET between 7 AVENUE and 6 AVENUE, WEST 45 STREET between 10 AVENUE and 8 AVENUE, WEST 48 STREET between 6 AVENUE and 5 AVENUE, WEST 43 STREET between BROADWAY and 6 AVENUE, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 39 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 39 STREET and WEST 40 STREET, WEST 40 STREET between 6 AVENUE and 5 AVENUE, WEST 40 STREET between 6 AVENUE and 5 AVENUE, WEST 39 STREET between 6 AVENUE and 5 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10016, 10018, 10019, 10020, 10036, 10105"
+675044,Shooting Permit,09/30/2022 11:30:00 AM,10/01/2022 01:00:00 AM,09/28/2022 04:09:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 50 STREET and EAST 49 STREET, 5 AVENUE between EAST 50 STREET and EAST 51 STREET, WEST 51 STREET between 6 AVENUE and 5 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between 5 AVENUE and PARK AVENUE, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 76 STREET and EAST 74 STREET, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 72 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 69 STREET, LEXINGTON AVENUE between EAST 72 STREET and EAST 71 STREET, PARK AVENUE between EAST 70 STREET and EAST 72 STREET, PARK AVENUE between EAST 69 STREET and EAST 70 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 49 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10019, 10020, 10021, 10022, 10036, 10112"
+675038,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 09:00:00 PM,09/28/2022 03:53:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOLD STREET between SPRUCE STREET and FULTON STREET, FULTON STREET between GOLD STREET and PEARL STREET, BEEKMAN STREET between WATER STREET and SOUTH STREET, JOHN STREET between FRONT STREET and SOUTH STREET, MAIDEN LANE between WATER STREET and FRONT STREET, SOUTH STREET between JOHN STREET and PECK SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+675023,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 11:00:00 PM,09/28/2022 03:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675020,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 09:00:00 PM,09/28/2022 03:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 109 STREET and 112 STREET, JAMAICA AVENUE between 112 STREET and 113 STREET, 110 STREET between 86 AVENUE and JAMAICA AVENUE, 111 STREET between 86 AVENUE and JAMAICA AVENUE, MYRTLE AVENUE between JAMAICA AVENUE and 116 STREET, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, BABBAGE STREET between HILLSIDE AVENUE and LEFFERTS BOULEVARD, LEFFERTS BOULEVARD between HILLSIDE AVENUE and JAMAICA AVENUE, LIBERTY AVENUE between 107 STREET and 108 STREET, LIBERTY AVENUE between 105 STREET and 107 STREET, 107 STREET between LIBERTY AVENUE and 103 AVENUE, 108 STREET between LIBERTY AVENUE and 103 AVENUE, LIBERTY AVENUE between 108 STREET and 109 STREET, 108 STREET between LIBERTY AVENUE and 107 AVENUE, 107 AVENUE between 108 STREET and 113 STREET",Queens,"10, 9","102, 106",Television,Made for TV/mini-series,United States of America,"11417, 11418, 11419"
+675012,Shooting Permit,10/31/2022 06:00:00 AM,10/31/2022 11:59:00 PM,09/28/2022 03:04:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 6 AVENUE and GREENWICH AVENUE, GREENWICH AVENUE between WEST 10 STREET and WEST 11 STREET",Manhattan,2,6,Television,News,United States of America,"10011, 10014"
+675011,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 11:30:00 PM,09/28/2022 03:02:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+675010,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 09:00:00 PM,09/28/2022 03:00:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, WESTMINSTER ROAD between CHURCH AVENUE and CATON AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+675008,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 09:00:00 PM,09/28/2022 02:57:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","HYATT STREET between ST MARKS PLACE and STUYVESANT PLACE, ST MARKS PLACE between HYATT STREET and VICTORY BOULEVARD, CENTRAL AVENUE between HYATT STREET and BAY STREET",Staten Island,1,120,Film,Feature,United States of America,10301
+675004,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 10:00:00 PM,09/28/2022 02:37:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+675000,Shooting Permit,09/30/2022 09:00:00 AM,09/30/2022 11:00:00 PM,09/28/2022 02:21:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 90 STREET and EAST 93 STREET, EAST 92 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 92 STREET between THIRD AVENUE and SECOND AVENUE, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 105 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 105 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 101 STREET and EAST 102 STREET, MADISON AVENUE between EAST 99 STREET and EAST 101 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10025, 10029, 10128"
+674999,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/28/2022 02:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, COURT STREET between LIVINGSTON STREET and STATE STREET, SCHERMERHORN STREET between CLINTON STREET and COURT STREET, LIVINGSTON STREET between COURT STREET and BOERUM PLACE, CLINTON STREET between SCHERMERHORN STREET and LIVINGSTON STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+674996,Theater Load in and Load Outs,10/01/2022 12:01:00 AM,10/03/2022 06:00:00 AM,09/28/2022 02:06:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+674993,Shooting Permit,10/07/2022 07:00:00 AM,10/07/2022 09:00:00 PM,09/28/2022 01:35:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+674991,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 11:30:00 PM,09/28/2022 01:35:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between LORIMER STREET and UNION AVENUE, FROST STREET between LORIMER STREET and UNION AVENUE, RICHARDSON STREET between LORIMER STREET and UNION AVENUE, LORIMER STREET between WITHERS STREET and RICHARDSON STREET, UNION AVE between FROST STREET and MEEKER AVE, MEEKER AVE between LORIMER ST and JACKSON ST, BAYARD STREET between LORIMER STREET and UNION AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+674982,Theater Load in and Load Outs,10/03/2022 12:01:00 AM,10/03/2022 11:59:00 PM,09/28/2022 12:51:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+674977,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 09:00:00 PM,09/28/2022 12:39:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+674969,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 07:30:00 PM,09/28/2022 12:14:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between FRANKLIN AVENUE and CLASSON AVENUE,Brooklyn,3,79,WEB,Not Applicable,United States of America,11238
+674968,Shooting Permit,10/07/2022 05:00:00 PM,10/08/2022 07:00:00 AM,09/28/2022 12:08:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOW STREET between CLARK STREET and PIERREPONT STREET, PIERREPONT STREET between COLUMBIA HEIGHTS and HICKS STREET, PIERREPONT PLACE between MONTAGUE STREET and PIERREPONT STREET, HICKS STREET between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, HENRY STREET between PIERREPONT STREET and MONTAGUE STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+674966,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 07:30:00 PM,09/28/2022 12:07:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between FRANKLIN AVENUE and CLASSON AVENUE,Brooklyn,3,79,WEB,Not Applicable,United States of America,11238
+674961,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 07:00:00 PM,09/28/2022 11:48:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between HORATIO STREET and BETHUNE STREET, GREENWICH STREET between WEST 12 STREET and BETHUNE STREET, GREENWICH STREET between HORATIO STREET and WEST 12 STREET, JANE STREET between HUDSON STREET and 8 AVENUE, JANE STREET between GREENWICH STREET and HUDSON STREET, 8 AVENUE between JANE STREET and WEST 12 STREET, WEST 4 STREET between JANE STREET and WEST 12 STREET, WEST 12 STREET between 8 AVENUE and WEST 4 STREET, 7 AVENUE between WEST 14 STREET and WEST 13 STREET, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+674947,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 08:00:00 PM,09/28/2022 10:50:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, VAN BRUNT STREET between HAMILTON AVENUE and BOWNE STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+674925,Shooting Permit,10/03/2022 10:00:00 AM,10/03/2022 11:00:00 PM,09/28/2022 09:25:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","31 AVENUE between 31 STREET and 33 STREET, 31 AVENUE between 33 STREET and 34 STREET, 31 AVENUE between 34 STREET and 36 STREET, CRESCENT STREET between DITMARS BOULEVARD and 21 AVENUE, 36 AVENUE between 12 STREET and 21 STREET, 21 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,"11101, 11105, 11106"
+674922,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 08:00:00 PM,09/28/2022 08:07:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","BUFFALO AVENUE between LINCOLN PLACE and EASTERN PARKWAY, LINCOLN PLACE between BUFFALO AVENUE and RALPH AVENUE",Brooklyn,"16, 17, 8","67, 73, 77",Still Photography,Not Applicable,United States of America,"11212, 11213, 11233"
+674920,Shooting Permit,10/02/2022 05:00:00 AM,10/02/2022 08:00:00 PM,09/28/2022 07:38:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, CAMBRIDGE PLACE between FULTON STREET and GATES AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+674917,Shooting Permit,10/01/2022 06:00:00 AM,10/01/2022 08:00:00 PM,09/28/2022 12:03:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between DEBROSSES STREET and VESTRY STREET, VESTRY STREET between WASHINGTON STREET and GREENWICH STREET",Manhattan,"1, 2",1,Still Photography,Not Applicable,United States of America,10013
+674894,Theater Load in and Load Outs,10/06/2022 12:01:00 AM,10/07/2022 06:00:00 AM,09/27/2022 07:37:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+674893,Shooting Permit,10/03/2022 12:30:00 PM,10/03/2022 10:30:00 PM,09/27/2022 07:34:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 143 STREET between MALCOLM X BOULEVARD and 5 AVENUE,Manhattan,10,32,WEB,Not Applicable,United States of America,10037
+674870,Shooting Permit,10/14/2022 07:00:00 AM,10/14/2022 11:00:00 PM,09/27/2022 04:46:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674868,Shooting Permit,10/13/2022 07:00:00 AM,10/13/2022 11:00:00 PM,09/27/2022 04:44:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674867,Shooting Permit,10/12/2022 07:00:00 AM,10/12/2022 11:00:00 PM,09/27/2022 04:42:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674864,Shooting Permit,10/07/2022 07:00:00 AM,10/07/2022 11:00:00 PM,09/27/2022 04:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674861,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 11:00:00 PM,09/27/2022 04:37:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674857,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 11:00:00 PM,09/27/2022 04:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674855,DCAS Prep/Shoot/Wrap Permit,10/01/2022 05:00:00 AM,10/01/2022 09:00:00 PM,09/27/2022 04:24:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, TILLARY STREET between ADAMS STREET and JAY STREET, JOHNSON STREET between ADAMS STREET and JAY STREET, JAY STREET between JOHNSON STREET and MYRTLE AVENUE",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+674839,Theater Load in and Load Outs,10/16/2022 07:00:00 AM,10/16/2022 07:00:00 PM,09/27/2022 03:17:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between CHAMBERS STREET and HARRISON STREET,Manhattan,1,1,Theater,Theater,United States of America,"10013, 10282"
+674834,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 08:00:00 PM,09/27/2022 02:55:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between CHURCH AVENUE and ALBERMARLE ROAD, WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD, DECATUR STREET between LEWIS AVENUE and STUYVESANT AVENUE",Brooklyn,"14, 3","70, 81",Commercial,Commercial,United States of America,"11218, 11233"
+674831,Theater Load in and Load Outs,10/12/2022 12:01:00 AM,10/14/2022 06:00:00 AM,09/27/2022 02:55:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+674805,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 11:00:00 PM,09/27/2022 02:07:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","14 ROAD between 113 STREET and 114 STREET, 14 ROAD between 114 STREET and 115 STREET, 114 STREET between 14 ROAD and 15 AVENUE, 118 STREET between 9 AVENUE and 12 AVENUE, 9 AVENUE between 118 STREET and 120 STREET, 9 AVENUE between 117 STREET and 118 STREET, 14 AVENUE between 110 STREET and 114 STREET, ULMER STREET between 25 AVENUE and 28 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11354, 11356"
+674801,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 10:00:00 PM,09/27/2022 02:02:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPY and MELBOURNE AVENUE, REEVES AVENUE between 149 STREET and HORACE HARDING EXPRESSWAY",Queens,8,107,Television,Episodic series,United States of America,11367
+674782,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/27/2022 12:39:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 9 AVENUE and 10 AVENUE, WEST 36 STREET between 10 AVENUE and DYER AVENUE, WEST 36 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 7 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Film,Feature,United States of America,10018
+674768,Shooting Permit,09/29/2022 09:00:00 AM,09/30/2022 03:00:00 AM,09/27/2022 11:57:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN ST between DEAD END and HICKS ST, MONTAGUE TERRACE between MONTAGUE STREET and REMSEN STREET, HICKS STREET between REMSEN STREET and PIERREPONT STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET, WATER STREET between NEW DOCK STREET and MAIN STREET, NEW DOCK STREET between WATER STREET and DEAD END, EAST 51 STREET between 5 AVENUE and PARK AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 51 STREET and WEST 50 STREET, 5 AVENUE between EAST 50 STREET and EAST 49 STREET, WEST 48 STREET between 5 AVENUE and ROCKEFELLER PLAZA, WEST 51 STREET between 5 AVENUE and 6 AVENUE",Brooklyn,"2, 5","18, 84",Television,Episodic series,United States of America,"10019, 10020, 10022, 10036, 10112, 11201"
+674767,Shooting Permit,09/30/2022 08:00:00 AM,09/30/2022 11:00:00 PM,09/27/2022 11:50:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, QUEENS PLAZA SOUTH between 9 STREET and 10 STREET, QUEENS PLAZA SOUTH between TENTH STREET and 11 STREET, QUEENS PLAZA SOUTH between 11 STREET and 12 STREET, VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH, 40 AVENUE between VERNON BOULEVARD and 10 STREET, 40 AVENUE between 10 STREET and 12 STREET, 40 AVENUE between 12 STREET and 21 STREET, 58 STREET between 41 AVENUE and 41 DRIVE, 41 DRIVE between 58 STREET and 60 STREET, 58 STREET between 41 DRIVE and 43 AVENUE, 58 STREET between 43 AVENUE and 44 AVENUE, 58 STREET between 44 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 58 STREET and 59 PLACE, QUEENS BOULEVARD between 58 STREET and 57 STREET, QUEENS BOULEVARD between 57 STREET and 56 STREET, QUEENS BOULEVARD between 56 STREET and 54 STREET, QUEENS BOULEVARD between 54 STREET and 52 STREET, QUEENS BOULEVARD between 52 STREET and 51 STREET",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,"11101, 11377"
+674757,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/27/2022 11:20:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BUSHWICK PLACE and WHITE STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+674751,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 04:00:00 PM,09/27/2022 11:06:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 68 STREET and BAY RIDGE AVENUE,Brooklyn,"10, 6","68, 78",Film,Feature,United States of America,"11217, 11220"
+674747,Shooting Permit,10/04/2022 07:30:00 AM,10/04/2022 11:45:00 PM,09/27/2022 10:58:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between HOWARD STREET and CANAL STREET,Manhattan,2,5,Film,Feature,United States of America,10013
+674744,Shooting Permit,10/03/2022 07:00:00 AM,10/04/2022 02:00:00 AM,09/27/2022 10:52:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, EAST 81 STREET between MADISON AVENUE and 5 AVENUE",Brooklyn,"1, 4, 8","19, 83, 90",Film,Feature,United States of America,"10028, 11237"
+674739,Shooting Permit,09/30/2022 04:00:00 PM,10/01/2022 06:00:00 AM,09/27/2022 10:37:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674737,Theater Load in and Load Outs,10/02/2022 12:01:00 AM,10/02/2022 11:59:00 PM,09/27/2022 10:35:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+674734,Theater Load in and Load Outs,10/10/2022 12:01:00 AM,10/11/2022 06:00:00 AM,09/27/2022 10:09:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+674733,Theater Load in and Load Outs,09/30/2022 12:01:00 AM,10/01/2022 06:00:00 AM,09/27/2022 10:05:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+674732,Theater Load in and Load Outs,09/30/2022 12:01:00 AM,10/04/2022 11:59:00 PM,09/27/2022 09:57:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+674726,Shooting Permit,09/29/2022 08:30:00 AM,09/29/2022 10:00:00 PM,09/27/2022 09:24:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE ST between WAVERLY PLACE and SHERIDAN SQUARE, BLEECKER STREET between CHRISTOPHER STREET and GROVE STREET, CHRISTOPHER STREET between BLEECKER STREET and SEVENTH AVENUE SOUTH, SEVENTH AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, SEVENTH AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, SEVENTH AVENUE SOUTH between CHARLES STREET and PERRY STREET, SEVENTH AVENUE SOUTH between WEST 11 STREET and PERRY STREET, GREENWICH AVENUE between WEST 12 STREET and 7 AVENUE SOUTH",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+674721,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 09:00:00 PM,09/27/2022 09:04:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 139 STREET between ST ANN'S AVENUE and BROOK AVENUE,Bronx,1,40,Commercial,Commercial,United States of America,10454
+674714,Shooting Permit,09/29/2022 10:00:00 AM,09/29/2022 10:00:00 PM,09/27/2022 08:16:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+674702,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 11:30:00 PM,09/26/2022 10:22:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE ROAD between 79 STREET and 83 STREET, HARBOR VIEW TERRACE between HARBOR LANE and 82 STREET, 82 STREET between SHORE ROAD and HARBOR VIEW TERRACE, NARROWS AVENUE between 81 STREET and 83 STREET, 82 STREET between HARBOR VIEW TERRACE and NARROWS AVENUE, 82 STREET between NARROWS AVENUE and COLONIAL ROAD, NARROWS AVE between 80TH ST and 81ST ST, 80TH ST between NARROWS AVE and SHORE RD, NARROWS AVENUE between 79 STREET and 80TH ST, 3 AVENUE between 72 STREET and 73 STREET, 3 AVENUE between 76 STREET and 77 STREET, 76 STREET between 3 AVENUE and 4 AVENUE, 76 STREET between 3 AVENUE and RIDGE BOULEVARD, BAY RIDGE PARKWAY between 3 AVENUE and 4 AVENUE, BAY RIDGE PARKWAY between RIDGE BOULEVARD and 3 AVENUE, 78 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between 78 STREET and 79 STREET, 3 AVENUE between 77 STREET and 78 STREET",Brooklyn,10,68,Television,Episodic series,United States of America,11209
+674701,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 08:00:00 PM,09/26/2022 09:24:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 144 STREET between HAMILTON TERRACE and CONVENT AVENUE, ST NICHOLAS PLACE between WEST 152 STREET and WEST 151 STREET, WEST 152 STREET between ST NICHOLAS PLACE and ST NICHOLAS AVENUE, BRADHURST AVENUE between WEST 142 STREET and WEST 143 STREET, HAMILTON TERRACE between WEST 144 STREET and WEST 141 STREET, WEST 144 STREET between CONVENT AVENUE and HAMILTON TERRACE, WEST 142 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, EDGECOMBE AVENUE between WEST 142 STREET and WEST 141 STREET",Manhattan,"10, 2, 4, 9","10, 30, 32, 6",Film,Feature,United States of America,"10001, 10011, 10030, 10031"
+674700,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 08:00:00 PM,09/26/2022 08:56:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between MERCER STREET and GREENE STREET,Manhattan,"2, 3","1, 7, 9",Still Photography,Not Applicable,United States of America,"10002, 10009, 10012, 10013"
+674699,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 08:00:00 PM,09/26/2022 08:45:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between GREENE STREET and MERCER STREET,Manhattan,2,1,Still Photography,Not Applicable,United States of America,"10012, 10013"
+674693,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 10:00:00 PM,09/26/2022 06:34:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 70 STREET and EAST 71 STREET, EAST 70 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 72 STREET, PARK AVENUE between EAST 71 STREET and EAST 72 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10021
+674681,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 09:00:00 PM,09/26/2022 05:22:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between ASH STREET and BOX STREET, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MCGUINNESS BOULEVARD between BOX STREET and CLAY STREET, PAIDGE AVENUE between MCGUINNESS BOULEVARD and CLAY STREET, CLAY STREET between MCGUINNESS BOULEVARD and PAIDGE AVENUE, PAIDGE AVENUE between CLAY STREET and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674676,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 11:00:00 PM,09/26/2022 05:05:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+674671,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/26/2022 04:31:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+674670,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/26/2022 04:28:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+674664,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 10:00:00 PM,09/26/2022 04:07:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 87 STREET between EAST END AVENUE and YORK AVENUE, EAST END AVENUE between EAST 85 STREET and EAST 87 STREET, YORK AVENUE between EAST 81 STREET and EAST 86 STREET, EAST 87 STREET between 1 AVENUE and YORK AVENUE, PARK AVENUE between EAST 54 STREET and EAST 58 STREET, PARK AVENUE between EAST 58 STREET and EAST 60 STREET, EAST 59 STREET between PARK AVENUE and 3 AVENUE",Manhattan,"5, 6, 8","17, 18, 19",Television,Episodic series,United States of America,"10022, 10028, 10128"
+674660,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 09:00:00 PM,09/26/2022 04:01:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 PLACE between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 39 PLACE and 40 STREET, 40 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 40 STREET and 43 STREET, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 STREET between 43 AVENUE and QUEENS BOULEVARD",Queens,2,108,Television,Made for TV/mini-series,United States of America,11104
+674652,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 08:00:00 PM,09/26/2022 03:27:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+674651,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 08:00:00 PM,09/26/2022 03:26:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+674646,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 08:00:00 PM,09/26/2022 03:11:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+674645,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 08:00:00 PM,09/26/2022 03:11:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, VAN BRUNT STREET between HAMILTON AVENUE and BOWNE STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+674644,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 08:00:00 PM,09/26/2022 03:11:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 47 AVENUE and 49 AVENUE, CENTRE STREET between MYRTLE AVENUE and SENECA AVENUE, MYRTLE AVENUE between SENECA AVENUE and GEORGE STREET, GEORGE STREET between MYRTLE AVENUE and SENECA AVENUE, SENECA AVENUE between WEIRFIELD STREET and CENTRE STREET, WEIRFIELD STREET between MYRTLE AVENUE and SENECA AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE",Queens,"2, 5","104, 108",Television,Episodic series,United States of America,"11101, 11237, 11385"
+674638,Shooting Permit,09/29/2022 06:30:00 AM,09/29/2022 06:30:00 PM,09/26/2022 03:08:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",Center Dr between EAST DRIVE and 65 st,Manhattan,"5, 64","18, 22",Still Photography,Not Applicable,United States of America,"10019, 10023"
+674633,Shooting Permit,09/27/2022 06:00:00 AM,09/27/2022 10:00:00 PM,09/26/2022 02:29:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, 10 AVENUE between WEST STREET and GANSEVOORT STREET, 10 AVENUE between GANSEVOORT STREET and LITTLE WEST 12 STREET, 10 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 10 AVENUE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between 10 AVENUE and 9 AVENUE",Manhattan,2,6,Television,Episodic series,United States of America,10014
+674629,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 09:00:00 PM,09/26/2022 02:18:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674628,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 09:00:00 PM,09/26/2022 02:15:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674627,Shooting Permit,09/29/2022 08:00:00 AM,09/29/2022 11:00:00 PM,09/26/2022 02:10:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET, LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, ATLANTIC AVENUE between CLINTON AVENUE and ST JAMES PLACE, GATES AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WAVERLY AVENUE between GREENE AVENUE and GATES AVENUE, WAVERLY AVENUE between GATES AVENUE and FULTON STREET, DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, DEKALB AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, WAVERLY AVENUE between FULTON STREET and ATLANTIC AVENUE",Queens,"1, 2, 8","108, 77, 88, 94",Television,Cable-episodic,United States of America,"11101, 11201, 11217, 11222, 11238, 11378"
+674626,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 09:00:00 PM,09/26/2022 02:06:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674621,Shooting Permit,09/28/2022 06:30:00 AM,09/28/2022 11:00:00 PM,09/26/2022 01:22:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WAVERLY AVENUE between GREENE AVENUE and GATES AVENUE, ATLANTIC AVENUE between CLINTON AVENUE and ST JAMES PLACE, WAVERLY AVENUE between GATES AVENUE and FULTON STREET, DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, DEKALB AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, WAVERLY AVENUE between FULTON STREET and ATLANTIC AVENUE",Brooklyn,"2, 8","77, 88",Television,Cable-episodic,United States of America,"11201, 11217, 11238"
+674618,Shooting Permit,09/29/2022 09:00:00 AM,09/29/2022 11:00:00 PM,09/26/2022 01:10:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 8 STREET and WEST 12 STREET, WEST 12TH STREET between SURF AVENUE and DEAD END, WEST 10 STREET between SURF AVENUE and BOARDWALK, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE, MERMAID AVENUE between WEST 15 STREET and STILLWELL AVENUE, BOWERY STREET between JONES WALK and WEST 12 STREET",Brooklyn,13,60,Film,Feature,United States of America,"11223, 11224"
+674614,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 09:00:00 PM,09/26/2022 12:52:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",HOE AVENUE between EAST 173 STREET and EAST 174 STREET,Bronx,3,42,WEB,Not Applicable,United States of America,10460
+674613,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 10:00:00 PM,09/26/2022 12:49:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 213 STREET between 10 AVENUE and BROADWAY, THIRD AVENUE between EAST 140 STREET and EAST 141 STREET",Manhattan,"1, 12","34, 40",Commercial,Commercial,United States of America,"10034, 10451, 10454"
+674608,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 09:00:00 PM,09/26/2022 12:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674602,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/26/2022 11:40:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+674601,Shooting Permit,09/29/2022 04:00:00 PM,09/30/2022 05:00:00 AM,09/26/2022 11:37:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674598,Shooting Permit,09/28/2022 08:00:00 AM,09/28/2022 10:00:00 PM,09/26/2022 11:21:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 33 STREET and 34 STREET, 34 AVENUE between 34 STREET and 35 STREET, 34 STREET between BROADWAY and 34 AVENUE, 34 STREET between 34 AVENUE and 35 AVENUE, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+674586,Shooting Permit,09/28/2022 12:00:00 PM,09/29/2022 01:00:00 AM,09/26/2022 10:40:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 12 STREET and WEST 7 STREET, WEST 10 STREET between SURF AVENUE and BOARDWALK WEST, W 12TH ST between SURF AVENUE and DEAD END, WEST 15 STREET between SURF AVENUE and BOARDWALK WEST, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE, STILLWELL AVENUE between BOWERY STREET and BOARDWALK WEST",Brooklyn,13,60,Television,Episodic series,United States of America,"11223, 11224, 11235"
+674579,Shooting Permit,09/30/2022 09:00:00 AM,09/30/2022 11:00:00 PM,09/26/2022 10:29:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEIGEL STREET between WHITE STREET and BOGART STREET,Brooklyn,1,90,Television,Episodic series,United States of America,11206
+674578,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/26/2022 10:28:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, FROST STREET between MEEKER AVENUE and LORIMER STREET, MEEKER AVE. between JACKSON STREET and WITHERS STREET, UNION AVENUE between FROST STREET and JACKSON STREET, WITHERS ST between UNION AVENUE and MEEKER AVENUE, MAUJER STREET between BUSHWICK AVENUE and MANHATTAN AVENUE, GRAHAM AVENUE between GRAND STREET and SCHOLES STREET, HUMBOLDT STREET between GRAND STREET and MAUJER STREET",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11206, 11211"
+674576,Shooting Permit,09/29/2022 08:00:00 AM,09/29/2022 10:00:00 PM,09/26/2022 10:21:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEIGEL STREET between WHITE STREET and BOGART STREET,Brooklyn,1,90,Television,Episodic series,United States of America,11206
+674572,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 10:00:00 PM,09/26/2022 10:10:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+674569,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 09:00:00 PM,09/26/2022 10:01:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+674567,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 07:00:00 PM,09/26/2022 09:46:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,"14, 55","70, 78",Commercial,Commercial,United States of America,"11215, 11226"
+674566,Shooting Permit,09/29/2022 11:00:00 AM,09/30/2022 02:00:00 AM,09/26/2022 09:45:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE STREET between PRINCE STREET and SPRING STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+674564,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 11:00:00 PM,09/26/2022 09:37:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+674560,Shooting Permit,09/28/2022 09:30:00 AM,09/29/2022 12:00:00 AM,09/26/2022 09:21:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","DORCHESTER ROAD between EAST 19 STREET and EAST 18 STREET, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD",Brooklyn,14,70,WEB,Not Applicable,United States of America,"11218, 11226"
+674557,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 11:00:00 PM,09/26/2022 09:03:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","70 STREET between 34 AVENUE and 35 AVENUE, 69 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 64 STREET and 69 STREET, 70 STREET between NORTHERN BOULEVARD and 34 AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTHERN BOULEVARD between 74 STREET and 75 STREET, NORTHERN BOULEVARD between 75 STREET and 79 STREET, NORTHERN BOULEVARD between 80 STREET and 81 STREET, NORTHERN BOULEVARD between 81 STREET and 85 STREET",Queens,"1, 2, 3","108, 115, 94",Television,Episodic series,United States of America,"11222, 11372, 11377"
+674547,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 08:00:00 PM,09/26/2022 07:06:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 87 STREET and EAST 88 STREET, EAST 87 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10028, 10128"
+674535,Shooting Permit,09/28/2022 11:00:00 AM,09/29/2022 02:00:00 AM,09/25/2022 10:08:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVENUE between LAFAYETTE AVENUE and GREENE AVENUE,Brooklyn,2,88,Commercial,Commercial,United States of America,11238
+674529,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 11:00:00 PM,09/25/2022 07:56:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 11 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 11 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+674525,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 09:00:00 PM,09/25/2022 05:22:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",47 STREET between 3 AVENUE and 2 AVENUE,Brooklyn,7,72,Commercial,Commercial,United States of America,11220
+674522,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 10:00:00 PM,09/25/2022 03:23:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14TH ST between 9TH AVE and 10TH AVE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, 10TH AVE between WEST 14TH ST and LITTLE WEST 12TH ST, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, WEST 16 STREET between 7 AVENUE and 9 AVENUE, 8 AVENUE between WEST 16 STREET and WEST 17 STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, HARRISON STREET between WEST STREET and GREENWICH STREET, WALKER STREET between LAFAYETTE STREET and 6 AVENUE, 6 AVENUE between WHITE STREET and LISPENARD STREET",Manhattan,"1, 2, 4","1, 10, 5, 6",Television,Episodic series,United States of America,"10011, 10013, 10014"
+674491,Theater Load in and Load Outs,10/13/2022 12:01:00 AM,10/13/2022 11:59:00 PM,09/24/2022 09:38:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+674487,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 09:00:00 PM,09/23/2022 11:50:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 PLACE between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 39 PLACE and 40 STREET, 40 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 40 STREET and 43 STREET, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 STREET between 43 AVENUE and QUEENS BOULEVARD",Queens,2,108,Television,Made for TV/mini-series,United States of America,11104
+674477,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 11:00:00 PM,09/23/2022 05:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+674466,Shooting Permit,09/29/2022 11:00:00 AM,09/30/2022 01:00:00 AM,09/23/2022 05:07:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 12 AVENUE and 11 AVENUE, WEST 51 STREET between 10 AVENUE and 11 AVENUE, WEST 50 STREET between 11 AVENUE and 12 AVENUE, WEST 49 STREET between 11 AVENUE and 12 AVENUE, WEST 50 STREET between 10 AVENUE and 11 AVENUE, 6 AVENUE between MINETTA LANE and WEST 4 STREET, WEST 4 STREET between 6 AVENUE and WASHINGTON SQUARE WEST, 6TH AVE between MINETTA LN and HOUSTON ST, BLEEKER STREET between 6 AVENUE and MACDOUGAL STREET, MINETTA LANE between MACDOUGAL STREET and 6 AVENUE",Manhattan,"2, 4","18, 6",Television,Cable-episodic,United States of America,"10012, 10014, 10019"
+674461,Shooting Permit,09/27/2022 01:00:00 AM,09/28/2022 09:00:00 PM,09/23/2022 04:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 12 AVENUE and 11 AVENUE, 12 AVENUE between WEST 49 STREET and WEST 48 STREET",Manhattan,4,18,Television,News,United States of America,10019
+674456,Shooting Permit,09/30/2022 11:00:00 AM,10/01/2022 03:00:00 AM,09/23/2022 04:27:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 149 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 149 STREET and WEST 145 STREET, WEST 146 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 147 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 145TH ST. between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BLVD between WEST 147 STREET and WEST 145 STREET",Manhattan,10,32,Television,Cable-episodic,United States of America,10039
+674455,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 10:00:00 PM,09/23/2022 04:24:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, STANTON STREET between SUFFOLK STREET and ATTORNEY STREET, ESSEX STREET between STANTON STREET and DELANCEY STREET, ELDRIDGE STREET between RIVINGTON STREET and DELANCEY STREET, ESSEX STREET between EAST HOUSTON STREET and STANTON STREET, CLINTON STREET between STANTON STREET and RIVINGTON STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10009"
+674451,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 09:00:00 PM,09/23/2022 04:04:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD PARK BLVD WEST between GOULDEN AVENUE and PAUL AVENUE, PAUL AVENUE between BEDFORD PARK BLVD WEST and WEST 205 STREET, BEDFORD PARK BLVD WEST between PAUL AVENUE and JEROME AVENUE",Bronx,7,52,Television,Cable-episodic,United States of America,10468
+674439,Shooting Permit,09/26/2022 08:00:00 AM,09/26/2022 07:00:00 PM,09/23/2022 03:13:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",East 21st between PARK AVENUE SOUTH and east 20th,Manhattan,N/A,N/A,Still Photography,Not Applicable,United States of America,N/A
+674435,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 06:00:00 PM,09/23/2022 02:56:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,"1, 2","84, 94",Film,Feature,United States of America,"11201, 11249"
+674434,Shooting Permit,10/03/2022 07:00:00 AM,10/03/2022 09:00:00 PM,09/23/2022 02:46:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 23 STREET and 22 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+674425,Shooting Permit,09/26/2022 09:00:00 AM,09/27/2022 07:00:00 PM,09/23/2022 02:27:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 72 STREET and EAST 74 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, MERCER STREET between WEST HOUSTON STREET and PRINCE STREET, PRINCE STREET between MERCER STREET and BROADWAY, WEST HOUSTON STREET between GREENE STREET and MERCER STREET, GREENE STREET between WEST HOUSTON STREET and PRINCE STREET, PRINCE STREET between GREENE STREET and MERCER STREET, MOTT STREET between PRINCE STREET and EAST HOUSTON STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, GRAND STREET between MERCER STREET and BROADWAY, HOWARD STREET between BROADWAY and CROSBY STREET, BLEEKER STREET between LAGUARDIA PLACE and MERCER STREET, GRAND STREET between GREENE STREET and MERCER STREET, CROSBY STREET between GRAND STREET and HOWARD STREET, MERCER STREET between GRAND STREET and HOWARD STREET, HOWARD STREET between MERCER STREET and BROADWAY, MERCER STREET between HOWARD STREET and CANAL STREET, GREENE STREET between WEST HOUSTON STREET and SPRING STREET",Manhattan,"2, 64, 8","1, 19, 22, 5, 6",Television,Episodic series,United States of America,"10012, 10013, 10021, 10023"
+674423,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 09:00:00 PM,09/23/2022 02:18:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROSE AVENUE between KISSENA BOULEVARD and ROBINSON STREET, ROSE AVENUE between ROBINSON STREET and BOWNE STREET, KISSENA BOULEVARD between ROSE AVENUE and QUINCE AVENUE, ROBINSON STREET between ROSE AVENUE and QUINCE AVENUE, BOWNE STREET between ROSE AVENUE and QUINCE AVENUE, BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and 157 STREET, Horace Harding Expy between 156 STREET and Parsons Blvd, 157 St between Horace Harding Expy and 59 Ave, 156 St between Horace Harding Expy and 59 Ave",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365, 11367"
+674403,Shooting Permit,09/30/2022 06:00:00 PM,10/01/2022 07:00:00 AM,09/23/2022 12:49:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, EAST 41 STREET between 5 AVENUE and LEXINGTON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017"
+674402,Shooting Permit,09/29/2022 08:00:00 AM,09/30/2022 12:00:00 AM,09/23/2022 12:48:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 25 STREET and EAST 23 STREET, LEXINGTON AVENUE between EAST 25 STREET and EAST 24 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 21 STREET and EAST 19 STREET, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 20 STREET between GRAMERCY PARK EAST and IRVING PLACE, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, IRVING PLACE between EAST 15 STREET and EAST 16 STREET, GRAMERCY PARK WEST between EAST 20 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+674401,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/23/2022 12:45:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 175 STREET",Manhattan,12,33,Still Photography,Not Applicable,United States of America,10033
+674398,Shooting Permit,09/28/2022 03:00:00 PM,09/29/2022 03:00:00 AM,09/23/2022 12:20:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 254 STREET and WEST 261 STREET, WEST 256 STREET between BROADWAY and POST ROAD",Bronx,"26, 8",50,Television,Cable-episodic,United States of America,10471
+674395,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 08:30:00 PM,09/23/2022 12:09:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEW LOTS AVENUE between ESSEX STREET and SHEPHERD AVENUE, NEW LOTS AVENUE between CLEVELAND STREET and ESSEX STREET, ESSEX STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, ELTON STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, FOUNTAIN AVENUE between VANDALIA AVENUE and SEAVIEW AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,"11208, 11239"
+674392,Shooting Permit,09/27/2022 10:00:00 AM,09/28/2022 01:00:00 AM,09/23/2022 11:57:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and NORTH MOORE STREET, WEST STREET between LAIGHT STREET and HUBERT STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, HUDSON STREET between ERICSSON PLACE and NORTH MOORE STREET, HUDSON STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, LEONARD STREET between HUDSON STREET and WEST BROADWAY, HUDSON STREET between FRANKLIN STREET and HARRISON STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, JAY STREET between GREENWICH STREET and STAPLE STREET, JAY STREET between STAPLE STREET and HUDSON STREET, STAPLE STREET between HARRISON STREET and JAY STREET, DUANE STREET between STAPLE STREET and HUDSON STREET, LEONARD STREET between WEST BROADWAY and CHURCH STREET, HUDSON STREET between WORTH STREET and LEONARD STREET",Manhattan,"1, 5","1, 14",Television,Episodic series,United States of America,"10013, 10017, 10173, 10282"
+674390,Shooting Permit,09/28/2022 03:00:00 PM,09/28/2022 07:30:00 PM,09/23/2022 11:51:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",FORT GREENE PLACE between FULTON STREET and DEKALB AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+674378,Shooting Permit,09/27/2022 08:00:00 AM,09/27/2022 11:59:00 PM,09/23/2022 11:13:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROSSBAY BOULEVARD between 162 AVENUE and 161 AVENUE,Queens,10,106,WEB,Not Applicable,United States of America,11414
+674373,Shooting Permit,11/11/2022 06:00:00 AM,11/11/2022 10:00:00 PM,09/23/2022 10:50:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674371,Shooting Permit,11/10/2022 06:00:00 AM,11/10/2022 10:00:00 PM,09/23/2022 10:47:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674369,Shooting Permit,11/09/2022 06:00:00 AM,11/09/2022 10:00:00 PM,09/23/2022 10:39:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674367,Shooting Permit,11/08/2022 06:00:00 AM,11/08/2022 10:00:00 PM,09/23/2022 10:35:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674364,Shooting Permit,11/07/2022 06:00:00 AM,11/07/2022 10:00:00 PM,09/23/2022 10:32:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674362,Shooting Permit,09/27/2022 10:30:00 AM,09/27/2022 08:00:00 PM,09/23/2022 10:29:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 28 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,10,Commercial,Commercial,United States of America,10001
+674361,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 09:00:00 PM,09/23/2022 10:24:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between STARR STREET and GRANDVIEW AVENUE, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, WOODWARD AVENUE between STARR STREET and SUYDAM STREET, 54 STREET between FLUSHING AVENUE and GRAND AVENUE",Brooklyn,"2, 5","104, 88",Television,Cable-episodic,United States of America,"11205, 11378, 11385"
+674359,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 11:59:00 PM,09/23/2022 10:09:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674358,Shooting Permit,09/25/2022 07:00:00 AM,09/25/2022 09:00:00 PM,09/23/2022 09:59:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 175 STREET",Manhattan,12,33,Still Photography,Not Applicable,United States of America,10033
+674352,Shooting Permit,09/26/2022 08:00:00 AM,09/26/2022 09:00:00 PM,09/23/2022 09:21:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674337,Shooting Permit,09/27/2022 06:00:00 AM,09/27/2022 10:00:00 PM,09/22/2022 10:18:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 21 STREET and 23 STREET, 23 STREET between 31 DRIVE and BROADWAY, 31 DRIVE between 21 STREET and 23 STREET, BROADWAY between 21 STREET and 14 STREET, 14 STREET between 31 DRIVE and BROADWAY, 31 STREET between BROADWAY and 31 AVENUE, 30 STREET between 31 AVENUE and BROADWAY, 30 STREET between BROADWAY and 34 AVENUE, 32 STREET between BROADWAY and 31 AVENUE, BROADWAY between 31 STREET and 32 STREET, BROADWAY between 32 STREET and 33 STREET, BROADWAY between 29 STREET and 30 STREET, 30 STREET between 30 AVENUE and NEWTOWN AVENUE, 30TH AVE between 30 STREET and 29TH ST, 30 AVENUE between 30 STREET and 31 STREET, 30TH AVE between 27 STREET and 29TH ST, 27 STREET between 30 AVENUE and NEWTOWN AVENUE, 30 AVENUE between 27 STREET and CRESCENT STREET",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105, 11106"
+674313,Shooting Permit,10/01/2022 06:00:00 AM,10/01/2022 08:00:00 PM,09/22/2022 08:37:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST HOUSTON STREET and PRINCE STREET, BROADWAY between PRINCE STREET and SPRING STREET",Manhattan,2,"1, 5",WEB,Not Applicable,United States of America,10012
+674312,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 08:00:00 PM,09/22/2022 08:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between PRINCE STREET and EAST HOUSTON STREET, BROADWAY between PRINCE STREET and SPRING STREET",Manhattan,2,"1, 5",WEB,Not Applicable,United States of America,10012
+674307,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 09:00:00 PM,09/22/2022 08:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between CANAL STREET and HESTER STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET",Manhattan,3,5,WEB,Not Applicable,United States of America,10002
+674302,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 11:00:00 PM,09/22/2022 06:44:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 30 STREET between LEXINGTON AVENUE and 1 AVENUE,Manhattan,6,"13, 17",Television,Cable-episodic,United States of America,10016
+674295,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 08:00:00 PM,09/22/2022 05:54:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, CORNELIA STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between MADISON STREET and HANCOCK STREET, KNICKERBOCKER AVENUE between HANCOCK STREET and WEIRFIELD STREET, WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between HANCOCK STREET and WEIRFIELD STREET, HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+674275,Shooting Permit,09/28/2022 08:00:00 AM,09/28/2022 10:00:00 PM,09/22/2022 04:40:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE, GRAND CONCOURSE between TUDOR PLACE and EAST 164 STREET, MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, MCCLELLAN STREET between GRAND CONCOURSE and CARROLL PLACE, CARROLL PLACE between MCCLELLAN STREET and EAST 166 STREET",Bronx,4,44,Film,Feature,United States of America,"10451, 10452, 10456"
+674256,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 09:00:00 PM,09/22/2022 04:12:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BELL BOULEVARD between 38 AVENUE and 41 AVENUE, 41 AVENUE between BELL BOULEVARD and 214 PLACE, 220TH STREET between 40 AVENUE and DEAD END, 40 AVENUE between 217 STREET and 221 STREET, 219TH ST between 40 AVENUE and DEAD END, 220 STREET between 39 AVENUE and 40 AVENUE, 219 STREET between 39 AVENUE and 40 AVENUE, 218 STREET between 39 AVENUE and 40 AVENUE, 39 AVENUE between 217 STREET and 221 STREET, 218 STREET between 38 AVENUE and 39 AVENUE, 219 STREET between 38 AVENUE and 39 AVENUE, 220 STREET between 38 AVENUE and 39 AVENUE",Queens,11,111,Television,Made for TV/mini-series,United States of America,11361
+674234,Shooting Permit,09/27/2022 09:30:00 AM,09/27/2022 11:59:00 PM,09/22/2022 03:38:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST 3 STREET and EAST 2 STREET, EAST 2 STREET between BOWERY and 2 AVENUE, 2 AVENUE between EAST 2 STREET and EAST 3 STREET",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+674230,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 08:30:00 PM,09/22/2022 03:31:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST 2 STREET and EAST 3 STREET, EAST 2 STREET between BOWERY and 2 AVENUE, 2 AVENUE between EAST 2 STREET and EAST 3 STREET, HUDSON STREET between JAY STREET and DUANE STREET, DUANE STREET between STAPLE STREET and HUDSON STREET, JAY STREET between STAPLE STREET and HUDSON STREET, DUANE STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2, 3","1, 9",Television,Episodic series,United States of America,"10003, 10012, 10013"
+674187,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 09:00:00 PM,09/22/2022 01:43:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+674182,Shooting Permit,09/23/2022 10:00:00 AM,09/23/2022 11:30:00 PM,09/22/2022 01:27:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674179,Shooting Permit,09/26/2022 08:00:00 AM,09/26/2022 10:00:00 PM,09/22/2022 01:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOWNING STREET between VARICK STREET and BEDFORD STREET, VARICK STREET between DOWNING STREET and CARMINE STREET, VARICK STREET between CHARLTON STREET and WEST HOUSTON STREET, KING STREET between HUDSON STREET and VARICK STREET, 7 AVENUE SOUTH between LEROY STREET and CARMINE STREET, GREENWICH STREET between WEST HOUSTON STREET and CLARKSON STREET, CLARKSON STREET between GREENWICH STREET and HUDSON STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between WEST HOUSTON STREET and CLARKSON STREET, HUDSON STREET between CLARKSON STREET and ST LUKES PLACE",Manhattan,2,"1, 6",Television,Episodic series,United States of America,10014
+674165,Shooting Permit,10/03/2022 08:00:00 AM,10/03/2022 07:00:00 PM,09/22/2022 12:48:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBORO ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+674167,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 07:00:00 PM,09/22/2022 12:48:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+674168,Shooting Permit,10/06/2022 07:00:00 AM,10/06/2022 07:00:00 PM,09/22/2022 12:48:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRATFORD ROAD between ALBEMARLE ROAD and BEVERLEY ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+674158,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 09:00:00 PM,09/22/2022 12:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between TUDOR PLACE and EAST 164 STREET, MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, MCCLELLAN STREET between GRAND CONCOURSE and CARROLL PLACE, CARROLL PLACE between MCCLELLAN STREET and EAST 166 STREET, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Film,Feature,United States of America,"10451, 10452, 10456"
+674147,Theater Load in and Load Outs,10/02/2022 12:01:00 AM,10/04/2022 06:00:00 AM,09/22/2022 11:29:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+674146,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/22/2022 11:26:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between RANDOLPH STREET and JOHNSON AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, RANDOLPH STREET between STEWART AVENUE and GARDNER AVENUE, FLUSHING AVE between SCOTT AVENUE and ONDERDONK AVE, ONDERDONK AVENUE between FLUSHING AVENUE and TROUTMAN STREET, FLUSHING AVENUE between WOODWARD AVENUE and ONDERDONK AVENUE",Brooklyn,"1, 4, 5","104, 83, 90",Television,Cable-episodic,United States of America,"11237, 11385"
+674144,Theater Load in and Load Outs,09/28/2022 12:01:00 AM,09/29/2022 06:00:00 AM,09/22/2022 11:23:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+674143,Shooting Permit,09/30/2022 06:00:00 AM,09/30/2022 11:00:00 PM,09/22/2022 11:13:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674142,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 11:00:00 PM,09/22/2022 11:12:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674141,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 11:00:00 PM,09/22/2022 11:11:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674139,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 10:00:00 PM,09/22/2022 11:08:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674137,Shooting Permit,09/27/2022 09:00:00 AM,09/27/2022 11:00:00 PM,09/22/2022 11:04:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",SHEEPSHEAD BAY ROAD between EMMONS AVENUE and BAY COURT,Brooklyn,15,61,Theater,Theater,United States of America,11235
+674134,Theater Load in and Load Outs,10/08/2022 08:00:00 AM,10/08/2022 11:59:00 PM,09/22/2022 10:56:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between DEKALB AVENUE and FULTON STREET,Brooklyn,2,88,Theater,Theater,United States of America,11217
+674133,Theater Load in and Load Outs,10/03/2022 08:00:00 AM,10/03/2022 11:59:00 PM,09/22/2022 10:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between FULTON STREET and DEKALB AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+674130,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 11:00:00 PM,09/22/2022 10:36:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",RAILROAD AVE between GREENPOINT AVE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+674128,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 08:00:00 PM,09/22/2022 10:32:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+674127,Shooting Permit,09/24/2022 09:00:00 AM,09/24/2022 10:00:00 PM,09/22/2022 10:32:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+674125,Shooting Permit,09/30/2022 05:00:00 PM,10/01/2022 04:00:00 AM,09/22/2022 10:31:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between WEST HOUSTON and PRINCE STREET,Manhattan,2,5,Film,Feature,United States of America,10012
+674113,Shooting Permit,09/26/2022 08:00:00 AM,09/26/2022 11:00:00 PM,09/22/2022 09:33:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+674108,Shooting Permit,09/27/2022 03:00:00 PM,09/27/2022 08:00:00 PM,09/22/2022 09:23:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between BEDFORD AVENUE and BERRY STREET,Brooklyn,1,90,Theater,Theater,United States of America,11249
+674104,Shooting Permit,09/28/2022 01:30:00 PM,09/28/2022 02:30:00 PM,09/22/2022 09:01:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between SPRING STREET and BROOME STREET,Manhattan,2,"1, 5",Commercial,Commercial,United States of America,10012
+674075,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 07:00:00 PM,09/21/2022 08:53:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 17 STREET between 9 AVENUE and 10 AVENUE,Brooklyn,"2, 4","10, 88",WEB,Not Applicable,United States of America,"10011, 11205"
+674074,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 07:00:00 PM,09/21/2022 08:46:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 24 STREET between 2 AVENUE and 3 AVENUE, POWERS STREET between HUMBOLT STREET and BUSHWICK AVENUE",Manhattan,"1, 6","13, 90",WEB,Not Applicable,United States of America,"10010, 11211"
+674069,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 07:00:00 PM,09/21/2022 07:16:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between COURT STREET and CLINTON STREET, WEST 26 STREET between 6 AVENUE and 7 AVENUE",Brooklyn,"4, 5, 6","13, 76",WEB,Not Applicable,United States of America,"10001, 11201"
+674055,Shooting Permit,09/28/2022 09:00:00 AM,09/29/2022 02:00:00 AM,09/21/2022 05:33:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 9 STREET between AVENUE B and AVENUE C, JEFFERSON STREET between EVERGREEN and STANWIX",Manhattan,"3, 4","83, 9",Film,Feature,United States of America,"10009, 11206"
+674053,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 11:00:00 PM,09/21/2022 05:28:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+674052,Shooting Permit,09/27/2022 09:00:00 PM,09/28/2022 08:00:00 AM,09/21/2022 05:26:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Commercial,Commercial,United States of America,10036
+674040,Shooting Permit,09/26/2022 08:00:00 AM,09/26/2022 09:00:00 PM,09/21/2022 04:47:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Commercial,Commercial,United States of America,10036
+674024,Shooting Permit,10/21/2022 06:00:00 AM,10/21/2022 10:00:00 PM,09/21/2022 04:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674021,Shooting Permit,10/20/2022 06:00:00 AM,10/20/2022 10:00:00 PM,09/21/2022 04:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674020,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 11:00:00 PM,09/21/2022 03:58:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+674018,Shooting Permit,10/19/2022 06:00:00 AM,10/19/2022 10:00:00 PM,09/21/2022 03:57:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674017,Shooting Permit,10/18/2022 06:00:00 AM,10/18/2022 10:00:00 PM,09/21/2022 03:52:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674014,Shooting Permit,10/17/2022 06:00:00 AM,10/17/2022 10:00:00 PM,09/21/2022 03:46:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+674003,Shooting Permit,09/23/2022 09:00:00 AM,09/23/2022 11:59:00 PM,09/21/2022 03:20:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+673999,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 11:00:00 PM,09/21/2022 03:17:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between HUDSON STREET and WEST BROADWAY, GREENWICH STREET between HARRISON STREET and FRANKLIN STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between NORTH MOORE STREET and WORTH STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, VARICK ST between LEONARD ST and N MOORE ST, WALKER STREET between 6 AVENUE and BROADWAY, 6 AVENUE between FRANKLIN STREET and LISPENARD STREET, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+673986,Theater Load in and Load Outs,09/30/2022 12:01:00 AM,10/02/2022 11:59:00 PM,09/21/2022 02:56:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+673985,Shooting Permit,10/07/2022 06:00:00 AM,10/07/2022 10:00:00 PM,09/21/2022 02:56:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+673984,Shooting Permit,10/06/2022 06:00:00 AM,10/06/2022 10:00:00 PM,09/21/2022 02:52:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+673982,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 10:00:00 PM,09/21/2022 02:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+673981,Shooting Permit,09/29/2022 04:00:00 PM,09/30/2022 03:00:00 AM,09/21/2022 02:45:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between GRANDVIEW AVE and WOODWARD AVENUE, TROUTMAN STREET between WOODWARD AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between METROPOLITAN AVENUE and 53 STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, WOODWARD AVENUE between DEKALB AVENUE and STARR STREET, 54 PLACE between ARNOLD AVENUE and NURGE AVENUE, NURGE AVENUE between 55 STREET and 54 PLACE, ARNOLD AVENUE between 55 STREET and 54 STREET",Queens,5,104,Television,Cable-episodic,United States of America,"11378, 11385"
+673980,Theater Load in and Load Outs,09/29/2022 12:01:00 AM,09/29/2022 11:59:00 PM,09/21/2022 02:43:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+673979,Shooting Permit,10/04/2022 06:00:00 AM,10/04/2022 10:00:00 PM,09/21/2022 02:43:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+673973,Shooting Permit,10/03/2022 06:00:00 AM,10/03/2022 10:00:00 PM,09/21/2022 02:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+673968,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 10:00:00 PM,09/21/2022 02:23:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 28 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10001
+673967,Shooting Permit,09/25/2022 03:00:00 AM,09/25/2022 01:00:00 PM,09/21/2022 02:21:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+673965,Shooting Permit,09/24/2022 03:00:00 AM,09/24/2022 01:00:00 PM,09/21/2022 02:18:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+673959,Shooting Permit,09/23/2022 05:00:00 PM,09/24/2022 06:30:00 AM,09/21/2022 02:11:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between MARKET STREET and PIKE STREET, PIKE STREET between MONROE STREET and CHERRY STREET, SOUTH STREET between MARKET SLIP and PIKE SLIP, SOUTH STREET between PIKE SLIP and RUTGERS SLIP, MARKET SLIP between CHERRY STREET and SOUTH STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,"10002, 10038"
+673958,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/21/2022 02:10:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STERLING PLACE between CLASSON AVENUE and FRANKLIN AVENUE, ST JOHNS PLACE between CLASSON AVENUE and FRANKLIN AVENUE, LINCOLN PLACE between CLASSON AVENUE and FRANKLIN AVENUE, FRANKLIN AVENUE between ST JOHNS PLACE and LINCOLN PLACE, FRANKLIN AVENUE between LINCOLN PLACE and EASTERN PARKWAY, WASHINGTON AVENUE between EASTERN PARKWAY and MONTGOMERY STREET",Brooklyn,"55, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11225, 11238"
+673957,Shooting Permit,09/26/2022 10:00:00 AM,09/26/2022 11:59:00 PM,09/21/2022 02:03:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between HUDSON STREET and VARICK STREET,Manhattan,1,1,Commercial,Commercial,United States of America,10013
+673956,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 11:59:00 PM,09/21/2022 02:03:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVE between RAILROAD AVE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+673955,Shooting Permit,09/25/2022 08:00:00 AM,09/25/2022 10:00:00 PM,09/21/2022 01:58:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between HUDSON STREET and VARICK STREET,Manhattan,1,1,Commercial,Commercial,United States of America,10013
+673950,Shooting Permit,09/23/2022 06:00:00 AM,09/23/2022 10:00:00 PM,09/21/2022 01:27:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","SIXTH AVENUE between BEDFORD STREET and BLEECKER STREET, SIXTH AVENUE between MINETTA LANE and BLEECKER STREET, HUDSON STREET between ST LUKES PLACE and CLARKSON STREET",Manhattan,2,6,Commercial,Commercial,United States of America,"10012, 10014"
+673949,Shooting Permit,09/23/2022 04:00:00 PM,09/24/2022 06:00:00 AM,09/21/2022 01:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","FISKE PLACE between GARFIELD PLACE and CARROLL STREET, GARFIELD PLACE between 7 AVENUE and 8 AVENUE, GARFIELD PLACE between POLHEMAS PLACE and FISKE PLACE, CARROLL STREET between 7 AVENUE and POLHEMUS PLACE, 7 AVENUE between BERKELEY PLACE and UNION STREET, 7 AVENUE between UNION STREET and PRESIDENT STREET, 7 AVENUE between GARFIELD PLACE and CARROLL STREET, 7 AVENUE between GARFIELD PLACE and 1 STREET, 7 AVENUE between 2 STREET and 3 STREET, 7 AVENUE between 3 STREET and 4 STREET, 7 AVENUE between PRESIDENT STREET and CARROLL STREET, UNION STREET between 6 AVENUE and 7 AVENUE, PRESIDENT STREET between 6 AVENUE and 7 AVENUE, CARROLL STREET between 6 AVENUE and 7 AVENUE",Brooklyn,6,78,Television,Made for TV/mini-series,United States of America,"11215, 11217"
+673947,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/21/2022 01:18:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE, GRAND CONCOURSE between TUDOR PLACE and EAST 164 STREET, MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, MCCLELLAN STREET between GRAND CONCOURSE and CARROLL PLACE, CARROLL PLACE between MCCLELLAN STREET and EAST 166 STREET",Bronx,4,44,Film,Feature,United States of America,"10451, 10452, 10456"
+673943,Shooting Permit,09/23/2022 07:00:00 AM,09/23/2022 10:00:00 PM,09/21/2022 12:56:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+673937,Theater Load in and Load Outs,09/24/2022 12:01:00 AM,09/25/2022 06:00:00 AM,09/21/2022 12:45:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+673922,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 10:00:00 PM,09/21/2022 11:57:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",GRATTAN STREET between BOGART STREET and MORGAN AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11206
+673919,Shooting Permit,09/25/2022 07:00:00 AM,09/25/2022 11:00:00 AM,09/21/2022 11:48:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 109 STREET and EAST 108 STREET,Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+673918,Shooting Permit,09/24/2022 07:00:00 AM,09/24/2022 11:00:00 AM,09/21/2022 11:48:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 109 STREET and EAST 108 STREET,Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+673911,Shooting Permit,09/23/2022 09:00:00 AM,09/23/2022 09:00:00 PM,09/21/2022 11:41:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",SCHERMERHORN STREET between BOND STREET and NEVINS STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+673910,Shooting Permit,09/25/2022 09:00:00 AM,09/25/2022 02:00:00 PM,09/21/2022 11:32:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",PACIFIC STREET between FLATBUSH AVENUE and 4 AVENUE,Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+673883,Shooting Permit,09/23/2022 08:00:00 AM,09/23/2022 11:00:00 PM,09/21/2022 09:36:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 2 AVENUE and 1 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 28 STREET between MOUNT CARMEL PLACE and 1 AVENUE, EAST 29 STREET between 2 AVENUE and 1 AVENUE, EAST 30 STREET between 2 AVENUE and 1 AVENUE",Manhattan,6,"13, 17",Television,Cable-episodic,United States of America,"10010, 10016"
+673881,Shooting Permit,09/27/2022 06:00:00 AM,09/27/2022 09:00:00 PM,09/21/2022 09:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Commercial,Promo,United States of America,11249
+673882,Shooting Permit,09/28/2022 06:00:00 AM,09/28/2022 09:00:00 PM,09/21/2022 09:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Commercial,Promo,United States of America,11249
+673878,Shooting Permit,10/03/2022 12:00:00 AM,10/03/2022 12:00:00 PM,09/21/2022 09:00:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Television,Morning Show,United States of America,10036
+673876,Shooting Permit,09/22/2022 03:00:00 PM,09/29/2022 10:00:00 PM,09/21/2022 08:53:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","112 STREET between 107 AVENUE and 109 AVENUE, 113 STREET between 107 AVENUE and 109 AVENUE, 109 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 112 STREET and 113 STREET, 107 AVENUE between 113 STREET and 114 STREET",Queens,10,106,Television,Made for TV/mini-series,United States of America,"11419, 11420"
+673875,Shooting Permit,09/23/2022 10:00:00 AM,09/24/2022 12:00:00 AM,09/21/2022 08:51:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 88 STREET and WEST 91 STREET, RIVERSIDE DRIVE between WEST 88 STREET and WEST 87 STREET, WEST 87 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 89 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 88 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 90 STREET between WEST END AVENUE and BROADWAY, WEST 91 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 93 STREET and WEST 90 STREET, WEST END AVENUE between WEST 90 STREET and WEST 88 STREET, BROADWAY between WEST 91 STREET and WEST 89 STREET",Manhattan,7,24,Television,Cable-episodic,United States of America,"10024, 10025"
+673853,Shooting Permit,09/23/2022 06:00:00 AM,09/23/2022 11:00:00 PM,09/20/2022 08:43:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 STREET between 20 AVENUE and 21 AVENUE, 49 STREET between 19 AVENUE and 20 AVENUE, 47 STREET between 19 AVENUE and 20 AVENUE, 19 AVENUE between 46 STREET and 48 STREET, 20 AVENUE between 45 STREET and 49 STREET, 48 STREET between 20 AVENUE and 21 AVENUE",Queens,"1, 80",114,Television,Episodic series,United States of America,11105
+673849,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 09:00:00 PM,09/20/2022 06:48:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","SIXTH AVE between MINETTA LANE and W. HOUSTON ST, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, MACDOUGAL STREET between BLEECKER STREET and WEST HOUSTON STREET, HUDSON STREET between ST LUKES PLACE and CLARKSON STREET, HUDSON STREET between WEST HOUSTON STREET and KING STREET, BLEECKER STREET between SIXTH AVENUE and MACDOUGAL STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+673808,Shooting Permit,09/22/2022 06:00:00 AM,09/23/2022 02:00:00 AM,09/20/2022 03:10:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673802,Shooting Permit,09/22/2022 08:30:00 AM,09/22/2022 09:00:00 PM,09/20/2022 02:53:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673795,Shooting Permit,09/23/2022 06:00:00 AM,09/23/2022 10:00:00 PM,09/20/2022 02:28:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+673794,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 10:00:00 PM,09/20/2022 02:28:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+673793,Shooting Permit,09/23/2022 11:00:00 AM,09/24/2022 01:00:00 AM,09/20/2022 02:26:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 8 STREET and WEST 12 STREET, WEST 12TH STREET between SURF AVENUE and DEAD END, WEST 10 STREET between SURF AVENUE and BOARDWALK, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE, MERMAID AVENUE between WEST 15 STREET and STILLWELL AVENUE, BOWERY STREET between JONES WALK and WEST 12 STREET",Brooklyn,13,60,Film,Feature,United States of America,"11223, 11224"
+673790,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 08:00:00 PM,09/20/2022 02:10:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 33 STREET between BROADWAY and 5 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,"10001, 10118"
+673787,Theater Load in and Load Outs,09/27/2022 12:01:00 AM,09/27/2022 11:59:00 PM,09/20/2022 02:04:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+673775,Shooting Permit,09/22/2022 10:30:00 AM,09/22/2022 11:59:00 PM,09/20/2022 01:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 19 STREET between IRVING PLACE and 3 AVENUE, IRVING PLACE between EAST 18 STREET and EAST 19 STREET, GRAMERCY PARK W between GRAMERCY PARK S and E 21ST ST, E 21ST ST between PARK AVENUE SOUTH and GRAMERCY PARK W, E 20TH ST between PARK AVENUE SOUTH and GRAMERCY PARK W, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+673752,Shooting Permit,09/21/2022 10:00:00 AM,09/21/2022 10:00:00 PM,09/20/2022 12:39:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","112 STREET between 107 AVENUE and 109 AVENUE, 109 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 111 STREET and 112 STREET, 107 AVENUE between 112 STREET and 113 STREET, 113 STREET between 107 AVENUE and 109 AVENUE, 107 AVENUE between 113 STREET and 114 STREET",Queens,10,106,Television,Made for TV/mini-series,United States of America,"11419, 11420"
+673747,Shooting Permit,09/23/2022 07:00:00 AM,09/23/2022 09:00:00 PM,09/20/2022 12:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERGEN STREET between BOND STREET and HOYT STREET, HOYT STREET between BERGEN STREET and DEAN STREET, BERGEN STREET between FLATBUSH AVENUE and FIFTH AVENUE, FIFTH AVENUE between ST MARKS AVENUE and DEAN STREET",Brooklyn,"2, 6","78, 84",Commercial,Commercial,United States of America,11217
+673742,Shooting Permit,09/23/2022 08:00:00 AM,09/23/2022 06:00:00 PM,09/20/2022 12:05:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 17 STREET and EAST 20 STREET, BROADWAY between EAST 18 STREET and EAST 19 STREET, WEST 19 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between EAST 18 STREET and EAST 19 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10003, 10011"
+673739,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 03:00:00 PM,09/20/2022 12:02:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between BROOME STREET and DELANCEY STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET",Manhattan,"2, 3",5,Commercial,Commercial,United States of America,"10002, 10012"
+673738,Shooting Permit,09/23/2022 11:00:00 AM,09/23/2022 11:00:00 PM,09/20/2022 11:52:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between SCHOLES STREET and MESEROLE STREET, STEWART AVENUE between MESEROLE STREET and SCHOLES STREET, FLUSHING AVENUE between WYKOFF AVENUE and IRVING AVENUE",Brooklyn,"1, 4","83, 90",Still Photography,Not Applicable,United States of America,11237
+673724,Shooting Permit,09/28/2022 10:30:00 AM,09/29/2022 12:30:00 AM,09/20/2022 11:08:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+673720,DCAS Prep/Shoot/Wrap Permit,09/23/2022 05:00:00 PM,09/24/2022 02:00:00 AM,09/20/2022 11:03:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between CENTRE STREET and BAXTER STREET, CENTER STREET between LEONARD STREET and WORTH STREET, LEONARD STREET between CENTER STREET and LAFAYETTE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and PIKE STREET, PIKE STREET between EAST BROADWAY and HENRY STREET",Manhattan,"1, 3","5, 7",Television,Episodic series,United States of America,"10002, 10007, 10013"
+673710,Shooting Permit,09/22/2022 08:00:00 AM,09/22/2022 07:00:00 PM,09/20/2022 10:43:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 37 AVENUE and 36 AVENUE, FREDERICK DOUGLAS BOULEVARD between WEST 121 STREET and WEST 122 STREET, EAST 124 STREET between MADISON AVENUE and 5 AVENUE",Queens,"1, 10, 11","114, 25, 28",Still Photography,Not Applicable,United States of America,"10027, 10035, 11106"
+673708,Shooting Permit,09/26/2022 06:00:00 AM,09/26/2022 09:00:00 PM,09/20/2022 10:36:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+673706,Shooting Permit,09/23/2022 09:00:00 AM,09/23/2022 11:30:00 PM,09/20/2022 10:32:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+673691,Shooting Permit,09/29/2022 06:00:00 PM,09/30/2022 07:00:00 AM,09/20/2022 10:06:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11206
+673681,Shooting Permit,09/23/2022 01:00:00 AM,09/23/2022 01:00:00 PM,09/20/2022 09:40:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE STREET between BLEEKER STREET and BEDFORD STREET, BEDFORD STREET between GROVE STREET and MORTON STREET, BLEEKER STREET between CHRISTOPHER STREET and BARROW STREET, CHRISTOPHER STREET between HUDSON STREET and BEDFORD STREET, CHRISTOPHER STREET between BLEEKER STREET and SEVENTH AVENUE SOUTH, SEVENTH AVENUE SOUTH between CHRISTOPHER STREET and CLARKSON STREET, BLEEKER STREET between MORTON STREET and CARMINE STREET, LEROY STREET between BEDFORD STREET and BLEEKER STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, HUDSON STREET between GROVE STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and COMMERCE STREET, BARROW STREET between COMMERCE STREET and HUDSON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+673679,Shooting Permit,09/22/2022 09:00:00 AM,09/22/2022 11:00:00 PM,09/20/2022 09:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+673676,Shooting Permit,10/05/2022 07:00:00 AM,10/05/2022 10:00:00 PM,09/20/2022 08:55:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between 5 AVENUE and MADISON AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, WEST 46 STREET between 7 AVENUE and 5 AVENUE, EAST 46 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10017, 10036"
+673674,Theater Load in and Load Outs,09/23/2022 06:00:00 AM,09/25/2022 11:00:00 PM,09/20/2022 08:52:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and ROCKEFELLER PLAZA",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+673673,Shooting Permit,10/04/2022 07:00:00 AM,10/04/2022 10:00:00 PM,09/20/2022 08:30:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10036"
+673669,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/20/2022 07:28:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 34 STREET between 35 AVENUE and 34 AVENUE, 34 STREET between 35 AVENUE and 36 AVENUE, 35 AVENUE between 34 STREET and 35 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+673656,Shooting Permit,09/21/2022 04:00:00 AM,09/21/2022 12:00:00 PM,09/19/2022 08:17:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+673645,Shooting Permit,09/22/2022 11:00:00 AM,09/23/2022 03:00:00 AM,09/19/2022 06:22:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between MARCY AVENUE and NOSTRAND AVENUE, HANCOCK STREET between NOSTRAND AVENUE and MARCY AVENUE, WAVERLY AVENUE between GATES AVENUE and GREENE AVENUE",Brooklyn,"2, 3","79, 88",Film,Feature,United States of America,"11216, 11238"
+673641,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 03:00:00 PM,09/19/2022 05:41:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREEN STREET between WEST STREET and FRANKLIN STREET,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+673638,Shooting Permit,09/23/2022 11:00:00 AM,09/24/2022 02:00:00 AM,09/19/2022 05:35:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET, EAST 95 STREET between AVENUE K and AVENUE L, AVENUE L between ROCKAWAY PARKWAY and EAST 94 STREET",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+673631,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 11:00:00 PM,09/19/2022 04:57:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEFFERTS BOULEVARD between JAMAICA AVENUE and 89 AVENUE, HILLSIDE AVENUE between BESSEMER STREET and MYRTLE AVENUE, JAMAICA AVENUE between 120 STREET and LEFFERTS BOULEVARD, LEFFERTS BOULEVARD between JAMAICA AVENUE and 89 AVENUE, LEFFERTS BOULEVARD between JAMAICA AVENUE and HILLSIDE AVENUE, BABBAGE STREET between HILLSIDE AVENUE and LEFFERTS BOULEVARD, MYRTLE AVENUE between 117 STREET and JAMAICA AVENUE, MYRTLE AVENUE between 116 STREET and 117 STREET, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, JAMAICA AVENUE between 118 STREET and LEFFERTS BOULEVARD, MYRTLE AVENUE between FREEDOM DRIVE and 109 STREET",Queens,"82, 9",102,Television,Made for TV/mini-series,United States of America,"11385, 11418"
+673630,Shooting Permit,09/23/2022 11:00:00 AM,09/24/2022 03:00:00 AM,09/19/2022 04:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 23 STREET between 7 AVENUE and 8 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10011
+673627,Shooting Permit,09/22/2022 09:00:00 AM,09/23/2022 01:00:00 AM,09/19/2022 04:48:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 23 STREET between 7 AVENUE and 8 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10011
+673615,Shooting Permit,09/27/2022 09:30:00 AM,09/27/2022 11:30:00 PM,09/19/2022 04:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+673609,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 09:00:00 PM,09/19/2022 04:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 117 STREET between 1 AVENUE and PLEASANT AVENUE, EAST 118 STREET between 1 AVENUE and PLEASANT AVENUE, 1 AVENUE between EAST 119 STREET and EAST 117 STREET, 3 AVENUE between EAST 116 STREET and EAST 115 STREET, EAST 116 STREET between 3 AVENUE and 2 AVENUE, E 116 ST between PLEASANT AVENUE and FDR DR, PLEASANT AVENUE between EAST 118 STREET and EAST 117 STREET, PLEASANT AVENUE between EAST 117 STREET and EAST 116 STREET, EAST 116 STREET between 2 AVENUE and 1 AVENUE, PLEASANT AVENUE between EAST 119 STREET and EAST 118 STREET, EAST 118 STREET between PLEASANT AVENUE and DEAD END",Manhattan,11,25,Television,Cable-episodic,United States of America,"10029, 10035"
+673599,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 09:00:00 PM,09/19/2022 03:22:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673589,Shooting Permit,09/22/2022 11:00:00 AM,09/22/2022 11:00:00 PM,09/19/2022 02:56:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST STREET and GANSEVOORT STREET, JANE STREET between WASHINGTON STREET and WEST STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE",Manhattan,"2, 5","13, 14, 6",Still Photography,Not Applicable,United States of America,"10001, 10014, 10016"
+673584,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 11:00:00 PM,09/19/2022 02:47:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+673581,Shooting Permit,09/21/2022 07:00:00 PM,09/21/2022 08:00:00 PM,09/19/2022 02:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, SKILLMAN AVENUE between 47 AVENUE and 49 AVENUE, VAN DAM STREET between 47 AVENUE and 48 AVENUE, 47 AVENUE between VAN DAM STREET and 32 PLACE, 32 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+673577,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 09:00:00 PM,09/19/2022 02:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673576,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 09:00:00 PM,09/19/2022 02:31:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, FRANKLIN STREET between EAGLE STREET and FREEMAN STREET, FRANKLIN STREET between DUPONT STREET and EAGLE STREET, EAGLE STREET between FRANKLIN STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673572,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 09:00:00 PM,09/19/2022 02:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between MILTON STREET and KENT STREET, GREENPOINT AVENUE between FRANKLIN STREET and DEAD END, KENT STREET between WEST STREET and FRANKLIN STREET, COMMERCIAL STREET between BLUE SLIP and DUPONT STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673568,Shooting Permit,09/22/2022 07:00:00 AM,09/23/2022 01:00:00 AM,09/19/2022 01:49:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVE between GREENPOINT AVE and NORMAN AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673565,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 09:00:00 PM,09/19/2022 01:32:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 59 STREET and EAST 61 STREET, 5 AVENUE between EAST 60 STREET and EAST 63 STREET, EAST 65 STREET between 2 AVENUE and 3 AVENUE, EAST 66 STREET between 2 AVENUE and 3 AVENUE, EAST 64 STREET between 1 AVENUE and 2 AVENUE, EAST 65 STREET between PARK AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Cable-episodic,United States of America,"10022, 10065"
+673561,Shooting Permit,09/22/2022 09:00:00 AM,09/22/2022 11:00:00 PM,09/19/2022 01:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 3 STREET between WYTHE AVENUE and KENT AVENUE, KENT AVENUE between SOUTH THIRD STREET and SOUTH FOURTH STREET, SOUTH FOURTH STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH FOURTH STREET and SOUTH FIFTH STREET, DRIGGS AVENUE between SOUTH SECOND STREET and SOUTH THIRD STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between DRIGGS AVENUE and BEDFORD AVENUE, SOUTH 5 STREET between DRIGGS AVENUE and SOUTH 5 PLACE",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+673557,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 08:00:00 PM,09/19/2022 01:07:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 33 STREET between 5 AVENUE and BROADWAY,Manhattan,5,14,Commercial,Commercial,United States of America,"10001, 10118"
+673553,Shooting Permit,09/21/2022 06:00:00 PM,09/22/2022 06:30:00 AM,09/19/2022 12:51:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MARKET SLIP and PIKE SLIP, SOUTH STREET between PIKE SLIP and RUTGERS SLIP, MARKET STREET between CHERRY STREET and SOUTH STREET, HUDSON STREET between DUANE STREET and THOMAS STREET, HUDSON STREET between DUANE STREET and READE STREET, JAY STREET between STAPLE STREET and HUDSON STREET, DUANE STREET between GREENWICH STREET and HUDSON STREET, THOMAS STREET between HUDSON STREET and WEST BROADWAY, GRAND STREET between ALLEN STREET and ELDRIDGE STREET, MONROE STREET between MARKET STREET and PIKE STREET",Manhattan,"1, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10013, 10038"
+673552,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 10:00:00 PM,09/19/2022 12:51:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUNTER STREET between 44 DRIVE and 44 ROAD, 44 ROAD between HUNTER STREET and CRESCENT STREET, CRESCENT STREET between HUNTER STREET and 44 ROAD, 43 AVENUE between 21 STREET and CRESCENT STREET, 24 STREET between 42 ROAD and 43 AVENUE, 24 STREET between 43 AVENUE and 44 ROAD, 44 AVENUE between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between 43 AVENUE and 44 AVENUE, 35 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 33 STREET and 38 STREET, 36 STREET between QUEENS BOULEVARD and 43 AVENUE, 37 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 AVENUE between 35 STREET and 36 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+673548,Theater Load in and Load Outs,09/21/2022 08:00:00 AM,09/21/2022 06:00:00 PM,09/19/2022 12:47:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between DEKALB AVENUE and FULTON STREET,Brooklyn,2,88,Theater,Theater,United States of America,11217
+673549,Theater Load in and Load Outs,09/23/2022 09:00:00 AM,09/23/2022 06:00:00 PM,09/19/2022 12:47:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between DEKALB AVENUE and FULTON STREET,Brooklyn,2,88,Theater,Theater,United States of America,11217
+673550,Theater Load in and Load Outs,10/02/2022 08:00:00 AM,10/02/2022 10:00:00 PM,09/19/2022 12:47:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between DEKALB AVENUE and FULTON STREET,Brooklyn,2,88,Theater,Theater,United States of America,11217
+673546,Shooting Permit,10/05/2022 06:00:00 AM,10/05/2022 10:00:00 PM,09/19/2022 12:45:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 5 AVENUE and 7 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between VANDERBILT AVENUE and 5 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, WEST 44 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10018, 10036"
+673529,Shooting Permit,09/26/2022 07:30:00 AM,09/26/2022 09:30:00 PM,09/19/2022 11:43:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+673524,Shooting Permit,09/23/2022 12:00:00 PM,09/24/2022 02:00:00 AM,09/19/2022 11:32:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+673523,Shooting Permit,09/24/2022 09:00:00 AM,09/24/2022 03:00:00 PM,09/19/2022 11:31:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","Eastern Parkway between Flatbush Avenue and Washington Avenue, DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, CLARK STREET between HICKS STREET and WILLOW STREET, CADMAN PLAZA WEST between MONTAGUE STREET and PIERREPONT STREET",Brooklyn,"2, 55","78, 84, 88",Theater,Theater,United States of America,"11201, 11217, 11238"
+673509,Shooting Permit,09/21/2022 08:00:00 AM,09/21/2022 09:00:00 PM,09/19/2022 10:43:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 8 AVENUE and 9 AVENUE, WEST 51 STREET between 8 AVENUE and 9 AVENUE, WEST 49 STREET between 8 AVENUE and 9 AVENUE, WEST 48 STREET between 8 AVENUE and 9 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,"10019, 10036"
+673490,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 10:00:00 PM,09/19/2022 09:34:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","GOLD STREET between YORK STREET and SANDS STREET, YORK STREET between GOLD STREET and NAVY STREET, NAVY STREET between YORK STREET and SANDS STREET",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11205"
+673488,Shooting Permit,09/22/2022 09:00:00 AM,09/22/2022 09:00:00 PM,09/19/2022 09:14:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",SCHERMERHORN STREET between NEVINS STREET and BOND STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+673484,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 10:00:00 PM,09/19/2022 08:51:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between CENTER BOULEVARD and 2 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 5 STREET between 47 ROAD and 47 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, CENTER BOULEVARD between 47 ROAD and 47 AVENUE, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, 5 STREET between 47 AVENUE and 46 ROAD, 46 ROAD between 5 STREET and VERNON BOULEVARD, 5 STREET between 46 ROAD and 46 AVENUE, 2 STREET between BORDEN AVENUE and 51 AVENUE, 2 STREET between BORDEN AVENUE and 54 AVENUE, BORDEN AVENUE between 2 STREET and 5 STREET, CENTER BOULEVARD between 50 AVENUE and 49 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+673483,Shooting Permit,09/21/2022 08:00:00 AM,09/21/2022 05:00:00 PM,09/19/2022 08:49:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 29 STREET and 24 STREET,Brooklyn,7,72,Television,Made for TV/mini-series,Canada,11232
+673477,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 10:00:00 PM,09/19/2022 08:01:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+673470,Theater Load in and Load Outs,10/04/2022 12:01:00 AM,10/04/2022 11:59:00 PM,09/18/2022 10:37:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673468,Theater Load in and Load Outs,10/03/2022 12:01:00 AM,10/03/2022 11:59:00 PM,09/18/2022 10:25:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673466,Theater Load in and Load Outs,10/01/2022 12:01:00 AM,10/02/2022 06:00:00 AM,09/18/2022 10:01:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673458,Theater Load in and Load Outs,09/29/2022 12:01:00 AM,09/30/2022 06:00:00 AM,09/18/2022 06:33:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673456,Theater Load in and Load Outs,09/27/2022 12:01:00 AM,09/28/2022 11:59:00 PM,09/18/2022 05:35:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673447,Theater Load in and Load Outs,09/26/2022 12:01:00 AM,09/26/2022 11:59:00 PM,09/18/2022 02:11:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673446,Theater Load in and Load Outs,09/25/2022 12:01:00 AM,09/25/2022 11:59:00 PM,09/18/2022 01:53:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673443,Theater Load in and Load Outs,09/24/2022 12:01:00 AM,09/24/2022 11:59:00 PM,09/18/2022 12:21:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673442,Theater Load in and Load Outs,09/29/2022 12:01:00 AM,09/30/2022 11:59:00 PM,09/18/2022 12:05:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+673441,Theater Load in and Load Outs,09/27/2022 12:01:00 AM,09/28/2022 06:00:00 AM,09/18/2022 11:56:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+673437,Theater Load in and Load Outs,09/25/2022 12:01:00 AM,09/26/2022 06:00:00 AM,09/18/2022 11:08:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+673433,Shooting Permit,09/21/2022 08:00:00 AM,09/22/2022 12:00:00 AM,09/18/2022 08:23:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","4TH AVE between 95TH STREET and 96TH STREET, 95 STREET between 4 AVENUE and 3 AVENUE, 96 STREET between 4 AVENUE and 3 AVENUE, 95 STREET between 4 AVENUE and FORT HAMILTON AVENUE, SHORE ROAD between 79 STREET and 83 STREET, HARBOR VIEW TERRACE between 82 STREET and HARBOR LANE, 82 STREET between HARBOR VIEW TERRACE and SHORE ROAD, 82 STREET between NARROWS AVENUE and HARBOR VIEW TERRACE, NARROWS AVENUE between 82 STREET and 80 STREET, NARROWS AVENUE between 82 STREET and 83 STREET",Brooklyn,"10, 6","68, 78",Television,Episodic series,United States of America,"11209, 11217"
+673422,Theater Load in and Load Outs,09/23/2022 12:01:00 AM,09/24/2022 06:00:00 AM,09/17/2022 06:32:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+673420,Theater Load in and Load Outs,09/29/2022 12:01:00 AM,10/01/2022 06:00:00 AM,09/17/2022 06:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+673419,Theater Load in and Load Outs,09/24/2022 12:01:00 AM,09/25/2022 06:00:00 AM,09/17/2022 06:04:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+673374,Theater Load in and Load Outs,09/28/2022 06:00:00 AM,09/28/2022 11:59:00 PM,09/16/2022 05:17:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+673363,Theater Load in and Load Outs,09/29/2022 06:00:00 AM,09/29/2022 11:59:00 PM,09/16/2022 03:57:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 13 STREET between BROADWAY and 4 AVENUE,Manhattan,2,9,Theater,Theater,United States of America,10003
+673359,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 11:00:00 PM,09/16/2022 03:46:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673350,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 09:00:00 PM,09/16/2022 03:18:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between DEAD END and KINGSLAND AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between MOULTRIE STREET and RUSSELL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+673345,Shooting Permit,09/30/2022 10:00:00 AM,10/01/2022 04:00:00 AM,09/16/2022 02:48:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, SUMMER STREET between WINTER STREET and SEASONGOOD ROAD, SEASONGOOD ROAD between ASCAN AVENUE and PURITAN AVENUE, ASCAN AVENUE between GREENWAY SOUTH and GREENWAY NORTH, PURITAN AVENUE between SEASONGOOD ROAD and SHORTHILL PLACE, AUSTIN STREET between ASCAN AVENUE and 75 AVENUE, ASCAN AVENUE between AUSTIN STREET and QUEENS BOULEVARD, QUEENS BOULEVARD between 71 AVENUE and ASCAN AVENUE, 71 ROAD between AUSTIN STREET and QUEENS BOULEVARD, 72 AVENUE between AUSTIN STREET and QUEENS BOULEVARD, 72 ROAD between AUSTIN STREET and QUEENS BOULEVARD, UNION TURNPIKE between 71 ROAD and 71 DRIVE, 71 ROAD between UNION TURNPIKE and METROPOLITAN AVENUE",Brooklyn,"1, 6, 82","102, 112, 90",Film,Feature,United States of America,"11206, 11375, 11418"
+673336,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 07:00:00 PM,09/16/2022 02:08:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 72 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023"
+673295,Shooting Permit,09/29/2022 10:00:00 AM,09/30/2022 02:00:00 AM,09/16/2022 10:49:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+673291,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 09:00:00 PM,09/16/2022 10:29:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 8 STREET and WEST 12 STREET, WEST 10 STREET between SURF AVENUE and BOARDWALK, WEST 12 STREET between SURF AVENUE and DEAD END, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE, MERMAID AVENUE between WEST 15 STREET and STILLWELL AVENUE",Brooklyn,13,60,Film,Feature,United States of America,11224
+673281,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 11:00:00 PM,09/16/2022 09:41:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+673276,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 06:00:00 PM,09/16/2022 09:05:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between BLEEKER STREET and EAST HOUSTON STREET,Manhattan,2,9,Commercial,Commercial,United States of America,10012
+673265,Shooting Permit,09/21/2022 07:30:00 AM,09/21/2022 08:00:00 PM,09/16/2022 07:16:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between FRANKLIN STREET and WEST STREET,Manhattan,"1, 5, 64","18, 22, 94",Still Photography,Not Applicable,United States of America,"00083, 10019, 10023, 11222, 11249"
+673256,Theater Load in and Load Outs,09/19/2022 06:00:00 AM,09/28/2022 06:00:00 AM,09/16/2022 12:59:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+673255,Theater Load in and Load Outs,09/19/2022 12:01:00 AM,09/29/2022 11:59:00 PM,09/16/2022 12:41:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+673254,Theater Load in and Load Outs,09/18/2022 06:00:00 AM,09/20/2022 03:00:00 AM,09/16/2022 12:32:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+673253,Theater Load in and Load Outs,09/21/2022 12:01:00 AM,09/22/2022 06:00:00 AM,09/16/2022 12:23:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673252,Theater Load in and Load Outs,09/20/2022 12:01:00 AM,09/20/2022 11:59:00 PM,09/16/2022 12:16:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673250,Theater Load in and Load Outs,09/19/2022 12:01:00 AM,09/19/2022 11:59:00 PM,09/16/2022 12:05:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673231,Shooting Permit,09/18/2022 06:30:00 AM,09/18/2022 09:30:00 PM,09/15/2022 07:37:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, HUDSON STREET between JAY STREET and DUANE STREET, DUANE STREET between STAPLE STREET and HUDSON STREET, JAY STREET between STAPLE STREET and HUDSON STREET, DUANE STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 5","1, 13",Television,Episodic series,United States of America,"10010, 10013"
+673226,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 11:00:00 PM,09/15/2022 06:41:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 44 STREET and 46 STREET, 45 STREET between GREENPOINT AVENUE and 47 AVENUE, 46 STREET between GREENPOINT AVENUE and 47 AVENUE, GREENPOINT AVENUE between 44 STREET and 46 STREET, 43 STREET between GREENPOINT AVENUE and 50 AVENUE, GREENPOINT AVENUE between 41 STREET and 44 STREET, 47 AVENUE between 41 STREET and 42 STREET",Queens,2,108,Television,Episodic series,United States of America,"11104, 11377"
+673224,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 07:00:00 PM,09/15/2022 06:23:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBERMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,"11218, 11226"
+673216,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 08:00:00 PM,09/15/2022 05:35:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 71 STREET and EAST 72 STREET, 3 AVENUE between EAST 70 STREET and EAST 71 STREET, 3 AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 70 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 69 STREET and EAST 72 STREET, EAST 73 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Made for TV/mini-series,Canada,10021
+673183,Shooting Permit,09/19/2022 12:00:00 PM,09/19/2022 10:00:00 PM,09/15/2022 04:18:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ALLEN STREET and ORCHARD STREET, EAST HOUSTON STREET between ORCHARD STREET and LUDLOW STREET, ALLEN STREET between EAST HOUSTON STREET and RIVINGTON STREET, ORCHARD STREET between EAST HOUSTON STREET and STANTON STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10009"
+673182,Shooting Permit,09/20/2022 09:00:00 AM,09/20/2022 02:00:00 PM,09/15/2022 04:16:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",DIAMOND STREET between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+673172,Shooting Permit,09/20/2022 05:00:00 AM,09/20/2022 09:00:00 PM,09/15/2022 03:58:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 4 STREET between BOWERY and 2 AVENUE,Manhattan,3,9,Film,Feature,United States of America,10003
+673159,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 10:00:00 PM,09/15/2022 03:30:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 175 STREET and WEST 180 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 177 STREET, WEST 176 STREET between WADSWORTH AVENUE and BROADWAY, BROADWAY between WEST 174 STREET and WEST 177 STREET",Manhattan,12,"33, 34",Television,Episodic series,United States of America,10033
+673147,Shooting Permit,09/23/2022 06:00:00 AM,09/23/2022 08:00:00 PM,09/15/2022 03:01:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between JEFFERSON AVENUE and HALSEY STREET, WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+673146,Shooting Permit,09/21/2022 08:00:00 AM,09/21/2022 11:00:00 PM,09/15/2022 02:58:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+673145,Shooting Permit,09/29/2022 06:00:00 AM,09/29/2022 08:00:00 PM,09/15/2022 02:58:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between BROOME STREET and GRAND STREET,Manhattan,2,5,Commercial,Promo,United States of America,10013
+673139,Theater Load in and Load Outs,09/21/2022 12:01:00 AM,09/22/2022 11:59:00 PM,09/15/2022 02:51:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 56 STREET and WEST 57 STREET, WEST 56 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+673124,Theater Load in and Load Outs,09/18/2022 12:01:00 AM,09/18/2022 11:59:00 PM,09/15/2022 02:09:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673121,Shooting Permit,09/21/2022 06:30:00 AM,09/21/2022 08:30:00 PM,09/15/2022 02:03:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET,Bronx,"5, 6, 7","46, 48, 52",Television,Episodic series,United States of America,"10458, 10468"
+673120,Shooting Permit,09/22/2022 06:30:00 AM,09/22/2022 08:00:00 PM,09/15/2022 02:03:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET,Bronx,"5, 6, 7","46, 48, 52",Television,Episodic series,United States of America,"10458, 10468"
+673117,Theater Load in and Load Outs,09/17/2022 12:01:00 AM,09/17/2022 11:59:00 PM,09/15/2022 01:57:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+673107,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 08:00:00 PM,09/15/2022 01:34:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+673098,Shooting Permit,09/20/2022 08:00:00 AM,09/20/2022 11:00:00 PM,09/15/2022 01:23:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","N HENRY ST between MEEKER AVENUE and DRIGGS AVENUE, ENGERT AVENUE between NORTH HENRY STREET and MONITOR STREET, ENGERT AVENUE between NORTH HENRY STREET and RUSSELL STREET, 29 STREET between HUNTERS POINT AVENUE and 47 AVENUE, 31 STREET between 48 AVENUE and 47 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+673094,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 08:00:00 PM,09/15/2022 01:18:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, ELDERT STREET between WYCKOFF AVENUE and DEAD END",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+673086,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 08:00:00 PM,09/15/2022 01:02:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between ST LUKES PLACE and CLARKSON STREET, 6 AVENUE between BEDFORD STREET and BLEECKER STREET, HUDSON STREET between KING STREET and WEST HOUSTON STREET, SIXTH AVENUE between MINETTA LANE and BLEECKER STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+673085,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 08:00:00 PM,09/15/2022 01:00:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between ST LUKES PLACE and CLARKSON STREET, SIXTH AVE between W.HOUSTON ST and MINETTA LANE, HUDSON STREET between WEST HOUSTON STREET and KING STREET, BLEECKER STREET between 6 AVENUE and MACDOUGAL STREET, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, MACDOUGAL STREET between WEST HOUSTON STREET and BLEECKER STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+673083,Shooting Permit,09/19/2022 06:00:00 AM,09/21/2022 08:00:00 PM,09/15/2022 12:58:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SIXTH AVE between WEST HOUSTON ST and BLEECKER ST, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, MACDOUGAL STREET between BLEECKER STREET and WEST HOUSTON STREET, HUDSON STREET between ST LUKES PLACE and KING STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+673075,Shooting Permit,09/17/2022 06:00:00 AM,09/17/2022 08:00:00 PM,09/15/2022 12:37:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, SIXTH AVE between W. HOUSTON STREET and BLEECKER ST, HUDSON STREET between ST LUKES PLACE and KING STREET, MACDOUGAL STREET between WEST HOUSTON STREET and BLEECKER STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+673068,Shooting Permit,09/18/2022 03:00:00 AM,09/18/2022 01:00:00 PM,09/15/2022 12:22:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+673029,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 11:00:00 PM,09/15/2022 11:03:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+673027,Shooting Permit,09/19/2022 02:00:00 AM,09/19/2022 07:00:00 PM,09/15/2022 11:02:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE STREET between BEDFORD STREET and BLEEKER STREET, BEDFORD STREET between GROVE STREET and BARROW STREET, BEDFORD STREET between BARROW STREET and MORTON STREET, BLEEKER STREET between CHRISTOPHER STREET and BARROW STREET, CHRISTOPHER STREET between HUDSON STREET and BEDFORD STREET, CHRISTOPHER STREET between BLEEKER STREET and SEVENTH AVENUE SOUTH, SEVENTH AVENUE SOUTH between CHRISTOPHER STREET and CLARKSON STREET, BLEEKER STREET between MORTON STREET and CARMINE STREET, LEROY STREET between BEDFORD STREET and BLEEKER STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, HUDSON STREET between GROVE STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and COMMERCE STREET, BARROW STREET between COMMERCE STREET and HUDSON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+673022,Theater Load in and Load Outs,10/15/2022 12:01:00 AM,10/15/2022 11:59:00 PM,09/15/2022 10:43:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+673019,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 08:00:00 PM,09/15/2022 10:31:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, CAMBRIDGE PLACE between GATES AVENUE and GREENE AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+673018,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 08:00:00 PM,09/15/2022 10:31:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, CAMBRIDGE PLACE between GATES AVENUE and GREENE AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+673017,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 08:00:00 PM,09/15/2022 10:30:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, CAMBRIDGE PLACE between GATES AVENUE and GREENE AVENUE",Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+673014,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 08:00:00 PM,09/15/2022 10:13:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,WEB,Not Applicable,United States of America,11216
+673013,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 08:00:00 PM,09/15/2022 10:13:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,WEB,Not Applicable,United States of America,11216
+673012,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 11:00:00 PM,09/15/2022 10:09:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+673008,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 09:00:00 PM,09/15/2022 09:47:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+673001,Shooting Permit,09/23/2022 07:00:00 AM,09/23/2022 08:00:00 PM,09/15/2022 09:30:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between NEW YORK AVENUE and JAMES DAVIS AVENUE,Brooklyn,8,77,WEB,Not Applicable,United States of America,11216
+673000,Shooting Permit,09/22/2022 07:00:00 AM,09/22/2022 08:00:00 PM,09/15/2022 09:30:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between NEW YORK AVENUE and JAMES DAVIS AVENUE,Brooklyn,8,77,WEB,Not Applicable,United States of America,11216
+672999,Shooting Permit,09/17/2022 07:00:00 AM,09/17/2022 08:00:00 PM,09/15/2022 09:30:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between PEARL STREET and HANOVER STREET, PEARL STREET between WALL STREET and PINE STREET, PEARL ST between WALL STREET and HANOVER SQUARE, WALL STREET between PEARL STREET and WILLIAM STREET, HANOVER STREET between WALL STREET and EXCHANGE PLACE, EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET, WILLIAM STREET between WALL STREET and BEAVER STREET, WILLIAM STREET between SOUTH WILLIAM STREET and STONE STREET, HANOVER SQUARE between STONE STREET and WATER STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and OLD SLIP, MAIDEN LANE between PEARL STREET and FRONT STREET, FRONT STREET between MAIDEN LANE and JOHN STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+672991,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 11:00:00 PM,09/15/2022 08:31:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+672990,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 11:00:00 PM,09/15/2022 08:28:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+672988,Shooting Permit,09/23/2022 09:00:00 AM,09/23/2022 11:00:00 PM,09/15/2022 08:02:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 34 STREET between 35 AVENUE and 34 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+672986,Shooting Permit,09/22/2022 08:00:00 AM,09/22/2022 10:00:00 PM,09/15/2022 07:58:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 34 STREET between 35 AVENUE and 34 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+672985,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 09:00:00 PM,09/15/2022 07:55:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 34 STREET between 35 AVENUE and 34 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+672984,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 09:00:00 PM,09/15/2022 07:50:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 34 STREET between 35 AVENUE and 34 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+672977,Shooting Permit,09/18/2022 06:00:00 AM,09/18/2022 08:00:00 PM,09/14/2022 10:27:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between SAINT LUKES PLACE and WEST HOUSTON STREET, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, MACDOUGAL STREET between WEST HOUSTON STREET and BLEECKER STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10012, 10014"
+672967,Theater Load in and Load Outs,09/30/2022 12:01:00 AM,10/01/2022 11:59:00 AM,09/14/2022 07:20:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+672965,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 11:00:00 PM,09/14/2022 07:07:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672962,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 09:00:00 PM,09/14/2022 06:28:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672961,Shooting Permit,09/22/2022 09:30:00 AM,09/22/2022 11:30:00 PM,09/14/2022 06:22:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+672960,Shooting Permit,09/21/2022 09:30:00 AM,09/21/2022 11:30:00 PM,09/14/2022 06:13:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+672958,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/16/2022 11:59:00 PM,09/14/2022 05:54:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+672957,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 11:00:00 PM,09/14/2022 05:51:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672955,Shooting Permit,09/21/2022 06:00:00 AM,09/22/2022 01:00:00 AM,09/14/2022 05:49:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 STREET between 20 AVENUE and 21 AVENUE, 49 STREET between 19 AVENUE and 20 AVENUE, 47 STREET between 19 AVENUE and 20 AVENUE, 19 AVENUE between 46 STREET and 48 STREET, 20 AVENUE between 45 STREET and 48 STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 80","114, 94",Television,Episodic series,United States of America,"11105, 11222"
+672954,Shooting Permit,09/20/2022 08:30:00 AM,09/20/2022 10:30:00 PM,09/14/2022 05:49:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+672948,Theater Load in and Load Outs,09/22/2022 12:01:00 AM,09/22/2022 11:59:00 PM,09/14/2022 04:51:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+672943,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 11:00:00 PM,09/14/2022 04:32:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 106 STREET and 109 STREET, 113 STREET between 84 AVENUE and 85 AVENUE, 85 AVENUE between MYRTLE AVENUE and 113 STREET, 113 STREET between 85 AVENUE and MYRTLE AVENUE, 114 STREET between 86 AVENUE and JAMAICA AVENUE, MYRTLE AVENUE between PARK LN SOUTH and FREEDOM DRIVE",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+672942,Shooting Permit,09/16/2022 08:00:00 AM,09/16/2022 11:00:00 PM,09/14/2022 04:28:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between GUERNSEY STREET and LORIMER STREET, CALYER STREET between LORIMER STREET and MANHATTAN AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET, NOBLE STREET between MANHATTAN AVENUE and LORIMER STREET, NOBLE STREET between LORIMER STREET and FRANKLIN STREET, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+672940,Shooting Permit,09/19/2022 06:30:00 AM,09/19/2022 08:00:00 PM,09/14/2022 04:25:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between WEST 12 STREET and JANE STREET, GREENWICH STREET between JANE STREET and HORATIO STREET, WEST 12 STREET between GREENWICH STREET and WASHINGTON STREET, JANE STREET between GREENWICH STREET and WASHINGTON STREET, HORATIO STREET between HUDSON STREET and GREENWICH STREET, JANE STREET between HUDSON STREET and GREENWICH STREET, WASHINGTON STREET between HORATIO STREET and WEST 12 STREET, SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between WATER STREET and SOUTH STREET, PEARL STREET between STATE STREET and WHITEHALL STREET, STATE STREET between BRIDGE STREET and PEARL STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET",Manhattan,"1, 2","1, 6",Television,Made for TV/mini-series,Canada,"10004, 10014"
+672931,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 09:00:00 PM,09/14/2022 03:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+672920,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 06:30:00 PM,09/14/2022 02:31:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between 2 AVENUE and BOWERY, 2 AVENUE between EAST 3 STREET and EAST 5 STREET, 2 AVENUE between EAST 9 STREET and ST MARKS PLACE, EAST 6 STREET between 1 AVENUE and AVENUE A, 9 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, W 14 ST between WASHINGTON STREET and 9 AVE",Manhattan,"2, 3, 4","10, 6, 9",Television,Episodic series,United States of America,"10001, 10003, 10009, 10011, 10014"
+672918,Theater Load in and Load Outs,09/17/2022 12:01:00 AM,09/17/2022 11:59:00 PM,09/14/2022 02:19:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+672916,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/18/2022 11:59:00 PM,09/14/2022 02:09:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+672913,Theater Load in and Load Outs,09/20/2022 12:01:00 AM,09/21/2022 11:59:00 PM,09/14/2022 01:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+672912,Shooting Permit,09/16/2022 07:00:00 AM,09/16/2022 07:00:00 PM,09/14/2022 01:52:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 8 AVENUE and 9 AVENUE, WEST 49 STREET between 8 AVENUE and 9 AVENUE, WEST 48 STREET between 8 AVENUE and 9 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,"10019, 10036"
+672911,Shooting Permit,09/16/2022 08:00:00 AM,09/16/2022 11:00:00 PM,09/14/2022 01:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between WEST 12 STREET and JANE STREET, WEST 12 STREET between GREENWICH STREET and WASHINGTON STREET, JANE STREET between GREENWICH STREET and WASHINGTON STREET, GREENWICH STREET between JANE STREET and HORATIO STREET, JANE STREET between GREENWICH STREET and HUDSON STREET, HORATIO STREET between GREENWICH STREET and WASHINGTON STREET, HORATIO STREET between HUDSON STREET and GREENWICH STREET, WEST 13 STREET between 9 AVENUE and WASHINGTON STREET, WASHINGTON STREET between HORATIO STREET and BETHUNE STREET",Manhattan,2,6,Television,Made for TV/mini-series,Canada,10014
+672905,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 08:00:00 PM,09/14/2022 01:30:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between SENECA AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between SENECA AVENUE and WEIRFIELD STREET, MYRTLE AVENUE between WEIRFIELD STREET and CENTRE STREET, MYRTLE AVENUE between CENTRE STREET and GEORGE STREET, GEORGE STREET between MYRTLE AVENUE and SENECA AVENUE, WEIRFIELD STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, WEIRFIELD STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, WILSON AVENUE between HANCOCK STREET and HALSEY STREET, HANCOCK STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, HALSEY STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+672891,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 09:00:00 PM,09/14/2022 12:27:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between TUDOR PLACE and EAST 164 STREET, MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE, WALTON AVENUE between TUDOR PLACE and MCCLELLAN STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, MCCLELLAN STREET between GRAND CONCOURSE and CARROLL PLACE, CARROLL PLACE between MCCLELLAN STREET and EAST 166 STREET, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Film,Feature,United States of America,"10451, 10452, 10456"
+672889,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 08:00:00 PM,09/14/2022 12:09:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 70 STREET and 73 STREET, 73 STREET between 47 AVENUE and 48 AVENUE, 70 STREET between 48 AVENUE and 49 AVENUE, QUEENS BOULEVARD between 73 STREET and KNEELAND STREET, 48 AVENUE between 70 STREET and 72 STREET, 72 ST between 48 AVENUE and DEAD END",Queens,"2, 4","108, 110",Television,Cable-episodic,United States of America,"11373, 11377"
+672886,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 09:00:00 PM,09/14/2022 11:57:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","FOREST ROAD between CENTER DRIVE and EAST DRIVE, 38 ROAD between PROSPECT AVENUE and CIRCLE ROAD, EAST DRIVE between FOREST ROAD and 38 ROAD, EAST DRIVE between FOREST ROAD and RIDGE ROAD, RIDGE ROAD between EAST DRIVE and OAK LANE, 104 STREET between PARK LANE SOUTH and 85 AVENUE, PARK LANE SOUTH between 102 STREET and 107 STREET, 85 AVENUE between 104 STREET and 105 STREET, 105 STREET between PARK LANE SOUTH and 85 AVENUE, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH, PARK LANE SOUTH between MYRTLE AVENUE and 112 STREET, FREEDOM DRIVE between PARK LANE SOUTH and MYRTLE AVENUE",Queens,"11, 5, 6, 82, 9","102, 111, 75",Television,Episodic series,United States of America,"11363, 11375, 11385, 11415, 11418, 11421"
+672869,Shooting Permit,09/19/2022 05:00:00 AM,09/19/2022 09:00:00 PM,09/14/2022 10:14:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERONA STREET between VAN BRUNT STREET and RICHARD STREET, RICHARD STREET between COMMERCE STREET and VERONA STREET, RICHARD STREET between VERONA STREET and KING STREET, PIONEER STREET between IMLAY STREET and RICHARD STREET, VAN BRUNT STREET between PIONEER STREET and KING STREET, IMLAY STREET between VERONA STREET and PIONEER STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+672868,Shooting Permit,09/16/2022 07:00:00 AM,09/16/2022 10:00:00 PM,09/14/2022 09:59:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+672860,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 09:00:00 PM,09/14/2022 08:59:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between DEAD END and KINGSLAND AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between MOULTRIE STREET and RUSSELL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672853,Theater Load in and Load Outs,09/30/2022 12:01:00 AM,10/01/2022 11:59:00 PM,09/14/2022 08:36:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+672834,Shooting Permit,09/16/2022 10:00:00 AM,09/16/2022 09:00:00 PM,09/13/2022 09:59:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+672833,Shooting Permit,09/16/2022 06:00:00 AM,09/17/2022 06:30:00 PM,09/13/2022 09:55:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRUCKNER BLVD between LINCOLN AVENUE and WILLIS AV, ALEXANDER AVENUE between BRUCKNER BOULEVARD and EAST 134 STREET, EAST 135 STREET between PARK AVENUE and RIDER AVENUE, PARK AVENUE between EAST 135 STREET and EAST 138 STREET, CANAL ST WEST between EAST 135 STREET and EAST 138 STREET, EAST 138 STREET between CANAL ST WEST and PARK AVENUE, LINCOLN AVENUE between EAST 134 STREET and EAST 135 STREET",Manhattan,"1, 12","32, 40",Television,Episodic series,United States of America,"10033, 10451, 10454"
+672800,Shooting Permit,09/18/2022 06:00:00 AM,09/18/2022 11:00:00 PM,09/13/2022 06:11:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+672776,Shooting Permit,09/15/2022 12:00:00 PM,09/15/2022 11:30:00 PM,09/13/2022 03:31:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between MONITOR STREET and NORTH HENRY STREET, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+672775,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 10:00:00 PM,09/13/2022 03:28:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between NORMAN AVENUE and NASSAU AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, NORMAN AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672774,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 11:59:00 PM,09/13/2022 03:28:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 5 STREET between KENT AVENUE and DEAD END, HALSEY STREET between PATCHEN AVENUE and RALPH AVENUE, PATCHEN AVENUE between HANCOCK STREET and HALSEY STREET",Brooklyn,"1, 3","81, 94",Commercial,Commercial,United States of America,"11233, 11249"
+672769,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 11:59:00 PM,09/13/2022 03:03:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 5 STREET between WYTHE AVENUE and BERRY STREET, BEDFORD AVENUE between NORTH 5 STREET and NORTH 6 STREET, NORTH 5 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 5 STREET between WYTHE AVENUE and KENT AVENUE, MANHATTAN AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, GREENPOINT AVENUE between MANHATTAN AVENUE and LEONARD STREET, CALYER STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,"11211, 11222, 11249"
+672764,Shooting Permit,09/17/2022 03:00:00 AM,09/17/2022 01:00:00 PM,09/13/2022 02:44:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672761,Shooting Permit,09/15/2022 04:00:00 AM,09/15/2022 01:00:00 PM,09/13/2022 02:33:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672760,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 09:00:00 PM,09/13/2022 02:27:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 30 STREET between 2 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, 3 AVENUE between EAST 29 STREET and EAST 30 STREET, 3 AVENUE between EAST 28 STREET and EAST 29 STREET, EAST 29 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+672758,Shooting Permit,09/16/2022 03:00:00 AM,09/16/2022 12:00:00 PM,09/13/2022 02:19:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672757,Shooting Permit,09/16/2022 07:00:00 AM,09/16/2022 07:00:00 PM,09/13/2022 02:18:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672751,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 09:00:00 PM,09/13/2022 02:04:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672743,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 10:00:00 PM,09/13/2022 01:49:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672733,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 09:00:00 PM,09/13/2022 01:27:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, KINGSLAND AVE between GREENPOINT AVE and DEAD END, NORMAN AVENUE between MOULTRIE STREET and JEWEL STREET, CALYER STREET between GUERNSEY STREET and LORIMER STREET, CALYER STREET between LORIMER STREET and MANHATTAN AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MILTON STREET and NOBLE STREET, MANHATTAN AVENUE between NOBLE STREET and CALYER STREET, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672731,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 09:00:00 PM,09/13/2022 01:19:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between TUDOR PLACE and EAST 164 STREET, MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE, WALTON AVENUE between TUDOR PLACE and MCCLELLAN STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, MCCLELLAN STREET between GRAND CONCOURSE and CARROLL PLACE, CARROLL PLACE between MCCLELLAN STREET and EAST 166 STREET, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Film,Feature,United States of America,"10451, 10452, 10456"
+672728,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 10:00:00 PM,09/13/2022 01:16:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+672727,Shooting Permit,09/21/2022 07:00:00 AM,09/21/2022 08:00:00 PM,09/13/2022 01:15:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, NORTH 10 STREET between WYTHE AVENUE and KENT AVENUE, WARREN STREET between BROADWAY and CHURCH STREET",Brooklyn,1,"1, 94",Still Photography,Not Applicable,United States of America,"10007, 11249"
+672726,Shooting Permit,09/20/2022 07:00:00 AM,09/20/2022 08:00:00 PM,09/13/2022 01:14:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+672717,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 11:00:00 PM,09/13/2022 12:53:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between NORMAN AVENUE and NASSAU AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672716,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 11:59:00 PM,09/13/2022 12:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+672710,Theater Load in and Load Outs,10/09/2022 06:00:00 AM,10/09/2022 11:00:00 PM,09/13/2022 12:25:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+672709,Theater Load in and Load Outs,10/08/2022 06:00:00 AM,10/08/2022 11:00:00 PM,09/13/2022 12:22:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+672708,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 09:30:00 PM,09/13/2022 12:19:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 69 STREET between MADISON AVENUE and FIFTH AVENUE, FIFTH AVENUE between EAST 69 STREET and EAST 68 STREET",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,"10021, 10065"
+672705,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 08:00:00 PM,09/13/2022 12:15:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEPTUNE AVENUE between WEST 28 STREET and WEST 31 STREET,Brooklyn,13,60,Commercial,Promo,United States of America,11224
+672703,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 09:00:00 PM,09/13/2022 12:10:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEKALB AVENUE between MARCY AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Music Video,Signed Artist,United States of America,"11205, 11216"
+672702,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 08:00:00 PM,09/13/2022 12:10:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEPTUNE AVENUE between WEST 28 STREET and WEST 31 STREET,Brooklyn,13,60,Commercial,Promo,United States of America,11224
+672700,Shooting Permit,09/18/2022 06:00:00 AM,09/18/2022 10:00:00 PM,09/13/2022 12:04:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between DEKALB AVENUE and PULASKI STREET, NOSTRAND AVENUE between DEKALB AVENUE and KOSCIUSZKO STREET, DEKALB AVENUE between NOSTRAND AVENUE and MARCY AVENUE",Brooklyn,3,79,Music Video,Signed Artist,United States of America,"11205, 11216"
+672696,Shooting Permit,09/23/2022 09:00:00 PM,09/24/2022 06:00:00 AM,09/13/2022 11:44:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",HOWARD STREET between BROADWAY and LAFAYETTE STREET,Manhattan,2,5,Film,Feature,United States of America,10013
+672695,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 09:00:00 PM,09/13/2022 11:43:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672693,Shooting Permit,09/16/2022 07:00:00 AM,09/16/2022 09:00:00 PM,09/13/2022 11:41:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672690,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 08:00:00 PM,09/13/2022 11:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+672689,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 11:45:00 PM,09/13/2022 11:30:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, WALL STREET between HANOVER STREET and WILLIAM STREET, EAST 81 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"1, 2, 8","1, 19, 9",Film,Feature,United States of America,"10005, 10012, 10028"
+672688,Shooting Permit,09/16/2022 04:00:00 PM,09/17/2022 04:00:00 AM,09/13/2022 11:26:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET, FRONT STREET between OLD SLIP and GOUVERNEUR LANE",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+672687,Shooting Permit,09/15/2022 05:00:00 PM,09/16/2022 02:00:00 AM,09/13/2022 11:25:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between PEARL STREET and FRONT STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between PEARL STREET and WATER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+672686,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 11:00:00 PM,09/13/2022 11:24:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672682,Theater Load in and Load Outs,09/18/2022 06:00:00 AM,09/19/2022 11:59:00 PM,09/13/2022 11:20:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+672677,Shooting Permit,09/17/2022 06:00:00 AM,09/17/2022 09:00:00 PM,09/13/2022 11:06:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between NOSTRAND AVENUE and MARCY AVENUE, NOSTRAND AVENUE between DEKALB AVENUE and PULASKI STREET, NOSTRAND AVENUE between DEKALB AVENUE and KOSCIUSZKO STREET",Brooklyn,3,79,Music Video,Signed Artist,United States of America,"11205, 11216"
+672674,Shooting Permit,09/30/2022 07:00:00 AM,09/30/2022 11:00:00 PM,09/13/2022 11:04:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672673,Shooting Permit,09/15/2022 08:00:00 AM,09/15/2022 09:00:00 PM,09/13/2022 11:02:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","212 STREET between 38 AVENUE and 39 AVENUE, 38 AVENUE between 211 STREET and 212 STREET, 38 AVENUE between 212 STREET and 213 STREET, 38 AVENUE between 210 STREET and 211 STREET, 38 AVENUE between 213 STREET and BELL BOULEVARD, 39 AVENUE between 211 STREET and 213 STREET, 39 AVENUE between 213 STREET and BELL BOULEVARD, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"11, 2","108, 111",Television,Episodic series,United States of America,"11101, 11361"
+672671,Shooting Permit,09/29/2022 07:00:00 AM,09/29/2022 11:00:00 PM,09/13/2022 11:02:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672669,Shooting Permit,09/28/2022 07:00:00 AM,09/28/2022 11:00:00 PM,09/13/2022 11:00:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672638,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/17/2022 06:00:00 AM,09/13/2022 09:32:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+672635,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 09:00:00 PM,09/13/2022 09:27:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 76 ROAD and 78 AVENUE, 76 ROAD between QUEENS BOULEVARD and GRAND CENTRAL PARKWAY, 77 AVENUE between QUEENS BOULEVARD and GRAND CENTRAL PARKWAY",Queens,6,112,Television,Cable-episodic,United States of America,11375
+672634,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 09:00:00 PM,09/13/2022 09:21:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 76 ROAD and 78 AVENUE, 76 ROAD between QUEENS BOULEVARD and GRAND CENTRAL PARKWAY, 77 AVENUE between QUEENS BOULEVARD and GRAND CENTRAL PARKWAY, QUEENS BOULEVARD between 76 ROAD and 112 STREET",Queens,6,112,Television,Cable-episodic,United States of America,11375
+672628,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/16/2022 11:59:00 PM,09/13/2022 08:00:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+672627,Theater Load in and Load Outs,09/15/2022 12:01:00 AM,09/15/2022 11:59:00 PM,09/13/2022 07:49:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+672621,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 11:00:00 PM,09/13/2022 06:57:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+672616,Shooting Permit,09/15/2022 08:30:00 AM,09/15/2022 10:30:00 PM,09/13/2022 12:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+672614,Theater Load in and Load Outs,09/14/2022 12:01:00 AM,09/14/2022 11:59:00 PM,09/12/2022 11:53:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+672607,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 08:00:00 PM,09/12/2022 09:55:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, 9 AVENUE between GANSEVOORT STREET and LITTLE WEST 12 STREET, LITTLE WEST 12 STREET between 9 AVENUE and WASHINGTON STREET, 9 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, GANSEVOORT STREET between HUDSON STREET and WEST 13 STREET, GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, HUDSON STREET between GANSEVOORT STREET and WEST 13 STREET, WEST 13 STREET between HUDSON STREET and GANSEVOORT STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, 10 AVENUE between WEST 13 STREET and WEST 14 STREET, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Made for TV/mini-series,Canada,10014
+672589,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 11:00:00 PM,09/12/2022 07:55:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, REEVES AVENUE between 150 STREET and 153 STREET, REEVES AVENUE between 153 STREET and 61 ROAD, KISSENA BLVD between HORACE HARDING EXPRESSWAY and MELBOURNE AVE",Brooklyn,"1, 8","107, 94",Television,Episodic series,United States of America,"11222, 11367"
+672576,Shooting Permit,10/11/2022 06:00:00 AM,10/11/2022 11:59:00 PM,09/12/2022 06:00:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,Television,Special/Awards Show,United States of America,11237
+672575,Shooting Permit,09/15/2022 08:00:00 AM,09/15/2022 09:00:00 PM,09/12/2022 05:56:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DEAD END and COMMERCIAL STREET, COMMERCIAL STREET between BELL SLIP and BLUE SLIP, MANHATTAN AVENUE between DEAD END and BOX STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+672568,Shooting Permit,10/10/2022 06:00:00 AM,10/10/2022 11:59:00 PM,09/12/2022 05:28:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,Television,Special/Awards Show,United States of America,11237
+672561,Shooting Permit,09/27/2022 07:00:00 AM,09/27/2022 11:00:00 PM,09/12/2022 04:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672558,Shooting Permit,09/26/2022 07:00:00 AM,09/26/2022 11:00:00 PM,09/12/2022 04:53:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+672552,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 09:00:00 PM,09/12/2022 04:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DEAD END and BOX STREET, COMMERCIAL STREET between MANHATTAN AVENUE and BOX ST",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+672549,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 10:00:00 PM,09/12/2022 04:07:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET, LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, WITHERS ST. between MEEKER AVENUE and UNION AVENUE, UNION AVENUE between FROST STREET and MEEKER AVENUE",Brooklyn,"1, 18","69, 94",Television,Cable-episodic,United States of America,"11211, 11236"
+672545,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 08:00:00 PM,09/12/2022 03:55:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEPTUNE AVENUE between WEST 28 STREET and WEST 31 STREET, BAYVIEW AVENUE between NEPTUNE AVENUE and WEST 33 STREET",Brooklyn,13,60,Commercial,Promo,United States of America,11224
+672537,Theater Load in and Load Outs,09/17/2022 12:00:00 PM,09/20/2022 11:59:00 PM,09/12/2022 03:17:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBUS AVENUE between WEST 78 STREET and WEST 81 STREET,Manhattan,7,20,Theater,Theater,United States of America,10024
+672518,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 11:30:00 PM,09/12/2022 02:34:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 9 AVENUE and 10 AVENUE, WEST 50 STREET between 9 AVENUE and 10 AVENUE, 28 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 28 STREET and CRESCENT STREET, 33 STREET between 36 AVENUE and 37 AVENUE, 36 AVENUE between 33 STREET and 32 STREET",Manhattan,"1, 4, 5","114, 18",Commercial,Commercial,United States of America,"10019, 10112, 11101, 11106"
+672508,Theater Load in and Load Outs,09/13/2022 12:01:00 AM,09/14/2022 11:59:00 PM,09/12/2022 01:50:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+672498,Shooting Permit,09/16/2022 12:00:00 AM,09/17/2022 04:00:00 AM,09/12/2022 01:19:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+672497,Shooting Permit,09/15/2022 12:00:00 PM,09/16/2022 04:00:00 AM,09/12/2022 01:18:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET, HANOVER SQUARE between WATER STREET and PEARL STREET, WATER STREET between OLD SLIP and WALL STREET, FRONT STREET between OLD SLIP and GOUVERNEUR LANE",Queens,"1, 2","1, 108",Television,Episodic series,United States of America,"10004, 10005, 11101"
+672494,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 08:00:00 PM,09/12/2022 12:54:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+672492,Theater Load in and Load Outs,09/29/2022 12:01:00 AM,10/14/2022 06:00:00 AM,09/12/2022 12:49:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+672491,Theater Load in and Load Outs,09/15/2022 12:01:00 AM,09/28/2022 11:59:00 PM,09/12/2022 12:49:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+672488,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 09:00:00 PM,09/12/2022 12:45:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, WILSON AVENUE between JEFFERSON AVENUE and HANCOCK STREET, WILSON AVENUE between HANCOCK STREET and WEIRFIELD STREET, WEIRFIELD STREET between CENTRAL AVENUE and WILSON AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+672474,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 08:00:00 PM,09/12/2022 12:07:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUFFIELD STREET between FULTON STREET and WILLOUGHBY STREET, FLEET PLACE between MYRTLE AVENUE and WILLOUGHBY STREET, WILLOUGHBY STREET between FLEET PLACE and ASHLAND PLACE, ASHLAND PLACE between MYRTLE AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE",Brooklyn,2,"84, 88",Television,Made for TV/mini-series,United States of America,11201
+672457,Shooting Permit,09/14/2022 08:00:00 AM,09/14/2022 11:00:00 PM,09/12/2022 10:37:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE, WILLOUGHBY AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WYCKOFF AVENUE between SUYDAM STREET and WILLOUGHBY AVENUE",Brooklyn,4,83,Film,Feature,United States of America,11237
+672455,Shooting Permit,09/13/2022 08:00:00 AM,09/13/2022 10:00:00 PM,09/12/2022 10:24:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE, WILLOUGHBY AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET",Brooklyn,4,83,Film,Feature,United States of America,11237
+672450,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 11:00:00 PM,09/12/2022 10:04:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+672440,Shooting Permit,09/21/2022 08:00:00 AM,09/21/2022 03:00:00 PM,09/12/2022 09:42:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 93 STREET and EAST 94 STREET, PARK AVENUE between EAST 92 STREET and EAST 93 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+672437,Shooting Permit,09/20/2022 07:30:00 AM,09/20/2022 10:00:00 PM,09/12/2022 09:23:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+672434,Shooting Permit,09/19/2022 07:00:00 AM,09/19/2022 09:00:00 PM,09/12/2022 09:04:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+672427,Shooting Permit,09/14/2022 12:01:00 AM,09/14/2022 11:00:00 AM,09/12/2022 07:19:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672426,Shooting Permit,09/13/2022 03:00:00 AM,09/13/2022 03:00:00 PM,09/12/2022 07:12:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672425,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 08:00:00 PM,09/12/2022 06:12:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between JEFFERSON AVENUE and HALSEY STREET, WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT ST and COVERT ST",Brooklyn,4,83,Television,Episodic series,United States of America,"11207, 11221"
+672418,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 07:30:00 PM,09/11/2022 10:16:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 71 STREET and WEST 72 STREET, WEST 71 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,10023
+672415,Shooting Permit,09/14/2022 08:00:00 AM,09/14/2022 07:00:00 PM,09/11/2022 08:57:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREEN STREET between WEST STREET and FRANKLIN STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+672331,Shooting Permit,09/15/2022 05:00:00 PM,09/16/2022 07:00:00 AM,09/09/2022 07:40:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",REVIEW AVENUE between GREENPOINT AVENUE and LAUREL HILL BOULEVARD,Queens,2,108,Television,Cable-episodic,United States of America,11101
+672329,Shooting Permit,09/14/2022 12:00:00 PM,09/14/2022 06:00:00 PM,09/09/2022 06:48:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672318,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 11:00:00 PM,09/09/2022 05:03:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+672311,Theater Load in and Load Outs,09/17/2022 12:01:00 AM,09/19/2022 06:00:00 AM,09/09/2022 04:17:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+672296,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 11:00:00 PM,09/09/2022 03:50:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Special/Awards Show,United States of America,10018
+672284,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 10:00:00 PM,09/09/2022 03:26:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+672283,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 07:00:00 PM,09/09/2022 03:23:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PELL STREET and DOYERS STREET, BOWERY between CANAL STREET and BAYARD STREET, CHATHAM SQUARE between CATHERINE STREET and EAST BROADWAY",Manhattan,3,5,Television,Episodic series,United States of America,"10002, 10013, 10038"
+672282,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 10:00:00 PM,09/09/2022 03:20:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+672275,Shooting Permit,09/13/2022 05:00:00 AM,09/13/2022 07:00:00 PM,09/09/2022 03:13:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 71 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 65 STREET and WEST 66 STREET",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,10023
+672274,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 10:00:00 PM,09/09/2022 03:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+672273,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 10:00:00 PM,09/09/2022 03:04:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 72 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Television,Made for TV/mini-series,Canada,"10021, 10023, 10075"
+672272,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 08:30:00 PM,09/09/2022 03:01:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 32 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 31 STREET between PARK AVENUE SOUTH and MADISON AVENUE, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 31 STREET and EAST 30 STREET, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, EAST 31 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 31 STREET between 3 AVENUE and 2 AVENUE, EAST 28 STREET between MT CARMEL PLACE and 1 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"5, 6","13, 14, 17",Television,Episodic series,United States of America,"10010, 10016"
+672264,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 10:00:00 PM,09/09/2022 02:23:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672261,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 10:00:00 PM,09/09/2022 02:14:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+672260,Shooting Permit,09/13/2022 08:00:00 AM,09/13/2022 10:00:00 PM,09/09/2022 02:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","73 ST between 48 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 73 STREET and HILLYER STREET",Queens,"2, 4, 7","108, 109, 110",Television,Cable-episodic,United States of America,"11355, 11367, 11373, 11377"
+672254,Shooting Permit,09/19/2022 08:00:00 AM,09/19/2022 11:00:00 PM,09/09/2022 01:41:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between DOUGLASS STREET and DEGRAW STREET,Brooklyn,6,76,Film,Short,United States of America,11231
+672244,Theater Load in and Load Outs,09/20/2022 12:01:00 AM,09/20/2022 11:59:00 PM,09/09/2022 01:25:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+672242,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 10:00:00 PM,09/09/2022 01:23:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",THIRD STREET between 6 AVENUE and 7 AVENUE,Brooklyn,6,78,Film,Short,United States of America,11215
+672241,Shooting Permit,09/13/2022 03:00:00 PM,09/13/2022 06:30:00 PM,09/09/2022 01:23:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+672228,Rigging Permit,09/13/2022 05:00:00 PM,09/14/2022 02:00:00 PM,09/09/2022 12:47:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 13 STREET between 5 AVENUE and UNIVERSITY PLACE,Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011"
+672223,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 10:00:00 PM,09/09/2022 12:18:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOSTON ROAD between EAST 233 STREET and PROVOST AVENUE,Bronx,12,47,Television,Episodic series,United States of America,"10466, 10475"
+672203,Shooting Permit,09/23/2022 06:00:00 AM,09/23/2022 10:00:00 PM,09/09/2022 10:42:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672201,Shooting Permit,09/22/2022 06:00:00 AM,09/22/2022 10:00:00 PM,09/09/2022 10:38:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672197,Shooting Permit,09/21/2022 06:00:00 AM,09/21/2022 10:00:00 PM,09/09/2022 10:34:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672195,Shooting Permit,09/20/2022 06:00:00 AM,09/20/2022 10:00:00 PM,09/09/2022 10:29:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672192,Shooting Permit,09/19/2022 06:00:00 AM,09/19/2022 10:00:00 PM,09/09/2022 10:23:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672191,Shooting Permit,09/18/2022 06:00:00 AM,09/18/2022 10:00:00 PM,09/09/2022 10:19:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672190,Shooting Permit,09/17/2022 06:00:00 AM,09/17/2022 10:00:00 PM,09/09/2022 10:14:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672186,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 07:00:00 PM,09/09/2022 10:05:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",CEDAR AVENUE between WEST 179 STREET and WEST TREMONT AVENUE,Bronx,"12, 5","46, 47",Still Photography,Not Applicable,United States of America,"10453, 10467"
+672177,Shooting Permit,09/12/2022 08:00:00 AM,09/12/2022 10:30:00 PM,09/09/2022 09:31:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between GARDNER AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and VARICK AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, GARDNER AVENUE between INGRAHAM STREET and JOHNSON AVENUE, GARDNER AVENUE between JOHNSON AVENUE and RANDOLPH STREET, WOODWARD AVENUE between STANHOPE STREET and STARR STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE",Brooklyn,"1, 5","104, 90",Television,Cable-episodic,United States of America,"11237, 11385"
+672151,Shooting Permit,09/14/2022 08:00:00 AM,09/14/2022 10:00:00 PM,09/09/2022 12:14:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 86 STREET and WEST 87 STREET, AMSTERDAM AVENUE between WEST 87 STREET and WEST 88 STREET, WEST 87 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 86 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 85 STREET and WEST 86 STREET, WEST 86 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 7","20, 24, 28",Television,Episodic series,United States of America,"10024, 10026, 10027"
+672138,Shooting Permit,09/19/2022 03:00:00 PM,09/19/2022 10:00:00 PM,09/08/2022 08:55:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+672137,Shooting Permit,09/16/2022 01:00:00 PM,09/17/2022 04:00:00 AM,09/08/2022 08:54:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between 2 AVENUE and SUTTON PLACE, EAST 58 STREET between 1 AVENUE and SUTTON PLACE, EAST 57 STREET between 1 AVENUE and SUTTON PLACE, E 56TH ST. between 1 AVENUE and SUTTON PL., SUTTON PLACE between EAST 58 STREET and E 56TH ST., E 59TH ST. between YORK AVENUE and DEAD END, EAST 59 STREET between 1 AVENUE and SUTTON PLACE, 1 AVENUE between EAST 59 STREET and EAST 58 STREET, 1 AVENUE between EAST 59 STREET and EAST 60 STREET",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,10022
+672136,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 10:00:00 PM,09/08/2022 08:51:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 5 AVENUE and 6 AVENUE, WEST 47 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 5 AVENUE and 7 AVENUE, WEST 45 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 45 STREET and WEST 46 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,10036
+672130,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 08:19:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, SHORE BOULEVARD between 21 DRIVE and DITMARS BOULEVARD, 19 STREET between 23 AVENUE and DITMARS BOULEVARD, CRESCENT STREET between DITMARS BOULEVARD and 23 AVENUE, 26 STREET between DITMARS BOULEVARD and 23 AVENUE, 23 AVENUE between CRESCENT STREET and 26 STREET, 24 STREET between DITMARS BOULEVARD and 23 AVENUE, DITMARS BOULEVARD between 23 STREET and 24 STREET, 23 STREET between DITMARS BOULEVARD and 23 AVENUE, DITMARS BOULEVARD between CRESCENT STREET and 26 STREET, HOYT AVE N between 19 STREET and 21ST STREET, HOYT AVE N between 21ST ST and 23RD ST, 21ST STREET between HOYT AVE N and 24TH RD, 21 STREET between 24 ROAD and 24 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+672122,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 04:00:00 PM,09/08/2022 07:35:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Reality,United States of America,10019
+672104,Theater Load in and Load Outs,10/02/2022 06:00:00 AM,10/02/2022 11:00:00 PM,09/08/2022 05:06:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+672099,Shooting Permit,09/10/2022 07:00:00 AM,09/10/2022 11:00:00 PM,09/08/2022 04:48:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAUJER STREET between GRAHAM AVENUE and BUSHWICK AVENUE, GRAND AVENUE between 65 STREET and 66 STREET, GRAND AVENUE between 64 STREET and 65 STREET, AUSTIN STREET between 71 AVENUE and 71 ROAD",Brooklyn,"1, 5, 6","104, 112, 90",Film,Feature,United States of America,"11206, 11375, 11378, 11379, 11385"
+672089,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 11:30:00 PM,09/08/2022 04:28:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET, LEXINGTON AVENUE between EAST 90 STREET and EAST 89 STREET, EAST 90 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Film,Feature,United States of America,10128
+672075,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 08:00:00 PM,09/08/2022 04:03:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between NOBLE STREET and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+672074,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 08:00:00 PM,09/08/2022 04:03:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between NOBLE STREET and MILTON STREET, MILTON STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+672065,Shooting Permit,09/14/2022 10:00:00 AM,09/15/2022 02:00:00 AM,09/08/2022 03:46:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 124 STREET and 125 STREET, JAMAICA AVENUE between 123 STREET and 124 STREET, JAMAICA AVENUE between 125 STREET and 126 STREET, 124 STREET between JAMAICA AVENUE and 89 AVENUE, 89 AVENUE between 123 STREET and 125 STREET, 125 STREET between HILLSIDE AVENUE and JAMAICA AVENUE, JAMAICA AVENUE between 131 STREET and METROPOLITAN AVENUE, 132 STREET between JAMAICA AVENUE and METROPOLITAN AVENUE, 91 AVENUE between 139 STREET and 146 STREET, 143 STREET between 91 AVENUE and ARCHER AVENUE, 144 PLACE between 91 AVENUE and ARCHER AVENUE, ARCHER AVENUE between 143 STREET and 146 STREET",Queens,"12, 9","102, 103",Television,Cable-episodic,United States of America,"11418, 11435"
+672064,Shooting Permit,09/13/2022 08:00:00 AM,09/13/2022 07:00:00 PM,09/08/2022 03:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREEN STREET between WEST STREET and FRANKLIN STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+672060,Shooting Permit,09/27/2022 06:00:00 AM,09/28/2022 12:00:00 AM,09/08/2022 03:29:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, EAST 61 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,8,19,Film,Feature,United States of America,"10022, 10065"
+672059,Theater Load in and Load Outs,10/01/2022 06:00:00 AM,10/01/2022 11:00:00 PM,09/08/2022 03:25:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+672057,Shooting Permit,09/26/2022 12:00:00 PM,09/27/2022 02:00:00 AM,09/08/2022 03:23:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, EAST 61 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,8,19,Film,Feature,United States of America,"10022, 10065"
+672055,Shooting Permit,09/16/2022 06:00:00 AM,09/16/2022 10:00:00 PM,09/08/2022 03:11:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672053,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 10:00:00 PM,09/08/2022 03:09:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between PRESIDENT STREET and BERKELEY PLACE, 8 AVENUE between LINCOLN PLACE and ST JOHNS PLACE, LINCOLN PLACE between 8 AVENUE and PLAZA ST WEST, PLAZA STREET WEST between FLATBUSH AVE and PRESIDENT ST, 8 AVENUE between 6 STREET and 7 STREET, 6 STREET between 8 AVENUE and PROSPECT PARK WEST",Brooklyn,6,78,Television,Episodic series,United States of America,"11215, 11217"
+672051,Shooting Permit,09/15/2022 06:00:00 AM,09/15/2022 10:00:00 PM,09/08/2022 03:07:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672047,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 10:00:00 PM,09/08/2022 03:00:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+672039,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 11:00:00 PM,09/08/2022 02:42:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between MARCY AVENUE and NOSTRAND AVENUE, LAFAYETTE AVENUE between MARCY AVENUE and TOMPKINS AVENUE",Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+672040,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 11:00:00 PM,09/08/2022 02:42:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between WYTHE AVENUE and KENT AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11249
+672038,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 02:42:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 21 STREET between ALBEMARLE ROAD and REGENT PLACE,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+672036,Shooting Permit,09/16/2022 09:00:00 AM,09/16/2022 10:00:00 PM,09/08/2022 02:37:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+672033,Shooting Permit,09/15/2022 08:00:00 AM,09/15/2022 10:00:00 PM,09/08/2022 02:20:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EDGECOMBE AVENUE between WEST 155 STREET and WEST 150 STREET, BROADWAY between WEST 155 STREET and WEST 153 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, ST NICHOLAS PLACE between WEST 155 STREET and WEST 151 STREET, WEST 150 STREET between ST NICHOLAS PLACE and EDGECOMBE AVENUE, ST NICHOLAS AVENUE between WEST 150 STREET and WEST 147 STREET",Manhattan,"10, 12, 9","30, 33",Television,Cable-episodic,United States of America,"10031, 10032"
+672019,Theater Load in and Load Outs,09/12/2022 12:01:00 AM,09/14/2022 11:59:00 PM,09/08/2022 02:00:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+672008,Shooting Permit,09/13/2022 08:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 01:47:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+672003,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 10:00:00 PM,09/08/2022 01:41:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 95 STREET between AVENUE L and AVENUE K, AVENUE L between EAST 94 STREET and ROCKAWAY PARKWAY, FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+672000,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 01:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 11 STREET and WEST 12 STREET, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 12 STREET and WEST 14 STREET, EAST 13 STREET between 5 AVENUE and BROADWAY, UNIVERSITY PLACE between EAST 12 STREET and EAST 13 STREET, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10003, 10011"
+671998,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/16/2022 11:59:00 AM,09/08/2022 01:35:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+671993,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 01:20:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+671989,Shooting Permit,09/20/2022 09:00:00 AM,09/20/2022 05:00:00 PM,09/08/2022 01:08:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 11 AVENUE and 12 AVENUE,Manhattan,4,18,Television,Cable-daily,United States of America,10019
+671977,Theater Load in and Load Outs,09/15/2022 12:01:00 AM,09/15/2022 11:59:00 PM,09/08/2022 12:18:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+671970,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 08:00:00 PM,09/08/2022 12:12:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",MACON STREET between THROOP AVENUE and MARCUS GARVEY BOULEVARD,Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+671969,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 10:00:00 PM,09/08/2022 12:11:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671963,Shooting Permit,09/10/2022 07:00:00 AM,09/10/2022 07:00:00 PM,09/08/2022 11:55:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",REMSEN STREET between MONTAGUE TERRACE and HICKS STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+671961,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 11:00:00 PM,09/08/2022 11:44:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NASSAU AVENUE and NORTH 12 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+671956,Theater Load in and Load Outs,09/14/2022 12:01:00 AM,09/14/2022 11:59:00 PM,09/08/2022 11:24:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+671945,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 09:00:00 PM,09/08/2022 10:57:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOSTON ROAD between EAST 233 STREET and PROVOST AVENUE,Bronx,12,47,Television,Episodic series,United States of America,"10466, 10475"
+671939,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 08:00:00 PM,09/08/2022 10:30:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLES STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between PERRY STREET and CHARLES STREET, GREENWICH STREET between WEST 11 STREET and PERRY STREET, GREENWICH STREET between BANK STREET and WEST 11 STREET, WEST 11 STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between BANK STREET and BETHUNE STREET, WEST 14 STREET between WASHINGTON STREET and 10 AVENUE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET",Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,10014
+671936,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 10:00:00 PM,09/08/2022 09:58:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671934,Shooting Permit,09/10/2022 03:00:00 AM,09/10/2022 01:00:00 PM,09/08/2022 09:48:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,10036
+671928,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 08:00:00 PM,09/08/2022 08:47:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between WITHERS STREET and RICHARDSON STREET, LORIMER STREET between BAYARD STREET and RICHARDSON STREET, Meeker Ave between Lorimer St and Frost St, LORIMER STREET between JACKSON STREET and CONSELYEA STREET, LEONARD STREET between JACKSON STREET and SKILLMAN AVENUE, LEONARD STREET between SKILLMAN AVENUE and CONSELYEA STREET, Meeker Ave between Jackson St and Lorimer St, Jackson St between Meeker Ave and Lorimer St, SKILLMAN AVENUE between LORIMER STREET and LEONARD STREET, SKILLMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11211
+671918,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 10:00:00 PM,09/08/2022 08:03:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+671910,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 08:00:00 PM,09/07/2022 10:46:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, VANDERBILT AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 45 STREET, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, VANDERBILT AVENUE between EAST 46 STREET and EAST 47 STREET, WEST 47 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 46 STREET and WEST 47 STREET, 9 AVENUE between WEST 47 STREET and WEST 48 STREET, 9 AVENUE between WEST 48 STREET and WEST 49 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,"10017, 10019, 10036, 10173"
+671899,Shooting Permit,09/19/2022 07:30:00 AM,09/19/2022 08:00:00 PM,09/07/2022 07:55:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARROW STREET between GREENWICH STREET and WASHINGTON STREET, WASHINGTON STREET between BARROW STREET and MORTON STREET",Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+671888,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 08:00:00 PM,09/07/2022 06:27:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, AMSTERDAM AVENUE between WEST 152 STREET and WEST 153 STREET, BROADWAY between WEST 152 STREET and WEST 155 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVE between WEST 155 STREET and WEST 153RD",Manhattan,"12, 9","30, 33",Television,Cable-episodic,United States of America,"10031, 10032"
+671881,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 09:00:00 PM,09/07/2022 05:43:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 DRIVE and 44 ROAD, 44 DRIVE between 10 STREET and 11 STREET, 44 ROAD between 10 STREET and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 5 STREET",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,"11101, 11106"
+671860,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 08:00:00 PM,09/07/2022 03:53:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEWART ROAD between 219 STREET and GRAND CENTRAL PARKWAY, PECK AVENUE between 218 STREET and GRAND CENTRAL PARKWAY, 218 STREET between PECK AVENUE and 82 AVENUE, 219 STREET between STEWART ROAD and PECK AVENUE, STEWART ROAD between UNION TURNPIKE and 219 STREET, HARTLAND AVENUE between GRAND CENTRAL PARKWAY and 221 STREET, HARTLAND AVENUE between UNION TURNPIKE and 221 STREET, UNION TURNPIKE between HARTLAND AVENUE and 221 STREET, UNION TURNPIKE between 215 STREET and HARTLAND AVENUE, BELL BOULEVARD between PECK AVENUE and UNION TURNPIKE",Queens,11,111,Television,Cable-episodic,United States of America,"11364, 11427"
+671843,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 11:30:00 PM,09/07/2022 03:08:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 67 STREET and 69 STREET, 67 STREET between 47 AVENUE and 49 AVENUE, 48 AVENUE between 67 STREET and 69 STREET, 48 AVENUE between 66 STREET and 67 STREET, 49 AVENUE between 69 STREET and 70 STREET, 69 STREET between 49 AVENUE and 50 AVENUE, 50 AVENUE between 69 STREET and GARFIELD AVENUE, GARFIELD AVENUE between 69 STREET and 69 PLACE, MAURICE AVENUE between TYLER AVENUE and 54 AVENUE",Queens,"2, 5","104, 108",Television,Episodic series,United States of America,"11377, 11378"
+671842,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 08:00:00 PM,09/07/2022 03:07:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET",Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10011, 10014"
+671840,Shooting Permit,09/11/2022 07:00:00 AM,09/11/2022 12:00:00 PM,09/07/2022 02:55:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","1ST AVE. between EAST 42 STREET and EAST 44 STREET, EAST 42 STREET between 2 AVENUE and 3 AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,17,Television,Cable-episodic,United States of America,10017
+671827,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 09:00:00 PM,09/07/2022 02:34:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671826,Theater Load in and Load Outs,10/11/2022 12:01:00 AM,10/11/2022 11:59:00 PM,09/07/2022 02:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+671822,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 09:00:00 PM,09/07/2022 02:28:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671817,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 09:00:00 PM,09/07/2022 02:13:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+671815,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 09:00:00 PM,09/07/2022 02:10:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+671808,Shooting Permit,09/09/2022 01:00:00 PM,09/10/2022 04:00:00 AM,09/07/2022 01:56:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between GARDNER AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and VARICK AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, GARDNER AVENUE between INGRAHAM STREET and JOHNSON AVENUE, GARDNER AVENUE between JOHNSON AVENUE and RANDOLPH STREET, WOODWARD AVENUE between STANHOPE STREET and STARR STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE",Brooklyn,"1, 5","104, 90",Television,Cable-episodic,United States of America,"11237, 11385"
+671804,Shooting Permit,09/11/2022 03:00:00 AM,09/11/2022 11:59:00 PM,09/07/2022 01:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+671801,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 11:00:00 PM,09/07/2022 01:37:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671800,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 11:00:00 PM,09/07/2022 01:37:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671799,Shooting Permit,09/12/2022 05:00:00 AM,09/12/2022 11:00:00 PM,09/07/2022 01:37:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671796,Shooting Permit,09/13/2022 08:00:00 AM,09/14/2022 12:00:00 AM,09/07/2022 01:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 118 STREET between ST NICHOLAS AVENUE and 7 AVENUE, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, ST NICHOLAS AVENUE between WEST 117 STREET and WEST 118 STREET, WEST 118 STREET between LENOX AVENUE and 7 AVENUE, LENOX AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 117 STREET between ST NICHOLAS AVENUE and EAST 117 STREET, WEST 117 STREET between 7 AVENUE and ST NICHOLAS AVENUE, 7 AVENUE between WEST 118 STREET and WEST 117 STREET, WEST 119 STREET between 7 AVENUE and LENOX AVENUE",Manhattan,10,28,Television,Episodic series,United States of America,10026
+671789,Shooting Permit,09/09/2022 06:00:00 AM,09/09/2022 10:00:00 PM,09/07/2022 01:17:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 82 STREET and 83 STREET, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+671788,Shooting Permit,09/09/2022 10:00:00 AM,09/10/2022 03:00:00 AM,09/07/2022 01:15:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","SECOND AVENUE between EAST 15 STREET and EAST 17 STREET, EAST 15 STREET between SECOND AVENUE and RUTHERFORD PLACE, EAST 15 STREET between RUTHERFORD PLACE and THIRD AVENUE, EAST 17 STREET between RUTHERFORD PLACE and THIRD AVENUE, THIRD AVENUE between EAST 14 STREET and EAST 21 STREET, EAST 14 STREET between FIRST AVENUE and AVENUE C, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET, HANOVER SQUARE between PEARL STREET and WATER STREET, WATER STREET between OLD SLIP and WALL STREET, FRONT STREET between OLD SLIP and GOUVERNEUR LANE, WALL STREET between FRONT STREET and SOUTH STREET, SOUTH STREET between WALL STREET and MAIDEN LANE, MAIDEN LANE between FRONT STREET and SOUTH STREET, JOHN STREET between FRONT STREET and SOUTH STREET",Manhattan,"1, 3, 6","1, 13, 9",Television,Episodic series,United States of America,"10003, 10004, 10005, 10009, 10010, 10038"
+671787,Shooting Permit,09/23/2022 12:00:00 PM,09/24/2022 02:00:00 AM,09/07/2022 01:12:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 5 AVENUE and MADISON AVENUE, EAST 63 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Film,Feature,United States of America,"10022, 10065"
+671785,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 09:00:00 PM,09/07/2022 01:08:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671783,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 04:00:00 PM,09/07/2022 01:07:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between BROADWAY and 8 AVENUE,Manhattan,"4, 5, 64","18, 22",Commercial,Commercial,United States of America,"00083, 10036"
+671782,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 09:00:00 PM,09/07/2022 01:06:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671780,Shooting Permit,09/09/2022 08:00:00 AM,09/09/2022 11:00:00 PM,09/07/2022 01:04:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between TEN EYCK STREET and GRAND STREET, MAUJER STREET between GRAHAM AVENUE and BUSHWICK AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+671737,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 10:00:00 PM,09/07/2022 12:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHARLES STREET between WASHINGTON STREET and WEST STREET,Manhattan,2,6,Television,Variety,United States of America,10014
+671729,Shooting Permit,09/15/2022 04:00:00 PM,09/16/2022 05:00:00 AM,09/07/2022 11:53:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+671711,Shooting Permit,09/11/2022 09:00:00 AM,09/11/2022 09:00:00 PM,09/07/2022 11:10:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 58 STREET and WEST 59 STREET, 7 AVENUE between WEST 57 STREET and WEST 58 STREET, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE",Manhattan,"5, 64","18, 22",Television,Not Applicable,United States of America,10019
+671707,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 11:00:00 PM,09/07/2022 11:06:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671701,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 11:59:00 PM,09/07/2022 10:41:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+671700,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 11:59:00 PM,09/07/2022 10:41:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+671679,Shooting Permit,09/09/2022 08:00:00 AM,09/09/2022 11:00:00 PM,09/07/2022 09:46:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671673,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 11:59:00 PM,09/07/2022 09:29:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+671670,Shooting Permit,09/08/2022 05:00:00 AM,09/08/2022 09:15:00 AM,09/07/2022 08:29:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+671652,Shooting Permit,09/09/2022 08:00:00 PM,09/09/2022 10:00:00 PM,09/06/2022 09:46:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, 7 AVENUE between WEST 34 STREET and WEST 33 STREET",Manhattan,5,"14, 18",WEB,Not Applicable,United States of America,"10001, 10036"
+671649,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 08:00:00 PM,09/06/2022 09:02:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 2 STREET between MARCY AVENUE and HAVEMEYER STREET, HAVEMEYER STREET between SOUTH 2 STREET and SOUTH 3 STREET, SOUTH 3 STREET between HAVEMEYER STREET and BORINQUEN PLACE, HAVEMEYER STREET between SOUTH 3 STREET and BORINQUEN PLACE, MARCY AVENUE between SOUTH 2 STREET and SOUTH 1 STREET, SOUTH 1 STREET between MARCY AVENUE and HAVEMEYER STREET, GRAND STREET between HAVEMEYER STREET and MARCY AVENUE, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between DRIGGS AVENUE and BEDFORD AVENUE, SOUTH 5 STREET between DRIGGS AVENUE and SOUTH 5 PLACE",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+671639,Shooting Permit,09/13/2022 06:00:00 AM,09/13/2022 08:00:00 PM,09/06/2022 07:00:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+671638,Shooting Permit,09/12/2022 06:00:00 AM,09/12/2022 08:00:00 PM,09/06/2022 06:57:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+671630,Shooting Permit,09/07/2022 08:00:00 AM,09/08/2022 06:00:00 PM,09/06/2022 05:17:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE",Queens,2,108,Film,Feature,United States of America,"11101, 11109"
+671623,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 10:00:00 PM,09/06/2022 04:47:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, WEST 9 STREET between HICKS STREET and COLUMBIA STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+671607,Shooting Permit,09/09/2022 10:00:00 AM,09/10/2022 01:00:00 AM,09/06/2022 04:01:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",KENT AVENUE between DIVISION AVENUE and CLYMER STREET,Brooklyn,"1, 2","88, 90",Television,Episodic series,United States of America,"11211, 11249, 11251"
+671581,Theater Load in and Load Outs,09/13/2022 12:01:00 AM,09/13/2022 11:59:00 PM,09/06/2022 02:04:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+671578,Shooting Permit,09/08/2022 11:00:00 AM,09/09/2022 01:00:00 AM,09/06/2022 01:48:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between VARICK AVENUE and GARDNER AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, WOODWARD AVENUE between STANHOPE STREET and STARR STREET, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE",Brooklyn,"1, 5","104, 90",Television,Cable-episodic,United States of America,"11237, 11385"
+671570,Theater Load in and Load Outs,09/18/2022 12:01:00 AM,09/19/2022 11:59:00 PM,09/06/2022 01:21:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+671569,Shooting Permit,09/09/2022 07:30:00 AM,09/09/2022 10:30:00 PM,09/06/2022 01:17:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLY ROAD, BEVERLY ROAD between STRATFORD ROAD and ARGYLE ROAD, BEVERLY ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, STRATFORD ROAD between ALBEMARLE ROAD and TURNER PLACE, STRATFORD ROAD between HINCKLEY PLACE and BEVERLY ROAD, WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, ARGYLE ROAD between ALBEMARLE ROAD and BEVERLY ROAD, CONEY ISLAND AVENUE between FRIEL PLACE and CHURCH AVENUE, CONEY ISLAND AVENUE between ALBEMARLE ROAD and HINCKLEY PLACE",Brooklyn,"12, 14","66, 70",Television,Cable-episodic,United States of America,11218
+671567,Theater Load in and Load Outs,09/16/2022 12:01:00 AM,09/17/2022 11:59:00 PM,09/06/2022 01:10:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+671556,Theater Load in and Load Outs,09/11/2022 12:01:00 AM,09/11/2022 11:59:00 PM,09/06/2022 12:38:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+671548,Shooting Permit,09/09/2022 09:30:00 AM,09/09/2022 11:30:00 PM,09/06/2022 12:01:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMERFIELD STREET between FOREST AVENUE and SENECA AVENUE, FOREST AVENUE between SUMMERFIELD STREET and NORMAN STREET, NORMAN STREET between FOREST AVENUE and SENECA AVENUE, SENECA AVENUE between STEPHEN STREET and DECATUR STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+671541,Shooting Permit,09/08/2022 03:00:00 PM,09/08/2022 10:00:00 PM,09/06/2022 11:43:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE A and 1 AVENUE, EAST 10 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 9 STREET and EAST 10 STREET, AVENUE A between EAST 7 STREET and EAST 10 STREET",Manhattan,3,9,Television,Cable-episodic,United States of America,"10003, 10009"
+671517,Shooting Permit,09/08/2022 11:00:00 AM,09/08/2022 11:30:00 PM,09/06/2022 10:38:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between MAUJER STREET and TEN EYCK STREET, MAUJER STREET between GRAHAM AVENUE and BUSHWICK AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+671506,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 11:00:00 PM,09/06/2022 09:40:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671503,Shooting Permit,09/09/2022 08:30:00 AM,09/09/2022 10:30:00 PM,09/06/2022 09:27:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","SNUG HARBOR ROAD between RICHMOND TERRACE and COTTAGE ROW, SNUG HARBOR ROAD between COTTAGE ROW and KISSEL AVENUE, TYSEN STREET between RICHMOND TERRACE and FILLMORE STREET, FILLMORE STREET between TYSEN STREET and CHAPEL ROAD, KISSEL AVENUE between SNUG HARBOR ROAD and AMELIA COURT, KISSEL AVENUE between AMELIA COURT and WALES PLACE, KISSEL AVENUE between WALES PLACE and LINDEN STREET, KISSEL AVENUE between LINDEN STREET and WALNUT STREET",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10310"
+671497,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 08:00:00 PM,09/06/2022 09:00:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 79 STREET and EAST 83 STREET, EAST 81 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 81 STREET and EAST 82 STREET, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 79 STREET and EAST 80 STREET, MADISON AVENUE between EAST 78 STREET and EAST 79 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET, MADISON AVENUE between EAST 82 STREET and EAST 83 STREET, EAST 85 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10023, 10024, 10025, 10028, 10075"
+671494,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 09:00:00 PM,09/06/2022 08:53:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, DRIGGS AVENUE between GRAHAM AVENUE and ECKFORD STREET, DRIGGS AVENUE between ECKFORD STREET and LEONARD STREET, LEONARD STREET between DRIGGS AVENUE and ENGERT AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+671462,Shooting Permit,09/13/2022 03:00:00 PM,09/13/2022 11:59:00 PM,09/05/2022 06:15:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 57 STREET between TENTH AVENUE and ELEVENTH AVENUE,Manhattan,4,18,Television,Reality,United States of America,10019
+671342,Shooting Permit,09/08/2022 09:00:00 AM,09/09/2022 03:00:00 AM,09/03/2022 12:44:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, 54 AVENUE between 43 STREET and 44 STREET, 54 ROAD between 43 STREET and 46 STREET, 43 STREET between 54 AVENUE and 54 ROAD, 44 STREET between 54 ROAD and 54 DRIVE, 44 STREET between 53 AVENUE and 54 AVENUE, 53 AVENUE between 54 AVENUE and 44 STREET, LAUREL HILL BOULEVARD between 54 AVENUE and 56 ROAD, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222, 11378"
+671313,Shooting Permit,09/08/2022 08:30:00 AM,09/08/2022 10:30:00 PM,09/02/2022 11:15:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","SNUG HARBOR ROAD between RICHMOND TERRACE and COTTAGE ROW, SNUG HARBOR ROAD between COTTAGE ROW and KISSEL AVENUE, TYSEN STREET between RICHMOND TERRACE and FILLMORE STREET, FILLMORE STREET between TYSEN STREET and CHAPEL ROAD, KISSEL AVENUE between SNUG HARBOR ROAD and AMELIA COURT, KISSEL AVENUE between AMELIA COURT and WALES PLACE, KISSEL AVENUE between WALES PLACE and LINDEN STREET, KISSEL AVENUE between LINDEN STREET and WALNUT STREET",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10310"
+671310,Shooting Permit,09/10/2022 08:00:00 AM,09/10/2022 06:00:00 PM,09/02/2022 10:13:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","OAK POINT AVENUE between TIFFANY STREET and CASANOVA STREET, CASANOVA STREET between OAK POINT AVENUE and RANDALL AVENUE",Bronx,2,41,Television,Reality,United States of America,10474
+671299,Shooting Permit,09/08/2022 10:30:00 AM,09/09/2022 12:00:00 AM,09/02/2022 06:10:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between ASH STREET and DEAD END, MANHATTAN AVENUE between COMMERCIAL STREET and CLAY STREET, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between CLAY STREET and DUPONT STREET, MANHATTAN AVENUE between DUPONT STREET and EAGLE STREET, PAIDGE AVENUE between CLAY STREET and DEAD END, PROVOST STREET between PAIDGE AVENUE and GREEN STREET, 40 AVENUE between VERNON BOULEVARD and 12 STREET, 10 STREET between 40 AVENUE and 41 AVENUE, VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH, 41 AVENUE between VERNON BOULEVARD and 10 STREET, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+671296,Shooting Permit,09/09/2022 06:00:00 AM,09/09/2022 10:00:00 PM,09/02/2022 05:29:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+671295,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 10:00:00 PM,09/02/2022 05:26:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+671293,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 11:00:00 PM,09/02/2022 05:17:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST MARK'S AVENUE between CARLTON AVENUE and VANDERBILT AVENUE, FURMAN STREET between DOUGHTY STREET and JORALEMON STREET",Brooklyn,"2, 8","78, 84",Commercial,Commercial,United States of America,"11201, 11238"
+671288,Shooting Permit,09/14/2022 07:00:00 AM,09/14/2022 11:00:00 PM,09/02/2022 05:03:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BLEEKER STREET between BANK STREET and CHRISTOPHER STREET, PERRY STREET between HUDSON STREET and WEST 4 STREET, WEST 4 STREET between BANK STREET and CHARLES STREET, WEST 15 STREET between 7 AVENUE and 5 AVENUE, 5 AVENUE between EAST 15 STREET and EAST 14 STREET, 5 AVENUE between WEST 12 STREET and WEST 9 STREET, WEST 11 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"2, 4, 5","13, 6",Television,Episodic series,United States of America,"10003, 10011, 10014"
+671286,Shooting Permit,09/08/2022 07:30:00 AM,09/08/2022 09:00:00 PM,09/02/2022 04:41:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between MONTAGUE STREET and JORALEMON STREET, CADMAN PLAZA WEST between MONTAGUE STREET and PIERREPONT STREET, CLINTON STREET between MONTAGUE STREET and REMSEN STREET, CLINTON STREET between REMSEN STREET and JORALEMON STREET, COURT STREET between LIVINGSTON STREET and STATE STREET, COURT STREET between STATE STREET and ATLANTIC AVENUE, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, REMSEN STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+671277,Shooting Permit,09/08/2022 07:30:00 AM,09/08/2022 10:30:00 PM,09/02/2022 04:04:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLY ROAD, BEVERLY ROAD between STRATFORD ROAD and ARGYLE ROAD, BEVERLY ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, STRATFORD ROAD between ALBEMARLE ROAD and TURNER PLACE, STRATFORD ROAD between HINCKLEY PLACE and BEVERLY ROAD, WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, ARGYLE ROAD between ALBEMARLE ROAD and BEVERLY ROAD, CONEY ISLAND AVENUE between FRIEL PLACE and CHURCH AVENUE, CONEY ISLAND AVENUE between ALBEMARLE ROAD and HINCKLEY PLACE",Brooklyn,"12, 14","66, 70",Television,Cable-episodic,United States of America,11218
+671268,Shooting Permit,09/09/2022 12:00:00 PM,09/10/2022 03:00:00 AM,09/02/2022 03:51:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 STREET between GRAND AVENUE and 58 AVENUE, 58 AVENUE between 66 STREET and DEAD END, 58 AVENUE between 66 STREET and BROWN PLACE, GRAND AVENUE between 65 STREET and 66 STREET, GRAND AVENUE between 64 STREET and FLUSHING AVENUE, GRAND AVENUE between HAMILTON PLACE and 55 DRIVE, HAMILTON PLACE between 55 DRIVE and GRAND AVENUE, 66 STREET between PERRY AVENUE and HAMILTON PLACE",Queens,5,104,Television,Episodic series,United States of America,11378
+671264,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 10:00:00 PM,09/02/2022 03:42:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","SECOND AVENUE between EAST 15 STREET and EAST 17 STREET, EAST 15 STREET between SECOND AVENUE and RUTHERFORD PLACE, EAST 15 STREET between RUTHERFORD PLACE and THIRD AVENUE, EAST 17 STREET between RUTHERFORD PLACE and THIRD AVENUE, THIRD AVENUE between EAST 14 STREET and EAST 19 STREET, EAST 14 STREET between FIRST AVENUE and AVENUE C",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,"10003, 10009"
+671259,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 10:00:00 PM,09/02/2022 03:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+671258,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 05:00:00 PM,09/02/2022 03:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCY AVENUE between MONROE STREET and PUTNAM AVENUE, MADISON STREET between MARCY AVENUE and TOMPKINS AVENUE",Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+671254,Shooting Permit,09/08/2022 02:00:00 PM,09/09/2022 04:00:00 AM,09/02/2022 03:03:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BENNETT AVENUE between WEST 181 STREET and WEST 184 STREET, BENNETT AVENUE between WEST 181 STREET and WEST 184 STREET, COLONEL ROBERT MAGAW PLACE between WEST 181 STREET and WEST 183 STREET, WEST 181 STREET between PINEHURST AVENUE and FORT WASHINGTON AVENUE, WEST 181 STREET between FORT WASHINGTON AVENUE and COLONEL ROBERT MAGAW PLACE, WEST 181 STREET between COLONEL ROBERT MAGAW PLACE and BENNETT AVENUE, WEST 181 STREET between BENNETT AVENUE and BROADWAY, BROADWAY between WEST 182 STREET and WEST 181 STREET, WEST 181 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 181 STREET and WEST 180 STREET, BROADWAY between WEST 180 STREET and WEST 179 STREET, WEST 180 STREET between BROADWAY and WADSWORTH AVENUE, WEST 180 STREET between WADSWORTH AVENUE and SAINT NICHOLAS AVENUE",Manhattan,12,34,Television,Episodic series,United States of America,10033
+671249,Shooting Permit,09/07/2022 10:00:00 AM,09/08/2022 01:00:00 AM,09/02/2022 02:54:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 48 AVENUE and 47 AVENUE, 30 STREET between 48 AVENUE and 47 AVENUE, 30 PLACE between 48 AVENUE and HUNTERS POINT AVENUE, 30 PLACE between 48 AVENUE and HUNTERS POINT AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+671235,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 09:00:00 PM,09/02/2022 02:20:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 STREET between 35 AVENUE and 34 AVENUE, 34 STREET between 35 AVENUE and 36 AVENUE, 35 AVENUE between 34 STREET and 35 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+671222,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 09:00:00 PM,09/02/2022 01:39:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671219,Shooting Permit,09/08/2022 12:00:00 AM,09/08/2022 06:00:00 PM,09/02/2022 01:29:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON AVENUE between JOHN STREET and PLYMOUTH STREET, HUDSON AVENUE between WATER STREET and FRONT STREET, PLYMOUTH STREET between HUDSON AVENUE and LITTLE STREET, LITTLE STREET between PLYMOUTH STREET and EVANS STREET, EVANS STREET between LITTLE STREET and HUDSON AVENUE",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,11201
+671214,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 08:00:00 PM,09/02/2022 01:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between 11 STREET and 21 STREET, 21 STREET between JACKSON AVENUE and 46 AVENUE",Queens,2,108,Commercial,Promo,United States of America,11101
+671213,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 09:00:00 PM,09/02/2022 01:01:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST END AVENUE between EAST 83 STREET and EAST 87 STREET, GRACIE SQUARE between EAST END AVENUE and DEAD END, LEXINGTON AVENUE between EAST 74 STREET and EAST 78 STREET, LEXINGTON AVENUE between EAST 78 STREET and EAST 79 STREET, EAST 82 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 81 STREET and EAST 83 STREET, EAST 84 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 83 STREET and EAST 84 STREET, YORK AVENUE between EAST 84 STREET and EAST 85 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10028, 10075"
+671203,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 11:00:00 PM,09/02/2022 12:12:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671188,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 09:00:00 PM,09/02/2022 11:23:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CAMPUS ROAD and AVENUE I, GLENWOOD ROAD between BEDFORD AVENUE and EAST 26 STREET, EAST 26 STREET between GLENWOOD ROAD and CAMPUS ROAD, CAMPUS ROAD between EAST 26 STREET and EAST 27 STREET, EAST 27 STREET between GLENWOOD ROAD and CAMPUS ROAD, CAMPUS RD. between BEDFORD AVE. and E 26TH ST., CAMPUS RD between EAST 27 STREET and NOSTRAND AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11210
+671173,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 09:00:00 PM,09/02/2022 10:31:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","HORACE HARDING EXPRESSWAY between 156 STREET and PARSONS BOULEVARD, 157 STREET between HORACE HARDING EXPRESSWAY and 59 AVENUE, 59 AVENUE between 156 STREET and 157 STREET, BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and 157 STREET, 156 STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365, 11367"
+671171,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 09:00:00 PM,09/02/2022 10:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+671150,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 11:00:00 PM,09/02/2022 08:52:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671148,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 08:00:00 PM,09/02/2022 08:44:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","45 AVENUE between 11 STREET and 21 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 44 DRIVE between 11 STREET and 21 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+671145,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 07:00:00 PM,09/02/2022 08:39:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between PRINCE STREET and EAST HOUSTON STREET, BROADWAY between PRINCE STREET and SPRING STREET",Manhattan,2,"1, 5",WEB,Not Applicable,United States of America,10012
+671103,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 09:00:00 PM,09/01/2022 06:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCY AVENUE between PUTNAM AVENUE and HANCOCK STREET, JEFFERSON AVENUE between NOSTRAND AVENUE and MARCY AVENUE, HANCOCK STREET between MARCY AVENUE and NOSTRAND AVENUE, MARCY AVENUE between MACON STREET and FULTON STREET, FULTON STREET between MARCY AVENUE and TOMPKINS AVENUE, TOMPKINS AVENUE between MACON STREET and MACDONOUGH STREET, MACDONOUGH STREET between TOMPKINS AVENUE and THROOP AVENUE, MACON STREET between TOMPKINS AVENUE and THROOP AVENUE",Brooklyn,3,79,Television,Episodic series,United States of America,11216
+671102,Shooting Permit,09/14/2022 06:00:00 AM,09/14/2022 10:00:00 PM,09/01/2022 06:19:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 218 STREET between BROADWAY and INDIAN ROAD, INDIAN ROAD between WEST 215 STREET and WEST 218 STREET, SEAMAN AVENUE between ISHAM STREET and WEST 218 STREET, VERMILYEA AVENUE between WEST 204 STREET and ACADEMY STREET",Manhattan,12,34,Television,Episodic series,United States of America,10034
+671087,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 11:00:00 PM,09/01/2022 04:37:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671086,Shooting Permit,09/06/2022 07:00:00 AM,09/06/2022 09:00:00 PM,09/01/2022 04:30:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+671076,Shooting Permit,09/07/2022 08:00:00 AM,09/08/2022 01:00:00 AM,09/01/2022 04:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 41 STREET and 43 STREET, SKILLMAN AVENUE between 41 STREET and 42 STREET, SKILLMAN AVENUE between 35 STREET and 39 STREET, 41 STREET between SKILLMAN AVENUE and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and BARNETT AVENUE, 43 STREET between SKILLMAN AVENUE and 43 AVENUE, 42 STREET between SKILLMAN AVENUE and 43 AVENUE, 43 AVENUE between 41 STREET and 42 STREET, 43 AVENUE between 42 STREET and 43 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104"
+671071,Shooting Permit,09/07/2022 09:00:00 AM,09/07/2022 09:00:00 PM,09/01/2022 04:05:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+671070,Shooting Permit,09/07/2022 08:00:00 AM,09/07/2022 11:00:00 PM,09/01/2022 04:04:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA S between 12 STREET and 13 STREET, QUEENS PLAZA SOUTH between 13 STREET and 21 STREET, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 9 STREET and 10 STREET, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+671065,Shooting Permit,09/03/2022 08:00:00 AM,09/03/2022 09:00:00 PM,09/01/2022 03:46:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 30 STREET and 32 STREET, 3 AVENUE between 32 STREET and 30 STREET",Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+671060,Rigging Permit,09/07/2022 07:00:00 AM,09/07/2022 07:00:00 PM,09/01/2022 03:39:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",BENNETT AVENUE between WEST 181 STREET and WEST 184 STREET,Manhattan,12,34,Television,Episodic series,United States of America,10033
+671044,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 11:30:00 PM,09/01/2022 02:46:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 AVENUE between 43 STREET and 45 STREET, 43 STREET between 21 AVENUE and DITMARS BOULEVARD, 45 STREET between 21 AVENUE and 20 ROAD, 42 STREET between 21 AVENUE and 20 ROAD, 42 STREET between 21 AVENUE and DITMARS BOULEVARD, 45 STREET between 21 AVENUE and DITMARS BOULEVARD, 20 AVENUE between 45 STREET and 48 STREET, 47 STREET between 20 AVENUE and 19 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11105
+671009,Shooting Permit,09/08/2022 08:00:00 AM,09/08/2022 08:00:00 PM,09/01/2022 12:50:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE ST between MC GUINNESS BLVD and PROVOST ST,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+671005,Shooting Permit,09/06/2022 07:00:00 AM,09/06/2022 08:00:00 PM,09/01/2022 12:45:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CAMPUS ROAD between EAST 22 STREET and EAST 23 STREET, E 23rd St between CAMPUS ROAD and E 22nd St, E 23rd St between CAMPUS ROAD and E 22nd St, EAST 23 STREET between CAMPUS ROAD and GLENWOOD ROAD, CAMPUS ROAD between EAST 23 STREET and BEDFORD AVENUE, BEDFORD AVENUE between CAMPUS ROAD and AVENUE I, CAMPUS ROAD between BEDFORD AVENUE and EAST 26 STREET, EAST 26 STREET between GLENWOOD ROAD and CAMPUS ROAD, CAMPUS ROAD between EAST 26 STREET and AMERSFORT PLACE",Brooklyn,14,70,Television,Episodic series,United States of America,11210
+670994,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 06:00:00 PM,09/01/2022 12:23:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAXTER STREET between BAYARD STREET and HOGAN PLACE, BAYARD STREET between MULBERRY STREET and MOTT STREET, MOTT STREET between BAYARD STREET and MOSCO STREET, MOTT STREET between MOSCO STREET and WORTH STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, CENTRE STREET between HOGAN PLACE and WORTH STREET, LAFAYETTE STREET between LEONARD STREET and FRANKLIN STREET, LEONARD STREET between BROADWAY and BENSON PLACE, LEONARD STREET between CHURCH STREET and BROADWAY, BROADWAY between LEONARD STREET and FRANKLIN STREET, WALKER STREET between 6 AVENUE and LAFAYETTE STREET, 6 AVENUE between LISPENARD STREET and WHITE STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10007, 10013"
+670993,Shooting Permit,09/08/2022 02:00:00 PM,09/09/2022 02:00:00 AM,09/01/2022 12:23:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","107TH STREET between WEST END AVENUE and RIVERSIDE DRIVE, WEST 35 STREET between SEVENTH AVENUE and BROADWAY",Manhattan,"12, 5, 7, 8","14, 24, 34, 50, 52",Film,Feature,United States of America,"10001, 10025, 10034, 10463"
+670991,Shooting Permit,09/04/2022 06:00:00 AM,09/04/2022 07:00:00 PM,09/01/2022 12:07:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between HARRISON STREET and HUBERT STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, GREENWICH STREET between HUBERT STREET and BEACH STREET, GREENWICH STREET between BEACH STREET and NORTH MOORE STREET, GREENWICH STREET between FRANKLIN STREET and HARRISON STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, BEACH 125 ST between ROCKAWAY BEACH BOULEVARD and DEAD END, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, ROCKAWAY BEACH BLVD between BEACH 124 and BEACH 128",Manhattan,"1, 14","1, 100",Commercial,Commercial,United States of America,"10004, 10013, 10280, 11694"
+670978,Shooting Permit,09/15/2022 07:00:00 AM,09/15/2022 09:00:00 PM,09/01/2022 11:09:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 95 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10128
+670970,Shooting Permit,09/06/2022 07:00:00 AM,09/06/2022 10:00:00 PM,09/01/2022 10:28:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+670967,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 09:00:00 PM,09/01/2022 10:25:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 44 ROAD between 10 STREET and 11 STREET, 10 STREET between 44 ROAD and 44 AVENUE, 44 AVENUE between VERNON BOULEVARD and 9 STREET, 44 AVENUE between 9 STREET and 11 STREET, 11 STREET between 44 AVENUE and 44 DRIVE, 44 DRIVE between VERNON BOULEVARD and 10 STREET, 10 STREET between 44 DRIVE and 44 ROAD, 44 ROAD between 9 STREET and 10 STREET, 11 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+670957,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 09:00:00 PM,09/01/2022 09:55:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE SOUTH between MORTON STREET and BLEECKER STREET, WAVERLY PLACE between CHRISTOPHER STREET and MACDOUGAL STREET, 6 AVENUE between WEST 4 STREET and WAVERLY PLACE, WEST WASHINGTON PLACE between BARROW STREET and 6 AVENUE, 6 AVENUE between BLEEKER STREET and WEST 4 STREET",Manhattan,2,6,Film,Feature,United States of America,"10011, 10012, 10014"
+670955,DCAS Prep/Shoot/Wrap Permit,09/06/2022 04:00:00 PM,09/06/2022 09:00:00 PM,09/01/2022 09:47:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between WORTH STREET and PEARL STREET,Manhattan,1,5,Television,Episodic series,United States of America,10007
+670954,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 06:00:00 PM,09/01/2022 09:46:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10018
+670953,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 08:00:00 PM,09/01/2022 09:45:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10018
+670934,Shooting Permit,09/06/2022 09:30:00 AM,09/07/2022 01:00:00 AM,09/01/2022 01:56:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE, VANDERBILT AVENUE between TALBOT PLACE and TOMPKINS AVENUE",Staten Island,"1, 3","120, 123",Television,Episodic series,United States of America,"10304, 10309"
+670910,Shooting Permit,09/03/2022 08:00:00 AM,09/03/2022 04:00:00 PM,08/31/2022 08:41:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 AVENUE between WEST 51 STREET and WEST 52 STREET,Manhattan,4,18,Film,Feature,United States of America,10019
+670899,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 08:00:00 PM,08/31/2022 07:10:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 31 AVENUE and 30 ROAD, 30 ROAD between VERNON BOULEVARD and 12 STREET, VERNON BOULEVARD between 30 ROAD and WELLING CT, 8 STREET between 30 AVENUE and ASTORIA BOULEVARD, ASTORIA BOULEVARD between 8 STREET and DEAD END, 8 STREET between ASTORIA BOULEVARD and 27 AVENUE",Manhattan,"1, 8",114,Television,Episodic series,United States of America,"10044, 11102"
+670893,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 11:00:00 PM,08/31/2022 05:51:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+670891,Shooting Permit,09/08/2022 07:00:00 AM,09/08/2022 10:00:00 PM,08/31/2022 05:49:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+670886,Shooting Permit,09/05/2022 07:00:00 AM,09/05/2022 03:00:00 PM,08/31/2022 05:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",CANAL STREET between ELDRIDGE STREET and FORSYTH STREET,Manhattan,3,5,Film,Feature,United States of America,10002
+670863,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 09:00:00 PM,08/31/2022 04:05:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELDRIDGE STREET between DELANCY STREET and BROOME STREET, DELANCY STREET between FORSYTH STREET and ELDRIDGE STREET",Manhattan,3,5,Film,Feature,United States of America,10002
+670855,Shooting Permit,09/05/2022 04:00:00 AM,09/05/2022 10:00:00 PM,08/31/2022 03:41:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+670847,Shooting Permit,09/13/2022 07:00:00 AM,09/13/2022 09:00:00 PM,08/31/2022 03:12:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+670845,Shooting Permit,09/12/2022 07:00:00 AM,09/12/2022 09:00:00 PM,08/31/2022 03:05:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 92 STREET and EAST 93 STREET, PARK AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,8,19,Film,Feature,United States of America,10128
+670844,Shooting Permit,09/02/2022 11:00:00 AM,09/03/2022 04:00:00 AM,08/31/2022 02:57:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between UNION AVENUE and LORIMER STREET, LORIMER STREET between DEVOE STREET and AINSLIE STREET, DEVOE STREET between LORIMER STREET and UNION AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,11211
+670838,Shooting Permit,09/09/2022 06:00:00 AM,09/09/2022 06:00:00 PM,08/31/2022 02:40:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Documentary,Not Applicable,United Kingdom,"10019, 10106"
+670830,Shooting Permit,09/11/2022 08:00:00 AM,09/11/2022 06:00:00 PM,08/31/2022 02:28:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",PACIFIC STREET between HENRY STREET and CLINTON STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11201
+670831,Shooting Permit,09/15/2022 08:00:00 AM,09/15/2022 06:00:00 PM,08/31/2022 02:28:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",PACIFIC STREET between HENRY STREET and CLINTON STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11201
+670821,Shooting Permit,09/02/2022 10:30:00 AM,09/02/2022 10:00:00 PM,08/31/2022 02:12:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET, 32 PLACE between 47 AVENUE and QUEENS BOULEVARD, 47 AVENUE between VAN DAM STREET and 32 PLACE, 47 AVENUE between 32 PLACE and 33 STREET, VAN DAM STREET between 47 AVENUE and QUEENS BOULEVARD",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,"11101, 11106"
+670803,Theater Load in and Load Outs,09/07/2022 12:01:00 AM,09/10/2022 06:00:00 AM,08/31/2022 01:24:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between SURF AVENUE and DEAD END, WEST 22 STREET between SURF AVENUE and DEAD END",Brooklyn,13,60,Theater,Theater,United States of America,"11214, 11224"
+670790,Theater Load in and Load Outs,09/07/2022 08:00:00 AM,09/07/2022 06:00:00 PM,08/31/2022 12:25:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 53 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Theater,Theater,United States of America,10019
+670789,Theater Load in and Load Outs,09/13/2022 12:01:00 AM,09/13/2022 11:59:00 PM,08/31/2022 12:21:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+670788,Theater Load in and Load Outs,09/06/2022 08:00:00 AM,09/06/2022 06:00:00 PM,08/31/2022 12:20:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 53 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Theater,Theater,United States of America,10019
+670784,Shooting Permit,09/02/2022 06:00:00 AM,09/02/2022 11:00:00 PM,08/31/2022 12:00:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670767,Theater Load in and Load Outs,09/24/2022 12:01:00 AM,09/24/2022 11:59:00 PM,08/31/2022 11:32:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+670762,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 08:00:00 PM,08/31/2022 11:16:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+670761,Shooting Permit,09/05/2022 07:00:00 AM,09/05/2022 07:00:00 PM,08/31/2022 11:06:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between PROSPECT STREET and YORK STREET, RIVER STREET between NORTH 1 STREET and GRAND STREET",Manhattan,"1, 2, 3","1, 5, 84, 90",Commercial,Commercial,United States of America,"10002, 10038, 11201, 11249"
+670753,Shooting Permit,09/04/2022 07:00:00 AM,09/04/2022 06:00:00 PM,08/31/2022 10:42:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 39 STREET between 1 AVENUE and 2 AVENUE,Manhattan,6,17,Commercial,Commercial,United States of America,"10016, 10017, 10022"
+670751,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 11:00:00 PM,08/31/2022 10:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670743,Shooting Permit,09/02/2022 06:00:00 AM,09/02/2022 11:00:00 PM,08/31/2022 10:13:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670728,Shooting Permit,09/04/2022 03:00:00 AM,09/04/2022 01:00:00 PM,08/31/2022 09:35:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+670727,Shooting Permit,09/02/2022 07:00:00 AM,09/02/2022 07:00:00 PM,08/31/2022 09:35:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADELPHI STREET between DEKALB AVENUE and LAFAYETTE AVENUE, CARLTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Commercial,Promo,United States of America,11205
+670726,Shooting Permit,09/03/2022 03:00:00 AM,09/03/2022 01:00:00 PM,08/31/2022 09:30:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+670723,Shooting Permit,09/08/2022 07:00:00 AM,09/09/2022 07:00:00 PM,08/31/2022 09:27:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 2 AVENUE and 1 AVENUE,Manhattan,3,"79, 9",Still Photography,Not Applicable,United States of America,"10003, 11205"
+670724,Shooting Permit,09/09/2022 07:00:00 AM,09/09/2022 07:00:00 PM,08/31/2022 09:27:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE,Brooklyn,4,83,Still Photography,Not Applicable,United States of America,11206
+670714,Shooting Permit,09/02/2022 07:00:00 AM,09/02/2022 11:00:00 PM,08/31/2022 08:36:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+670693,Shooting Permit,09/02/2022 10:00:00 AM,09/02/2022 11:59:00 PM,08/30/2022 10:34:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+670652,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 09:00:00 PM,08/30/2022 05:52:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670651,Shooting Permit,09/06/2022 07:00:00 AM,09/06/2022 09:00:00 PM,08/30/2022 05:50:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670645,Theater Load in and Load Outs,09/08/2022 12:01:00 AM,09/08/2022 11:59:00 PM,08/30/2022 05:30:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+670627,Shooting Permit,09/02/2022 07:00:00 AM,09/02/2022 09:00:00 PM,08/30/2022 04:37:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 1 STREET between BOWERY and 2 AVENUE, BOWERY between EAST 1 STREET and EAST HOUSTON STREET, EAST 1 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 3 STREET and EAST 2 STREET, 2 AVENUE between EAST 2 STREET and EAST 1 STREET, EAST 2 STREET between 2 AVENUE and 1 AVENUE, EAST 10 STREET between 2 AVENUE and 1 AVENUE, EAST 9 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 10 STREET and EAST 9 STREET, EAST 10 STREET between 1 AVENUE and AVENUE A, EAST 9 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 10 STREET and EAST 7 STREET",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10009, 10012"
+670597,Shooting Permit,09/02/2022 12:00:00 PM,09/06/2022 02:00:00 PM,08/30/2022 03:47:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, VARET STREET between WHITE STREET and BUSHWICK AVENUE, WHITE STREET between MOORE STREET and VARET STREET, MOORE STREET between WHITE STREET and BUSHWICK AVENUE, MOORE STREET between WHITE STREET and BOGART STREET, COOK STREET between BUSHWICK AVENUE and WHITE STREET, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11206, 11222"
+670594,Shooting Permit,09/01/2022 10:00:00 AM,09/02/2022 01:00:00 AM,08/30/2022 03:34:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 22 STREET and WEST 23 STREET, 8 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 8 AVENUE and 9 AVENUE, WEST 33 STREET between 6 AVENUE and 7 AVENUE, WEST 32 STREET between 6 AVENUE and 7 AVENUE, WEST 31 STREET between 6 AVENUE and 7 AVENUE, BROADWAY between WEST 31 STREET and WEST 32 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","10, 14",Television,Episodic series,United States of America,"10001, 10011"
+670573,Theater Load in and Load Outs,09/16/2022 06:00:00 AM,09/29/2022 11:59:00 PM,08/30/2022 02:48:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 85 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,"64, 7","20, 22",Theater,Theater,United States of America,10024
+670571,Shooting Permit,09/04/2022 07:00:00 AM,09/04/2022 07:00:00 PM,08/30/2022 02:41:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between PRESIDENT STREET and CARROLL STREET, CARROLL STREET between CLINTON STREET and COURT STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+670570,Theater Load in and Load Outs,09/12/2022 12:01:00 AM,09/12/2022 11:59:00 PM,08/30/2022 02:33:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+670569,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 09:00:00 PM,08/30/2022 02:33:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",CODY AVENUE between CYPRESS AVENUE and WYCKOFF AVENUE,Queens,5,104,Commercial,Commercial,United States of America,11385
+670568,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 07:00:00 PM,08/30/2022 02:32:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 75 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Commercial,Commercial,United States of America,10023
+670563,Shooting Permit,09/06/2022 07:00:00 AM,09/06/2022 09:00:00 PM,08/30/2022 01:57:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+670562,Shooting Permit,09/04/2022 06:00:00 AM,09/04/2022 09:00:00 PM,08/30/2022 01:54:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",CODY AVENUE between CYPRESS AVENUE and WYCKOFF AVENUE,Queens,5,104,Commercial,Commercial,United States of America,11385
+670561,Shooting Permit,09/03/2022 06:00:00 AM,09/03/2022 09:00:00 PM,08/30/2022 01:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",CODY AVENUE between CYPRESS AVENUE and WYCKOFF AVENUE,Queens,5,104,Commercial,Commercial,United States of America,11385
+670557,Shooting Permit,09/01/2022 06:00:00 AM,09/01/2022 09:00:00 PM,08/30/2022 01:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 16 STREET between NEWKIRK AVENUE and DITMAS AVENUE,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+670552,Shooting Permit,09/02/2022 06:00:00 AM,09/02/2022 09:00:00 PM,08/30/2022 01:35:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between NASSAU AVENUE and NORMAN AVENUE, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+670548,Theater Load in and Load Outs,09/09/2022 12:01:00 AM,09/09/2022 11:59:00 PM,08/30/2022 01:18:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+670547,Shooting Permit,09/02/2022 06:00:00 AM,09/02/2022 09:00:00 PM,08/30/2022 01:16:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",CODY AVENUE between CYPRESS AVENUE and WYCKOFF AVENUE,Queens,5,104,Commercial,Commercial,United States of America,11385
+670541,Shooting Permit,09/01/2022 06:00:00 AM,09/01/2022 11:59:00 PM,08/30/2022 01:07:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, 36 AVENUE between 12 STREET and 21 STREET, 35 AVENUE between 12 STREET and 21 STREET, FULTON STREET between FRANKLIN AVENUE and CLASSON AVENUE, CLASSON AVENUE between GATES AVENUE and LEXINGTON AVENUE",Manhattan,"1, 2, 3, 8","114, 79, 88",Film,Feature,United States of America,"10044, 11106, 11238"
+670535,Shooting Permit,09/01/2022 10:00:00 AM,09/01/2022 11:59:00 PM,08/30/2022 12:52:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 54 STREET and WEST 59 STREET, CANAL STREET between WASHINGTON STREET and RENWICK STREET, SPRING STREET between RENWICK STREET and WASHINGTON STREET, SPRING STREET between WASHINGTON STREET and WEST STREET, GREENWICH STREET between SPRING STREET and VANDAM STREET, GREENWICH STREET between SPRING STREET and CANAL STREET, WASHINGTON STREET between CANAL STREET and SPRING STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET",Manhattan,"1, 2, 5","1, 18",Television,Cable-episodic,United States of America,"10013, 10014, 10019, 10106"
+670530,Shooting Permit,09/07/2022 07:00:00 AM,09/07/2022 10:00:00 PM,08/30/2022 12:33:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+670528,Shooting Permit,09/02/2022 10:00:00 AM,09/03/2022 01:00:00 AM,08/30/2022 12:31:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+670523,Theater Load in and Load Outs,09/29/2022 06:00:00 AM,10/09/2022 01:00:00 PM,08/30/2022 12:25:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670522,Theater Load in and Load Outs,09/24/2022 06:00:00 AM,09/25/2022 01:00:00 PM,08/30/2022 12:25:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670520,Theater Load in and Load Outs,09/23/2022 06:00:00 AM,09/24/2022 05:30:00 AM,08/30/2022 12:24:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670518,Theater Load in and Load Outs,09/22/2022 06:00:00 AM,09/23/2022 05:30:00 AM,08/30/2022 12:23:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670517,Theater Load in and Load Outs,09/15/2022 06:00:00 AM,09/17/2022 01:00:00 PM,08/30/2022 12:23:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670516,Theater Load in and Load Outs,09/12/2022 06:00:00 AM,09/13/2022 01:00:00 PM,08/30/2022 12:22:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670515,Theater Load in and Load Outs,09/10/2022 06:00:00 AM,09/11/2022 07:00:00 AM,08/30/2022 12:21:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670513,Theater Load in and Load Outs,09/09/2022 06:00:00 AM,09/10/2022 05:30:00 PM,08/30/2022 12:21:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670512,Theater Load in and Load Outs,09/08/2022 06:00:00 AM,09/09/2022 05:30:00 AM,08/30/2022 12:20:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670510,Theater Load in and Load Outs,09/03/2022 06:00:00 AM,09/04/2022 01:00:00 PM,08/30/2022 12:20:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+670495,Shooting Permit,09/14/2022 05:00:00 AM,09/14/2022 11:59:00 PM,08/30/2022 11:48:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 54 STREET and EAST 55 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10022"
+670492,Theater Load in and Load Outs,09/18/2022 07:00:00 AM,09/18/2022 11:00:00 PM,08/30/2022 11:28:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670486,Shooting Permit,09/02/2022 08:00:00 AM,09/02/2022 11:00:00 PM,08/30/2022 10:54:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+670484,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 11:00:00 PM,08/30/2022 10:50:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 81 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 80 STREET and EAST 83 STREET, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 79 STREET and EAST 80 STREET, EAST 82 STREET between MADISON AVENUE and PARK AVENUE, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 81 STREET and EAST 82 STREET, MADISON AVENUE between EAST 81 STREET and EAST 82 STREET, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, 35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Manhattan,"1, 64, 8","114, 19, 22",Television,Cable-episodic,United States of America,"10028, 10075, 11106"
+670472,Shooting Permit,09/02/2022 05:00:00 PM,09/03/2022 07:00:00 AM,08/30/2022 09:41:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+670471,Shooting Permit,09/02/2022 09:00:00 AM,09/02/2022 11:00:00 PM,08/30/2022 09:39:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+670470,Shooting Permit,09/01/2022 09:00:00 AM,09/01/2022 11:00:00 PM,08/30/2022 09:35:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+670465,Shooting Permit,09/02/2022 07:00:00 AM,09/02/2022 09:00:00 PM,08/30/2022 09:05:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between DAHILL ROAD and EAST 3 STREET, MCDONALD AVENUE between AVENUE C and ALBEMARLE ROAD, ALBEMARLE ROAD between EAST 2 STREET and DAHILL ROAD, MCDONALD AVENUE between CATON AVENUE and ALBEMARLE ROAD, DAHILL ROAD between CHURCH AVENUE and ALBEMARLE ROAD, EAST 7 STREET between CORTELYOU ROAD and DITMAS AVENUE",Brooklyn,12,66,Film,Feature,United States of America,11218
+670464,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 11:00:00 PM,08/30/2022 08:51:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+670462,Shooting Permit,09/03/2022 07:00:00 AM,09/03/2022 07:00:00 PM,08/30/2022 07:59:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",PEARL STREET between BROAD STREET and HANOVER SQUARE,Manhattan,1,1,Commercial,Commercial,United States of America,"10004, 10005, 10041"
+670456,Shooting Permit,09/01/2022 08:00:00 AM,09/01/2022 11:00:00 PM,08/30/2022 12:46:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MORRIS AVENUE between EAST 167 STREET and EAST 168 STREET, EAST 167 STREET between MORRIS AVENUE and COLLEGE AVENUE, COLLEGE AVENUE between EAST 166 STREET and EAST 167 STREET, EAST 167 STREET between COLLEGE AVENUE and FINDLAY AVENUE, EAST 167 STREET between FINDLAY AVENUE and TELLER AVENUE, WEBSTER AVENUE between EAST 168 STREET and EAST 169 STREET, WEBSTER AVENUE between EAST 167 STREET and EAST 168 STREET, EAST 168 STREET between WEBSTER AVENUE and PARK AVENUE, BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,"2, 3, 4","41, 42, 44",Television,Episodic series,United States of America,"10456, 10474"
+670452,Shooting Permit,09/01/2022 09:00:00 AM,09/01/2022 11:00:00 PM,08/29/2022 10:28:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+670448,Shooting Permit,08/31/2022 08:00:00 AM,08/31/2022 06:00:00 PM,08/29/2022 09:47:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",LORIMER STREET between DRIGGS AVENUE and BAYARD STREET,Brooklyn,"1, 12","33, 94",WEB,Not Applicable,United States of America,"10033, 11211, 11222"
+670441,Shooting Permit,09/01/2022 03:00:00 PM,09/02/2022 06:00:00 AM,08/29/2022 07:45:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 9 AVENUE and 10 AVENUE, WEST 51 STREET between 9 AVENUE and 10 AVENUE, WEST 51 STREET between 9 AVENUE and 8 AVENUE, WEST 50 STREET between 9 AVENUE and 8 AVENUE, WEST 50 STREET between 9 AVENUE and 10 AVENUE, WEST 50 STREET between 10 AVENUE and 11 AVENUE, 9 AVENUE between WEST 51 STREET and WEST 50 STREET",Manhattan,4,18,Television,Episodic series,United States of America,10019
+670439,Shooting Permit,08/31/2022 08:00:00 AM,08/31/2022 10:00:00 PM,08/29/2022 07:36:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, NORTH LOOP ROAD between WEST LOOP ROAD and EAST LOOP ROAD, EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD",Manhattan,8,114,Film,Feature,United States of America,10044
+670426,Shooting Permit,09/01/2022 02:00:00 PM,09/01/2022 11:30:00 PM,08/29/2022 06:15:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 50 STREET and WEST 51 STREET, WEST 50 STREET between 7 AVENUE and 8 AVENUE, BROADWAY between WEST 49 STREET and WEST 50 STREET, WEST 51 STREET between BROADWAY and 7 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 53 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10019, 10022, 10152, 10171"
+670422,Theater Load in and Load Outs,09/01/2022 07:00:00 AM,09/01/2022 07:00:00 PM,08/29/2022 05:44:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670418,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 11:00:00 PM,08/29/2022 05:14:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670379,Theater Load in and Load Outs,09/09/2022 12:01:00 AM,09/10/2022 06:00:00 AM,08/29/2022 03:30:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+670375,Theater Load in and Load Outs,09/08/2022 12:01:00 AM,09/08/2022 11:59:00 PM,08/29/2022 03:03:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+670371,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 11:59:00 PM,08/29/2022 02:52:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+670366,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 07:00:00 PM,08/29/2022 02:43:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEKALB AVENUE between FLATBUSH AVENUE EXTENSION and BOND STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+670354,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 07:00:00 PM,08/29/2022 01:51:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Television,Talk Show,United States of America,10023
+670346,Shooting Permit,09/07/2022 06:00:00 AM,09/07/2022 10:00:00 PM,08/29/2022 01:12:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+670345,Shooting Permit,09/06/2022 06:00:00 AM,09/06/2022 10:00:00 PM,08/29/2022 01:09:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+670331,Shooting Permit,09/01/2022 06:00:00 AM,09/01/2022 08:00:00 PM,08/29/2022 12:35:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+670329,Theater Load in and Load Outs,09/10/2022 12:01:00 AM,09/11/2022 06:00:00 AM,08/29/2022 12:34:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+670328,Shooting Permit,09/11/2022 07:00:00 AM,09/11/2022 06:00:00 PM,08/29/2022 12:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Still Photography,Not Applicable,United States of America,"10019, 10020, 10111"
+670324,Theater Load in and Load Outs,09/09/2022 12:01:00 AM,09/09/2022 11:59:00 PM,08/29/2022 12:18:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+670322,Theater Load in and Load Outs,09/05/2022 08:00:00 AM,09/05/2022 06:00:00 PM,08/29/2022 12:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 53 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Theater,Theater,United States of America,10019
+670321,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 07:00:00 PM,08/29/2022 12:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCY AVENUE between PULASKI STREET and DEKALB AVENUE, PULASKI STREET between MARCY AVENUE and TOMPKINS AVENUE",Brooklyn,3,"79, 81",Commercial,Promo,United States of America,"11206, 11216, 11221"
+670316,Theater Load in and Load Outs,09/04/2022 12:01:00 AM,09/05/2022 06:00:00 AM,08/29/2022 12:01:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+670312,Shooting Permit,08/30/2022 01:00:00 PM,08/30/2022 11:30:00 PM,08/29/2022 11:51:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 9 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 43 STREET between 9 AVENUE and 10 AVENUE, WEST 43 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 43 STREET and WEST 44 STREET, WEST 44 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,"10, 14, 18",Television,Episodic series,United States of America,10036
+670298,Theater Load in and Load Outs,09/02/2022 12:01:00 AM,09/03/2022 06:00:00 AM,08/29/2022 10:47:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+670286,Shooting Permit,08/31/2022 09:00:00 AM,08/31/2022 11:59:00 PM,08/29/2022 10:10:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+670258,Shooting Permit,08/31/2022 08:30:00 AM,08/31/2022 10:30:00 PM,08/28/2022 07:28:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 135TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 135 STREET and WEST 136 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 136 STREET and WEST 137 STREET, WEST 136 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,"28, 32",Television,Episodic series,United States of America,"10027, 10030"
+670255,Theater Load in and Load Outs,09/10/2022 12:01:00 AM,09/11/2022 06:00:00 AM,08/28/2022 06:39:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+670253,Theater Load in and Load Outs,09/08/2022 12:01:00 AM,09/09/2022 06:00:00 AM,08/28/2022 06:31:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+670252,Theater Load in and Load Outs,09/07/2022 12:01:00 AM,09/07/2022 11:59:00 PM,08/28/2022 06:21:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+670251,Theater Load in and Load Outs,09/02/2022 12:01:00 AM,09/03/2022 06:00:00 AM,08/28/2022 06:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+670170,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 08:00:00 PM,08/26/2022 10:03:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST FOURTH STREET and WASHINGTON PLACE, STANTON STREET between FORSYTH STREET and ELDRIDGE STREET",Manhattan,"2, 3","5, 6, 9",Commercial,Commercial,United States of America,"10002, 10003"
+670161,Shooting Permit,09/01/2022 10:00:00 AM,09/02/2022 01:00:00 AM,08/26/2022 07:00:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between WOOSTER STREET and WEST BROADWAY, WOOSTER STREET between BROOME STREET and GRAND STREET, WOOSTER STREET between SPRING STREET and BROOME STREET, SPRING STREET between WOOSTER STREET and GREENE STREET, WOOSTER STREET between PRINCE STREET and SPRING STREET, BROOME STREET between WEST BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+670128,Shooting Permit,09/02/2022 12:30:00 PM,09/03/2022 02:00:00 AM,08/26/2022 03:55:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MT MORRIS PARK WEST between WEST 124 STREET and WEST 120 STREET, WEST 122 STREET between MT MORRIS PARK WEST and MALCOLM X BOULEVARD, WEST 120 STREET between MOUNT MORRIS PARK WEST and 5 AVENUE, ST NICHOLAS AVENUE between WEST 138 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 137 STREET and WEST 141 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 11, 9","25, 26, 28, 30, 32",Television,Cable-episodic,United States of America,"10027, 10030"
+670122,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 10:00:00 PM,08/26/2022 03:38:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORMAN AVENUE between JEWEL STREET and HUMBOLDT STREET,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+670086,Shooting Permit,09/01/2022 01:00:00 PM,09/02/2022 05:00:00 AM,08/26/2022 02:07:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 56 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 55 STREET and EAST 57 STREET, EAST 55 STREET between PARK AVENUE and MADISON AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 55 STREET between 5 AVENUE and MADISON AVENUE, EAST 54 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 54 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022"
+670074,Shooting Permit,08/31/2022 09:00:00 AM,08/31/2022 09:00:00 PM,08/26/2022 01:41:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",DIKEMAN STREET between CONOVER STREET and FERRIS STREET,Brooklyn,6,76,Music Video,Not Applicable,United States of America,11231
+670067,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 12:00:00 PM,08/26/2022 01:10:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between NEWEL STREET and PROVOST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+670061,Theater Load in and Load Outs,09/11/2022 08:00:00 AM,09/11/2022 11:59:00 PM,08/26/2022 12:59:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670060,Theater Load in and Load Outs,09/10/2022 08:00:00 AM,09/10/2022 11:59:00 PM,08/26/2022 12:59:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670062,Theater Load in and Load Outs,09/13/2022 09:00:00 AM,09/13/2022 06:00:00 PM,08/26/2022 12:59:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670059,Theater Load in and Load Outs,09/09/2022 08:00:00 AM,09/09/2022 11:59:00 PM,08/26/2022 12:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670058,Theater Load in and Load Outs,09/08/2022 08:00:00 AM,09/08/2022 11:59:00 PM,08/26/2022 12:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670057,Theater Load in and Load Outs,09/07/2022 08:00:00 AM,09/07/2022 11:59:00 PM,08/26/2022 12:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+670056,Theater Load in and Load Outs,09/06/2022 08:00:00 AM,09/06/2022 11:59:00 PM,08/26/2022 12:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+669999,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 06:00:00 PM,08/26/2022 11:04:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+669998,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 10:00:00 PM,08/26/2022 11:03:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+669996,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 10:00:00 PM,08/26/2022 11:01:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+669990,Shooting Permit,08/30/2022 08:00:00 AM,08/30/2022 11:30:00 PM,08/26/2022 10:43:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCIAL STREET between BOX STREET and MANHATTAN AVENUE, COMMERCIAL STREET between CLAY STREET and BOX STREET, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and DEAD END, MANHATTAN AVENUE between COMMERCIAL STREET and CLAY STREET, MANHATTAN AVENUE between CLAY STREET and DUPONT STREET, MANHATTAN AVENUE between DUPONT STREET and EAGLE STREET, MANHATTAN AVENUE between EAGLE STREET and FREEMAN STREET, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, PAIDGE AVENUE between CLAY STREET and MCGUINNESS BOULEVARD, PAIDGE AVENUE between CLAY STREET and DEAD END, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669983,Shooting Permit,09/01/2022 08:00:00 AM,09/01/2022 11:00:00 PM,08/26/2022 10:08:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between EAST 16 STREET and EAST 17 STREET, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET, DITMAS AVENUE between EAST 19 STREET and OCEAN AVENUE, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, OCEAN AVENUE between NEWKIRK AVENUE and FOSTER AVENUE, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD",Brooklyn,14,70,Television,Cable-episodic,United States of America,"11226, 11230"
+669964,Shooting Permit,08/29/2022 11:00:00 AM,08/29/2022 10:00:00 PM,08/26/2022 09:35:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, WEST 119 STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, RIVERSIDE DRIVE between WEST 116 STREET and WEST 115 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,"10025, 10027"
+669955,Shooting Permit,08/31/2022 04:00:00 AM,08/31/2022 10:00:00 AM,08/26/2022 09:11:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+669954,Shooting Permit,09/07/2022 12:30:00 AM,09/07/2022 07:00:00 PM,08/26/2022 08:55:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between WYCKOFF STREET and BERGEN STREET,Brooklyn,"2, 6","76, 78, 84",Still Photography,Not Applicable,United States of America,11217
+669949,Shooting Permit,09/09/2022 12:00:00 PM,09/09/2022 11:59:00 PM,08/26/2022 08:40:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 67 STREET and EAST 68 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+669948,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 10:00:00 PM,08/26/2022 08:34:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+669936,Shooting Permit,08/30/2022 08:00:00 AM,08/30/2022 10:00:00 PM,08/25/2022 10:46:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+669928,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 10:00:00 PM,08/25/2022 09:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","HESTER STREET between BAXTER STREET and MULBERRY STREET, BAXTER STREET between GRAND STREET and HESTER STREET",Manhattan,2,5,Commercial,PSA,United States of America,10013
+669927,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 09:00:00 PM,08/25/2022 09:05:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between EASTERN PARKWAY and EMPIRE BOULEVARD, LINDEN BOULEVARD between FLATBUSH AVENUE and BEDFORD AVENUE, CATON AVENUE between FLATBUSH AVENUE and LINDEN BOULEVARD",Brooklyn,"14, 17, 55, 9","67, 70, 71, 78",Television,Episodic series,United States of America,"11225, 11226"
+669909,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 09:00:00 PM,08/25/2022 06:08:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between EAST 16 STREET and EAST 17 STREET, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET, DITMAS AVENUE between EAST 19 STREET and OCEAN AVENUE, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, OCEAN AVENUE between NEWKIRK AVENUE and FOSTER AVENUE, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD",Brooklyn,14,70,Television,Cable-episodic,United States of America,"11226, 11230"
+669898,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 11:00:00 PM,08/25/2022 05:28:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","JACKSON AVENUE between 46 ROAD and 46 AVENUE, 46 ROAD between 21 STREET and JACKSON AVENUE, 21 STREET between 46 AVENUE and 46 ROAD, 46 ROAD between 21 STREET and 11 STREET, 21 STREET between JACKSON AVENUE and 46 ROAD, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+669887,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 07:30:00 PM,08/25/2022 04:50:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 125 STREET between WEST 129 STREET and BROADWAY,Manhattan,"10, 9","26, 30, 32",WEB,Not Applicable,United States of America,10027
+669886,Shooting Permit,09/02/2022 11:00:00 AM,09/03/2022 02:00:00 AM,08/25/2022 04:50:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+669885,Shooting Permit,08/31/2022 11:00:00 AM,09/01/2022 04:00:00 AM,08/25/2022 04:50:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DAVIS AVENUE between LIVINGSTON COURT and WALNUT STREET, KISSEL AVENUE between SNUG HARBOR ROAD and HENDERSON AVENUE, SNUG HARBOR ROAD between KISSEL AVENUE and RICHMOND TERRACE, TYSEN STREET between RICHMOND TERRACE and FILLMORE STREET, FILLMORE STREET between TYSEN STREET and CHAPEL ROAD",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10310"
+669883,Shooting Permit,08/30/2022 11:00:00 AM,08/31/2022 04:00:00 AM,08/25/2022 04:48:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, GEORGE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, HALSEY STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between GEORGE STREET and STEPHEN STREET, CENTRE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, CYPRESS AVENUE between STEPHEN STREET and GEORGE STREET, CYPRESS AVENUE between GEORGE STREET and CENTRE STREET, WEIRFIELD STREET between WYCKOFF AVENUE and CYPRESS AVENUE, CYPRESS AVENUE between CENTRE STREET and WEIRFIELD STREET, CYPRESS AVENUE between WEIRFIELD STREET and HANCOCK STREET, CYPRESS AVENUE between HANCOCK STREET and CORNELIA STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+669880,Shooting Permit,08/29/2022 06:00:00 AM,08/29/2022 08:30:00 PM,08/25/2022 04:37:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 5 AVENUE and 6 AVENUE, EAST 47 STREET between MADISON AVENUE and VANDERBILT AVENUE, VANDERBILT AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 46 STREET between MADISON AVENUE and VANDERBILT AVENUE, EAST 45 STREET between MADISON AVENUE and VANDERBILT AVENUE, PARK AVENUE between EAST 49 STREET and EAST 55 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10152"
+669855,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 11:00:00 PM,08/25/2022 03:07:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and SUTTON STREET, SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE, KINGSLAND AVENUE between NASSAU AVENUE and DRIGGS AVENUE, MONITOR STREET between GREENPOINT AVENUE and NASSAU AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669844,Shooting Permit,08/31/2022 06:00:00 PM,09/01/2022 01:00:00 AM,08/25/2022 02:24:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between BEACH AVENUE and ST LAWRENCE AVENUE, BEACH AVENUE between PATTERSON AVENUE and O'BRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, SOUNDVIEW AVE between RANDALL AVENUE and THIERIOT AVENUE, BRONX RIVER AVE between ROSEDALE AVENUE and DEAD END, ROSEDALE AVE between BRONX RIVER AVENUE and RANDALL AVENUE",Bronx,"11, 9","43, 49",Television,Cable-episodic,United States of America,"10460, 10473"
+669806,Shooting Permit,09/09/2022 04:00:00 PM,09/10/2022 01:30:00 AM,08/25/2022 11:52:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET SLIP between WATER STREET and CHERRY STREET, MARKET SLIP between SOUTH STREET and CHERRY STREET",Manhattan,3,"5, 7",Film,Feature,United States of America,"10002, 10038"
+669795,Shooting Permit,09/02/2022 09:00:00 AM,09/02/2022 11:00:00 PM,08/25/2022 11:35:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669794,Shooting Permit,09/01/2022 10:00:00 AM,09/01/2022 11:59:00 PM,08/25/2022 11:31:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669785,Shooting Permit,08/30/2022 05:00:00 PM,08/31/2022 03:00:00 AM,08/25/2022 10:58:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between ST MARKS PLACE and EAST 6 STREET, ST MARK'S PLACE between 2 AVENUE and 1 AVENUE, LEXINGTON AVENUE between EAST 74 STREET and EAST 77 STREET, EAST 75 STREET between LEXINGTON AVENUE and 3 AVENUE, 6 AVENUE between MINETTA LANE and BLEECKER STREET, BLEECKER STREET between MINETTA STREET and MACDOUGAL STREET, MINETTA LANE between 6 AVENUE and MACDOUGAL STREET, MACDOUGAL STREET between MINETTA LANE and BLEECKER STREET",Manhattan,"2, 3, 8","19, 6, 9",Television,Episodic series,United States of America,"10003, 10012, 10014, 10021, 10075"
+669770,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 10:00:00 PM,08/25/2022 10:23:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and BOX STREET, MANHATTAN AVENUE between ASH STREET and DEAD END, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, COMMERCIAL STREET between CLAY STREET and BOX STREET, MANHATTAN AVENUE between CLAY STREET and DUPONT STREET, MANHATTAN AVENUE between DUPONT STREET and EAGLE STREET, MANHATTAN AVENUE between EAGLE STREET and FREEMAN STREET, PAIDGE AVENUE between CLAY STREET and MCGUINNESS BOULEVARD, PAIDGE AVENUE between CLAY STREET and DEAD END, PROVOST STREET between PAIDGE AVENUE and GREEN STREET, MANHATTAN AVENUE between BOX STREET and CLAY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669753,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 09:00:00 PM,08/25/2022 09:28:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669745,Shooting Permit,08/29/2022 06:00:00 AM,08/29/2022 10:00:00 PM,08/25/2022 08:58:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST STREET and GREENWICH STREET, BARCLAY STREET between WEST STREET and WASHINGTON STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY, MAIDEN LANE between WILLIAM STREET and GOLD STREET, LIBERTY STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, JOHN STREET between FRONT STREET and PEARL STREET, MAIDEN LANE between SOUTH STREET and PEARL STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10006, 10007, 10038, 10045"
+669733,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 09:00:00 PM,08/25/2022 12:18:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+669718,Shooting Permit,09/07/2022 02:00:00 PM,09/07/2022 11:30:00 PM,08/24/2022 08:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between BROADWAY and 7 AVENUE,Manhattan,5,18,Television,Reality,United States of America,10036
+669710,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 09:00:00 PM,08/24/2022 07:13:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 16 STREET and EAST 17 STREET, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET, DITMAS AVENUE between EAST 19 STREET and OCEAN AVENUE, EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, OCEAN AVENUE between NEWKIRK AVENUE and FOSTER AVENUE, OCEAN AVENUE between FOSTER AVENUE and GLENWOOD ROAD",Brooklyn,14,70,Television,Cable-episodic,United States of America,"11226, 11230"
+669685,Shooting Permit,08/29/2022 11:00:00 AM,08/29/2022 04:00:00 PM,08/24/2022 04:43:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",CUMBERLAND STREET between ATLANTIC AVENUE and FULTON STREET,Brooklyn,"14, 2","70, 88",Television,Cable-episodic,United States of America,"11226, 11238"
+669673,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 10:00:00 PM,08/24/2022 04:17:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 42 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 42 STREET and EAST 41 STREET, LEXINGTON AVENUE between EAST 41 STREET and EAST 40 STREET, LEXINGTON AVENUE between EAST 40 STREET and EAST 39 STREET, EAST 40 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17",Film,Feature,United States of America,"10016, 10017"
+669672,Shooting Permit,08/29/2022 05:00:00 AM,08/29/2022 10:00:00 PM,08/24/2022 04:17:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 42 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 42 STREET and EAST 41 STREET, LEXINGTON AVENUE between EAST 41 STREET and EAST 40 STREET, LEXINGTON AVENUE between EAST 40 STREET and EAST 39 STREET, EAST 40 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17",Film,Feature,United States of America,"10016, 10017"
+669659,Shooting Permit,08/29/2022 06:00:00 AM,08/29/2022 10:00:00 PM,08/24/2022 03:52:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 STREET between 46 ROAD and 47 AVENUE, 5 STREET between 46 ROAD and 46 AVENUE, 46 ROAD between VERNON BOULEVARD and 5 STREET, 5 STREET between 46 ROAD and CENTER BOULEVARD, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 45 ROAD between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+669649,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 11:00:00 PM,08/24/2022 03:33:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669639,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 10:00:00 PM,08/24/2022 03:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+669638,Shooting Permit,08/30/2022 10:00:00 AM,08/30/2022 11:00:00 PM,08/24/2022 03:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between AVENUE C and ASSER LEVY PLACE, EAST 23 STREET between 1 AVENUE and ASSER LEVY PLACE, EAST 23 STREET between 1 AVENUE and 2 AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 122 STREET, LENOX AVENUE between WEST 116 STREET and WEST 118 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, EAST 120 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"10, 11, 6","13, 25, 28",Television,Cable-episodic,United States of America,"10010, 10026, 10027, 10035"
+669636,Shooting Permit,08/29/2022 09:00:00 AM,08/29/2022 09:00:00 PM,08/24/2022 03:01:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between PRINCE STREET and JERSEY STREET,Manhattan,2,5,Commercial,Commercial,United States of America,10012
+669635,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 10:00:00 PM,08/24/2022 02:58:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+669634,Shooting Permit,08/28/2022 06:00:00 AM,08/28/2022 08:00:00 PM,08/24/2022 02:58:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between WARREN STREET and MURRAY STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10007, 10048, 10282"
+669626,Theater Load in and Load Outs,09/23/2022 12:01:00 AM,09/24/2022 06:00:00 AM,08/24/2022 02:29:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+669625,Theater Load in and Load Outs,09/12/2022 12:01:00 AM,09/12/2022 11:59:00 PM,08/24/2022 02:19:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+669623,Shooting Permit,09/01/2022 07:00:00 AM,09/01/2022 09:00:00 PM,08/24/2022 02:06:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+669606,Shooting Permit,08/29/2022 06:00:00 AM,08/29/2022 09:00:00 PM,08/24/2022 01:49:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and RICHARDSON STREET, LORIMER STREET between RICHARDSON STREET and WITHERS STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, WITHERS ST. between UNION AVENUE and MEEKER AVENUE, UNION AVENUE between FROST STREET and JACKSON STREET, NORTH 1 STREET between BEDFORD AVENUE and BERRY STREET, GRAND STREET between BERRY STREET and BEDFORD AVENUE, GRAND STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11211, 11222, 11249"
+669596,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 08:00:00 PM,08/24/2022 01:21:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 AVENUE between 83 STREET and 84 STREET, 37 AVENUE between 84 STREET and 85 STREET, 85 STREET between 37 AVENUE and ROOSEVELT AVENUE, 35 AVENUE between 83 STREET and 85 STREET, 83 STREET between 35 AVENUE and 37 AVENUE, 83 STREET between 37 AVENUE and ROOSEVELT AVENUE, 84 STREET between 35 AVENUE and ROOSEVELT AVENUE, 37 AVENUE between 85 STREET and 86 STREET",Queens,3,115,Television,Cable-episodic,United States of America,11372
+669584,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 08:00:00 PM,08/24/2022 12:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","13 AVENUE between 139 STREET and 140 STREET, 138 STREET between 11 AVENUE and 14 AVENUE, 139 STREET between 13 AVENUE and 14 AVENUE, 140 STREET between 13 AVENUE and 14 AVENUE, 141 STREET between 11 AVENUE and 13 AVENUE, 15 AVENUE between 138 STREET and 143 STREET, 13 AVENUE between 138 STREET and 139 STREET",Queens,7,109,Television,Cable-episodic,United States of America,"11356, 11357"
+669583,Shooting Permit,08/28/2022 03:00:00 AM,08/28/2022 01:00:00 PM,08/24/2022 12:35:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+669582,Shooting Permit,08/28/2022 06:00:00 AM,08/28/2022 09:00:00 PM,08/24/2022 12:32:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 6 AVENUE and 5 AVENUE, 45 STREET between 6 AVENUE and VANDERBILT AVENUE, EAST 46 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10036"
+669578,Shooting Permit,08/27/2022 03:00:00 AM,08/27/2022 01:00:00 PM,08/24/2022 12:11:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+669551,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 07:00:00 PM,08/24/2022 10:46:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","HANOVER STREET between WALL STREET and EXCHANGE PLACE, PEARL STREET between WALL STREET and COENTIES SLIP, PEARL STREET between BROAD STREET and COENTIES SLIP, PEARL STREET between STATE STREET and WHITEHALL STREET, BRIDGE STREET between STATE STREET and BROAD STREET, BEAVER STREET between BROADWAY and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005"
+669542,Shooting Permit,09/06/2022 06:30:00 AM,09/06/2022 09:00:00 PM,08/24/2022 10:15:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCY STREET between FORSYTH STREET and ELDRIDGE STREET, ELDRIDGE STREET between DELANCY STREET and BROOME STREET",Manhattan,3,5,Film,Feature,United States of America,10002
+669541,Shooting Permit,08/30/2022 09:00:00 AM,08/30/2022 08:00:00 PM,08/24/2022 10:15:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 9 STREET and EAST 10 STREET, NORFOLK STREET between DELANCEY STREET and RIVINGTON STREET, 1 AVENUE between EAST 5 STREET and EAST 9 STREET",Manhattan,3,"7, 9",WEB,Not Applicable,United States of America,"10002, 10003, 10009"
+669534,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 09:00:00 PM,08/24/2022 09:48:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","41 STREET between 20 ROAD and 21 AVENUE, 41 STREET between 21 AVENUE and DITMARS BOULEVARD, STEINWAY STREET between 21 AVENUE and 20 AVENUE, 20 AVENUE between 45 STREET and 48 STREET, 47 STREET between 19 AVENUE and 20 AVENUE, 48 STREET between 19 AVENUE and 20 AVENUE, 20 ROAD between STEINWAY STREET and 41 STREET, ASTORIA BLVD SOUTH between STEINWAY STREET and 41 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11103, 11105"
+669533,Shooting Permit,08/29/2022 06:00:00 AM,08/29/2022 08:00:00 PM,08/24/2022 09:47:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between FT GREENE PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, DEKALB AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, DEKALB AVENUE between CUMBERLAND STREET and CARLTON AVENUE, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, MYRTLE AVENUE between ST EDWARD STREET and NORTH PORTLAND AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET",Brooklyn,2,88,Television,Cable-episodic,United States of America,"11201, 11205, 11217"
+669526,Shooting Permit,08/26/2022 07:00:00 AM,08/26/2022 11:00:00 PM,08/24/2022 08:48:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+669521,Shooting Permit,08/26/2022 12:00:00 AM,08/26/2022 07:00:00 PM,08/24/2022 07:23:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CANAL STREET between ELIZABETH STREET and MOTT STREET, ELIZABETH STREET between CANAL STREET and HESTER STREET",Manhattan,"1, 2, 3, 5","1, 18, 5",Commercial,Industrial/Corporate,United States of America,"10005, 10012, 10013, 10017"
+669496,Shooting Permit,08/31/2022 06:00:00 AM,08/31/2022 08:00:00 PM,08/23/2022 08:07:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+669495,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 08:00:00 PM,08/23/2022 08:03:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+669490,Shooting Permit,08/26/2022 10:30:00 AM,08/27/2022 12:30:00 AM,08/23/2022 07:14:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+669486,Shooting Permit,08/25/2022 07:00:00 AM,08/25/2022 07:00:00 PM,08/23/2022 06:22:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASTOR PLACE between BROADWAY and LAFAYETTE STREET,Manhattan,2,"6, 9",Commercial,Promo,United States of America,"10003, 10012"
+669485,Shooting Permit,08/26/2022 08:00:00 AM,08/27/2022 01:00:00 AM,08/23/2022 06:04:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+669467,Shooting Permit,08/26/2022 07:00:00 AM,08/26/2022 09:00:00 PM,08/23/2022 05:06:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Cable-episodic,United States of America,11101
+669465,Shooting Permit,08/26/2022 12:00:00 PM,08/27/2022 04:00:00 AM,08/23/2022 05:04:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVENUE between SPRING STREET and BROOME STREET, VARICK STREET between WATTS STREET and GRAND STREET, GRAND STREET between VARICK STREET and 6TH AVENUE, VARICK STREET between GRAND STREET and CANAL STREET, WEST BROADWAY between SPRING STREET and BROOME STREET, BROOME STREET between WEST BROADWAY and WOOSTER STREET, BROOME STREET between WOOSTER STREET and GREENE STREET, BROOME STREET between GREENE STREET and MERCER STREET, BROOME STREET between MERCER STREET and BROADWAY, SULLIVAN STREET between BROOME STREET and WATTS STREET, YORK STREET between ST JOHNS LANE and 6 AVENUE",Manhattan,"1, 2",1,Television,Episodic series,United States of America,"10012, 10013"
+669462,Shooting Permit,08/26/2022 04:00:00 AM,08/26/2022 09:00:00 PM,08/23/2022 05:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between ECKFORD STREET and MCGUINNESS BOULEVARD, MCGUINNESS BOULEVARD between GRAHAM AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669455,Shooting Permit,08/26/2022 07:00:00 AM,08/26/2022 11:30:00 PM,08/23/2022 04:39:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, FULTON STREET between FRANKLIN AVENUE and CLASSON AVENUE, CLASSON AVENUE between GATES AVENUE and LEXINGTON AVENUE",Brooklyn,"2, 3","79, 88",Film,Feature,United States of America,11238
+669418,Shooting Permit,08/29/2022 07:00:00 AM,08/29/2022 09:00:00 PM,08/23/2022 03:11:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, 88 STREET between COOPER AVENUE and DORAN AVENUE, DORAN AVENUE between 84 STREET and 88 STREET, 84 STREET between COOPER AVENUE and DORAN AVENUE, COOPER AVENUE between 84 STREET and METROPOLITAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+669417,Shooting Permit,08/26/2022 06:00:00 AM,08/27/2022 01:00:00 AM,08/23/2022 03:10:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between LORIMER STREET and GUERNSEY STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH HENRY STREET between DRIGGS AVENUE and ENGERT AVENUE, MONITOR STREET between DRIGGS AVENUE and ENGERT AVENUE, ENGERT AVENUE between MONITOR STREET and RUSSELL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+669416,Shooting Permit,08/26/2022 10:00:00 AM,08/26/2022 11:59:00 PM,08/23/2022 03:08:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 12 STREET and 21 STREET, NEWTOWN AVENUE between 31 STREET and 33 STREET, 30 AVENUE between 31 STREET and 33 STREET, 32 STREET between NEWTOWN AVENUE and 30 AVENUE, 32 STREET between 30 AVENUE and 31 AVENUE, 33 STREET between 30 AVENUE and 31 AVENUE, 30 AVENUE between 33 STREET and 34 STREET",Queens,1,114,Television,Episodic series,United States of America,"11102, 11103, 11106"
+669408,Shooting Permit,08/29/2022 09:00:00 AM,08/29/2022 11:59:00 PM,08/23/2022 02:50:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 124 STREET and 125 STREET, JAMAICA AVENUE between 123 STREET and 124 STREET, JAMAICA AVENUE between 125 STREET and 126 STREET, 124 STREET between JAMAICA AVENUE and 89 AVENUE, 89 AVENUE between 123 STREET and 125 STREET, 125 STREET between HILLSIDE AVENUE and JAMAICA AVENUE, CRESCENT STREET between DITMARS BOULEVARD and 21 AVENUE, 21 AVENUE between CRESCENT STREET and 27 STREET, 27 STREET between 20 AVENUE and 21 AVENUE, 27 STREET between 21 AVENUE and DITMARS BOULEVARD, 21 STREET between 21 AVENUE and 21 DRIVE, JAMAICA AVENUE between 131 STREET and METROPOLITAN AVENUE, 132 STREET between JAMAICA AVENUE and METROPOLITAN AVENUE",Queens,"1, 9","102, 114",Television,Cable-episodic,United States of America,"11105, 11418"
+669398,Shooting Permit,08/29/2022 08:30:00 AM,08/29/2022 10:30:00 PM,08/23/2022 02:23:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+669396,Shooting Permit,08/26/2022 04:00:00 PM,08/27/2022 06:00:00 AM,08/23/2022 02:16:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and BEARD STREET, CONOVER STREET between BEARD STREET and COFFEY STREET, BEARD STREET between VAN BRUNT STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, COFFEY STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between OTSEGO STREET and HICKS STREET, RICHARDS STREET between VERONA STREET and VISITATION PLACE",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+669318,Shooting Permit,08/25/2022 12:00:00 PM,08/26/2022 02:00:00 AM,08/23/2022 10:40:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+669314,Shooting Permit,08/25/2022 06:00:00 AM,08/26/2022 02:00:00 AM,08/23/2022 10:21:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 12 AVENUE and 8 AVENUE, WEST 49 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,"10019, 10036"
+669300,Shooting Permit,08/26/2022 10:00:00 AM,08/27/2022 02:00:00 AM,08/23/2022 09:34:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+669297,Shooting Permit,08/25/2022 11:00:00 AM,08/26/2022 01:00:00 AM,08/23/2022 09:26:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43RD AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+669292,Shooting Permit,08/25/2022 07:00:00 AM,08/25/2022 11:00:00 PM,08/23/2022 08:42:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+669283,Shooting Permit,09/08/2022 06:00:00 AM,09/08/2022 10:00:00 PM,08/23/2022 07:27:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 67 STREET and EAST 68 STREET,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+669282,Shooting Permit,08/26/2022 01:00:00 PM,08/27/2022 01:00:00 AM,08/23/2022 07:26:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 86 STREET and WEST 88 STREET, 5 AVENUE between EAST 26 STREET and EAST 27 STREET, WEST 43 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 43 STREET and WEST 44 STREET",Manhattan,"5, 64, 7","13, 14, 22, 24",Commercial,Commercial,United States of America,"10001, 10010, 10016, 10023, 10024, 10025, 10036"
+669260,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 08:30:00 PM,08/22/2022 09:44:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRESCENT STREET between 23 AVENUE and 24 AVENUE, 23 AVENUE between 23 STREET and 24 STREET, 24 STREET between 23 AVENUE and 24 AVENUE, 24 AVENUE between 24 STREET and 26 STREET, 26 STREET between 23 AVENUE and 24 AVENUE, HOYT AVENUE NORTH between 19 STREET and 21 STREET",Queens,1,114,Television,Cable-episodic,United States of America,"11102, 11105"
+669243,Shooting Permit,08/27/2022 06:00:00 AM,08/27/2022 09:00:00 PM,08/22/2022 07:44:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT WASHINGTON AVENUE between WEST 179 STREET and WEST 181 STREET, AMSTERDAM AVENUE between WEST 158 STREET and WEST 159 STREET, BROADWAY between WEST 155 STREET and WEST 152 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 156 STREET between BROADWAY and AMSTERDAM AVENUE, MADISON AVENUE between EAST 125 STREET and EAST 126 STREET, EAST 126 STREET between PARK AVENUE and MADISON AVENUE, FORT WASHINGTON AVENUE between BROADWAY and WEST 160 STREET",Manhattan,"11, 12, 4, 9","18, 25, 30, 33, 34",Television,Episodic series,United States of America,"10019, 10031, 10032, 10033, 10035, 10036"
+669240,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 10:00:00 PM,08/22/2022 07:24:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+669234,Shooting Permit,08/25/2022 07:00:00 AM,08/25/2022 09:00:00 PM,08/22/2022 07:02:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, EAST 55 STREET between 5 AVENUE and MADISON AVENUE, EAST 56 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 50 STREET and EAST 56 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022, 10152"
+669232,Shooting Permit,08/26/2022 07:00:00 AM,08/26/2022 09:00:00 PM,08/22/2022 06:54:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 8 AVENUE and 9 AVENUE, WEST 48 STREET between 9 AVENUE and 10 AVENUE, WEST 49 STREET between 9 AVENUE and 10 AVENUE, BROADWAY between WEST 155 STREET and WEST 152 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 156 STREET between BROADWAY and AMSTERDAM AVENUE, RIVERSIDE DRIVE between WEST 151 STREET and WEST 152 STREET, RIVERSIDE DRIVE between WEST 151 STREET and WEST 150 STREET",Manhattan,"12, 4, 9","18, 20, 30, 33",Television,Episodic series,United States of America,"10019, 10024, 10031, 10032, 10036"
+669225,Shooting Permit,08/25/2022 10:00:00 AM,08/25/2022 11:59:00 PM,08/22/2022 06:25:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+669213,Shooting Permit,08/31/2022 04:00:00 AM,09/02/2022 12:00:00 AM,08/22/2022 05:43:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 41 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,"10018, 10036"
+669195,Shooting Permit,08/25/2022 07:00:00 AM,08/25/2022 09:00:00 PM,08/22/2022 04:53:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, 34 AVENUE between 21 STREET and 12 STREET, NEWTOWN AVENUE between 31 STREET and 33 STREET, 30 AVENUE between 31 STREET and 33 STREET, 32 STREET between NEWTOWN AVENUE and 30 AVENUE, 32 STREET between 30 AVENUE and 31 AVENUE, 33 STREET between 30 AVENUE and 31 AVENUE",Manhattan,"1, 5, 6","114, 13",Television,Episodic series,United States of America,"10010, 10016, 11102, 11106"
+669189,Shooting Permit,08/25/2022 11:00:00 AM,08/25/2022 11:00:00 PM,08/22/2022 04:38:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between PRINCE STREET and VANDAM STREET, PRINCE STREET between MACDOUGAL STREET and SULLIVAN STREET, SULLIVAN STREET between PRINCE STREET and WEST HOUSTON STREET, SPRING STREET between CLEVELAND PLACE and MULBERRY STREET, SPRUCE STREET between NASSAU STREET and WILLIAM STREET",Manhattan,"1, 2, 3","1, 5, 84",Commercial,Commercial,United States of America,"10002, 10012, 10013, 10038, 11201"
+669173,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 12:00:00 PM,08/22/2022 03:54:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between WEST BROADWAY and GREENWICH STREET, HUDSON STREET between DUANE STREET and READE STREET, WEST BROADWAY between READE STREET and DUANE STREET, READE STREET between WEST BROADWAY and CHURCH STREET, CHAMBERS STREET between WEST BROADWAY and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+669171,Shooting Permit,08/26/2022 11:00:00 AM,08/27/2022 01:00:00 AM,08/22/2022 03:45:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARSONS BOULEVARD between 65 AVENUE and JEWEL AVENUE, JEWEL AVENUE between PARSONS BOULEVARD and 161 STREET, JEWEL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, PARSONS BOULEVARD between JEWEL AVENUE and 65 AVENUE, UNION TURNPIKE between 181 STREET and 182 STREET",Queens,8,107,Television,Episodic series,United States of America,"11365, 11366, 11367"
+669169,Shooting Permit,08/26/2022 11:00:00 AM,08/26/2022 11:00:00 PM,08/22/2022 03:38:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 137 STREET, WEST 137 STREET between ADAM CLAYTON POWELL JR BOULEVARD and EDGECOMBE AVENUE, WEST 136 STREET between FREDERICK DOUGLAS BOULEVARD and EDGECOMBE AVENUE, FREDERICK DOUGLAS BOULEVARD between WEST 136 STREET and WEST 139 STREET, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and EDGECOMBE AVENUE, EDGECOMBE AVENUE between WEST 137 STREET and WEST 139 STREET",Manhattan,10,32,Television,Cable-episodic,United States of America,10030
+669158,Shooting Permit,08/24/2022 09:00:00 AM,08/24/2022 08:00:00 PM,08/22/2022 02:40:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between CHAMBERS STREET and DUANE STREET, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET",Manhattan,"1, 2, 3","1, 5, 6, 7, 90",Still Photography,Not Applicable,United States of America,"10002, 10004, 10005, 10006, 10007, 10012, 10013, 10014, 10038, 10271, 10278, 10279, 11211"
+669124,Shooting Permit,08/26/2022 07:00:00 AM,08/26/2022 09:00:00 PM,08/22/2022 01:10:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+669123,Shooting Permit,08/25/2022 07:00:00 AM,08/25/2022 09:00:00 PM,08/22/2022 01:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+669118,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 09:00:00 PM,08/22/2022 12:48:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 26 STREET between MADISON AVENUE and PARK AVENUE SOUTH,Manhattan,"4, 5",13,Still Photography,Not Applicable,United States of America,"10001, 10010"
+669107,Theater Load in and Load Outs,09/10/2022 12:01:00 AM,09/11/2022 11:59:00 PM,08/22/2022 12:23:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+669106,Shooting Permit,08/24/2022 08:00:00 AM,08/24/2022 09:00:00 PM,08/22/2022 12:22:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, WEST 22 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+669104,Theater Load in and Load Outs,09/09/2022 12:01:00 AM,09/09/2022 11:59:00 PM,08/22/2022 12:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+669101,Shooting Permit,08/31/2022 05:00:00 PM,09/01/2022 07:00:00 AM,08/22/2022 12:06:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+669102,Shooting Permit,09/01/2022 05:00:00 PM,09/02/2022 07:00:00 AM,08/22/2022 12:06:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+669089,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 09:00:00 PM,08/22/2022 11:38:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 26 STREET between MADISON AVENUE and PARK AVENUE SOUTH,Manhattan,"4, 5",13,Still Photography,Not Applicable,United States of America,"10001, 10010"
+669073,Shooting Permit,08/25/2022 09:00:00 AM,08/25/2022 11:00:00 PM,08/22/2022 10:29:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","71 AVENUE between 150 STREET and KISSENA BOULEVARD, KISSENA BOULEVARD between 71 AVENUE and 72 ROAD, KISSENA BOULEVARD between 71 AVENUE and 72 ROAD, PARSONS BOULEVARD between 65 AVENUE and JEWEL AVENUE, JEWEL AVENUE between PARSONS BOULEVARD and 161 STREET, JEWEL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, PARSONS BOULEVARD between JEWEL AVENUE and 65 AVENUE, UNION TURNPIKE between 181 STREET and 182 STREET",Queens,8,107,Television,Episodic series,United States of America,"11365, 11366, 11367"
+669065,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 10:00:00 PM,08/22/2022 10:11:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET, 35 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+669060,Shooting Permit,08/30/2022 07:00:00 AM,08/30/2022 08:00:00 PM,08/22/2022 09:53:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","68 STREET between COLONIAL ROAD and SHORE ROAD, WASHINGTON STREET between MORTON STREET and LEROY STREET, MORTON STREET between WASHINGTON STREET and WEST STREET",Brooklyn,"10, 2","6, 68",Still Photography,Not Applicable,United States of America,"10014, 11220"
+669055,Shooting Permit,08/24/2022 10:00:00 AM,08/25/2022 01:00:00 AM,08/22/2022 09:20:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+669047,Shooting Permit,08/24/2022 09:30:00 AM,08/24/2022 11:30:00 PM,08/22/2022 12:39:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 36 STREET and 37 STREET, 35 STREET between 35 AVENUE and 34 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+668990,Shooting Permit,08/25/2022 06:30:00 AM,08/25/2022 08:30:00 PM,08/21/2022 08:02:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARBLE HILL AVENUE between WEST 228 STREET and WEST 230 STREET,Bronx,8,50,Still Photography,Not Applicable,United States of America,10463
+668938,DCAS Prep/Shoot/Wrap Permit,08/24/2022 10:00:00 AM,08/24/2022 09:00:00 PM,08/19/2022 08:54:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between ELK STREET and CENTRE STREET, READE STREET between ELK STREET and BROADWAY, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between DUANE STREET and CHAMBERS STREET, BROADWAY between WARREN STREET and MURRAY STREET, READE STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+668927,Shooting Permit,08/30/2022 06:00:00 AM,08/30/2022 10:00:00 PM,08/19/2022 04:49:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","KRAMER AVENUE between BLOOMINGDALE ROAD and WINANT AVENUE, KRAMER AVENUE between BLOOMINGDALE ROAD and WINANT AVENUE, WINANT AVENUE between MCBAINE AVENUE and KRAMER AVENUE, BLOOMINGDALE ROAD between MCBAINE AVENUE and KRAMER AVENUE",Staten Island,3,123,Television,Episodic series,United States of America,10309
+668926,Shooting Permit,08/26/2022 06:00:00 AM,08/26/2022 10:00:00 PM,08/19/2022 04:46:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+668922,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 09:00:00 PM,08/19/2022 04:32:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between GRAND AVENUE and CLASSON AVENUE,Brooklyn,"1, 2, 3","1, 79, 88",Film,Feature,United States of America,"10004, 11238"
+668920,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 11:00:00 PM,08/19/2022 03:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10011
+668919,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 11:00:00 PM,08/19/2022 03:56:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10011
+668917,Shooting Permit,08/24/2022 10:00:00 AM,08/25/2022 02:00:00 AM,08/19/2022 03:53:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 55 STREET, WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 7 AVENUE and BROADWAY, 7 AVENUE between WEST 54 STREET and WEST 57 STREET, BOX STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, ASH STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between DUPONT STREET and COMMERCIAL STREET, MANHATTAN AVENUE between COMMERCIAL STREET and DEAD END, COMMERCIAL STREET between BOX STREET and MANHATTAN AVENUE",Manhattan,"1, 5","18, 94",Television,Cable-episodic,United States of America,"10017, 10019, 10022, 10106, 10152, 10171, 11222"
+668914,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 11:00:00 PM,08/19/2022 03:52:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Promo,United States of America,10011
+668911,Shooting Permit,08/23/2022 08:30:00 AM,08/23/2022 10:30:00 PM,08/19/2022 03:40:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, DITMARS BOULEVARD between 19 STREET and 21 STREET, SHORE BOULEVARD between DITMARS BOULEVARD and 21 ROAD, HOYT AVENUE NORTH between 19 STREET and 23 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,"11102, 11105, 11106"
+668874,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 09:00:00 PM,08/19/2022 01:35:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and GREENPOINT AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668852,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 08:00:00 PM,08/19/2022 12:57:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","LISPENARD STREET between CHURCH STREET and BROADWAY, CHURCH STREET between WHITE STREET and WORTH STREET, WEST BROADWAY between FRANKLIN ST and THOMAS ST, LISPENARD STREET between CHURCH STREET and 6 AVENUE, FRANKLIN STREET between CHURCH STREET and BROADWAY, SIXTH AVENUE between LISPENARD STREET and WALKER STREET, WEST BROADWAY between LISPENARD STREET and WHITE STREET, BEACH ST between VARICK STREET and W BROADWAY, YORK STREET between ST JOHNS LANE and SIXTH AVENUE",Manhattan,1,1,Television,Episodic series,United States of America,10013
+668849,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 11:00:00 PM,08/19/2022 12:54:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+668837,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 09:00:00 PM,08/19/2022 12:36:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668831,Shooting Permit,08/24/2022 06:00:00 PM,08/25/2022 07:00:00 AM,08/19/2022 12:24:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, WELLMAN AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, EAST TREMONT AVENUE between WATERBURY AVENUE and PURITAN AVENUE, MAYFLOWER AVENUE between DUDLEY AVENUE and MAITLAND AVENUE, CROSBY AVENUE between CODDINGTON AVENUE and ZULETTE AVENUE, CROSBY AVENUE between ZULETTE AVENUE and MERRY AVENUE, DUDLEY AVENUE between GILLESPIE AVENUE and CROSBY AVENUE, ZULETTE AVENUE between CROSBY AVENUE and MERRY AVENUE, ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, HUTCHINSON RIVER PKWY between E TREMONT AVE and ROEBLING AVE",Bronx,10,45,Television,Cable-episodic,United States of America,10461
+668815,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 10:00:00 PM,08/19/2022 11:32:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","1ST AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 46 STREET between 1 AVENUE and LEXINGTON AVENUE, EAST 47 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 45 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 48 STREET, EAST 49 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,17,Television,Cable-episodic,United States of America,"10017, 10022"
+668810,Shooting Permit,08/29/2022 12:00:00 AM,08/29/2022 11:00:00 PM,08/19/2022 11:09:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between 9 STREET and 10 STREET, 9 STREET between 40 AVENUE and 38 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+668784,Theater Load in and Load Outs,09/13/2022 12:01:00 AM,09/13/2022 11:59:00 PM,08/19/2022 08:59:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+668779,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 07:00:00 PM,08/19/2022 07:57:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARBLE HILL AVENUE between WEST 228 STREET and WEST 230 STREET,Bronx,8,50,Still Photography,Not Applicable,United States of America,10463
+668775,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 07:00:00 PM,08/19/2022 07:17:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",UNION STREET between BOND STREET and NEVINS STREET,Brooklyn,6,"76, 78",Commercial,Commercial,United States of America,"11215, 11231"
+668757,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 11:00:00 PM,08/18/2022 11:42:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+668732,Shooting Permit,08/24/2022 06:00:00 AM,08/25/2022 01:00:00 AM,08/18/2022 07:11:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BERRY STREET and BEDFORD AVENUE, GRAND STREET between KENT AVENUE and BERRY STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+668728,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 11:00:00 PM,08/18/2022 07:01:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668706,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 10:00:00 PM,08/18/2022 05:31:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between 5 AVENUE and MADISON AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10017, 10036"
+668698,Shooting Permit,08/21/2022 06:00:00 AM,08/21/2022 10:00:00 PM,08/18/2022 04:58:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","1ST AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 45 STREET between 1 AVENUE and 2 AVENUE, EAST 46 STREET between 1 AVENUE and 3 AVENUE, 2 AVENUE between EAST 43 STREET and EAST 47 STREET, EAST 47 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 49 STREET between 1 AVENUE and 2 AVENUE, 1ST AVENUE between EAST 43 STREET and EAST 45 STREET",Manhattan,6,17,Television,Cable-episodic,United States of America,10017
+668695,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 10:00:00 PM,08/18/2022 04:52:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET, AVENUE D between EAST 101 STREET and EAST 105 STREET",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+668694,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 08:00:00 PM,08/18/2022 04:49:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between LIVINGSTON STREET and STATE STREET, COURT STREET between LIVINGSTON STREET and JORALEMON STREET, COURT STREET between JORALEMON STREET and REMSEN STREET, JORALEMON STREET between BOERUM PLACE and COURT STREET, REMSEN STREET between COURT STREET and CLINTON STREET, CLINTON STREET between REMSEN STREET and JORALEMON STREET, ATLANTIC AVENUE between SMITH STREET and BOND STREET, LIVINGSTON STREET between SMITH STREET and BOND STREET, SCHERMERHORN STREET between HOYT STREET and SMITH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+668683,Shooting Permit,08/21/2022 07:00:00 AM,08/21/2022 08:00:00 PM,08/18/2022 04:13:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",LORIMER STREET between CONSELYEA STREET and SKILLMAN AVENUE,Brooklyn,1,94,Film,Short,United States of America,11211
+668682,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 07:00:00 PM,08/18/2022 04:11:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",INDIAN ROAD between WEST 218 STREET and WEST 215 STREET,Bronx,"12, 7","34, 52",Still Photography,Not Applicable,United States of America,"10034, 10468"
+668679,Shooting Permit,08/22/2022 08:00:00 AM,08/22/2022 11:00:00 PM,08/18/2022 04:05:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between WEST 11 STREET and BANK STREET, GREENWICH STREET between PERRY STREET and WEST 11 STREET, GREENWICH STREET between BETHUNE STREET and BANK STREET, BANK STREET between WASHINGTON STREET and GREENWICH STREET, BANK STREET between GREENWICH STREET and HUDSON STREET, WEST STREET between CHARLES STREET and BETHUNE STREET, WASHINGTON STREET between BANK STREET and BETHUNE STREET, WASHINGTON STREET between BETHUNE STREET and JANE STREET, 6 AVENUE between BLEECKER STREET and MINETTA LANE, 6 AVENUE between WEST 3 STREET and WEST 9 STREET, WEST 11 STREET between HUDSON STREET and GREENWICH STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10014"
+668678,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 09:00:00 PM,08/18/2022 04:04:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 11 AVENUE and 12 AVENUE, WEST 51 STREET between 11 AVENUE and 12 AVENUE, WEST 49 STREET between 11 AVENUE and 12 AVENUE, WEST 54 STREET between 5 AVENUE and 6 AVENUE, WEST 54 STREET between 5 AVENUE and 6 AVENUE, WEST 53 STREET between 5 AVENUE and 6 AVENUE, WEST 53 STREET between 8 AVENUE and 10 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+668653,Shooting Permit,08/21/2022 08:00:00 AM,08/21/2022 07:00:00 PM,08/18/2022 03:15:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between VAN BRUNT STREET and RICHARDS STREET, BEARD STREET between VAN BRUNT STREET and CONOVER STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+668648,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 09:00:00 PM,08/18/2022 02:51:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668647,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 08:00:00 PM,08/18/2022 02:50:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 44 STREET and WEST 43 STREET, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 43 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036"
+668638,Shooting Permit,08/23/2022 08:00:00 AM,08/23/2022 08:00:00 PM,08/18/2022 02:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between MCGUINNESS BOULEVARD and NEWEL STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668630,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 08:00:00 PM,08/18/2022 02:20:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, CYPRESS AVENUE between GEORGE STREET and CENTRE STREET, GEORGE STREET between CYPRESS AVENUE and WYCKOFF AVENUE, WYCKOFF AVENUE between STEPHEN STREET and GEORGE STREET, CENTRE STREET between CYPRESS AVENUE and WYCKOFF AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+668624,Shooting Permit,08/24/2022 06:00:00 PM,08/24/2022 11:59:00 PM,08/18/2022 02:10:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between BEACH AVENUE and ST LAWRENCE AVENUE, BEACH AVENUE between PATTERSON AVENUE and O'BRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, RANDALL AVENUE between SOUNDVIEW AVENUE and THIERIOT AVENUE, BRONX RIVER AVE between ROSEDALE AVENUE and DEAD END, ROSEDALE AVENUE between BRONX RIVER AVENUE and RANDALL AVENUE",Bronx,"11, 9","43, 49",Television,Cable-episodic,United States of America,"10455, 10460, 10472, 10473"
+668613,Shooting Permit,08/20/2022 07:00:00 AM,08/20/2022 08:00:00 PM,08/18/2022 01:49:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 134 STREET between LINCOLN AVENUE and ALEXANDER AVENUE, RIVINGTON STREET between CLINTON STREET and SUFFOLK STREET",Bronx,"1, 3","40, 7",Music Video,Signed Artist,United States of America,"10002, 10454"
+668567,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 08:00:00 PM,08/18/2022 11:18:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 7 AVENUE and 8 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+668566,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 09:00:00 PM,08/18/2022 11:18:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and FRANKLIN AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE, GRAND AVENUE between GREENE AVENUE and LEXINGTON AVENUE",Brooklyn,"2, 3","79, 88",Film,Feature,United States of America,11238
+668563,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 09:00:00 PM,08/18/2022 11:14:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668560,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 09:00:00 PM,08/18/2022 11:10:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE, GRAND AVENUE between GREENE AVENUE and LEXINGTON AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11238
+668554,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 09:00:00 PM,08/18/2022 10:57:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668543,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 04:30:00 PM,08/18/2022 10:32:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 67 STREET and EAST 68 STREET, PARK AVENUE between EAST 68 STREET and EAST 70 STREET",Manhattan,"7, 8","19, 20",Television,Variety,United States of America,"10021, 10023, 10065"
+668533,Shooting Permit,08/25/2022 06:00:00 AM,08/25/2022 11:59:00 PM,08/18/2022 10:08:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+668530,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 11:59:00 PM,08/18/2022 10:03:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+668524,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 11:00:00 PM,08/18/2022 08:54:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+668513,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 08:00:00 PM,08/18/2022 02:03:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",RIVINGTON STREET between RIDGE STREET and CLINTON STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+668493,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 09:00:00 PM,08/17/2022 06:41:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668491,Shooting Permit,08/20/2022 07:00:00 AM,08/20/2022 09:00:00 PM,08/17/2022 06:27:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668487,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 09:00:00 PM,08/17/2022 06:17:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668483,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 09:00:00 PM,08/17/2022 05:35:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 158 STREET and WEST 159 STREET, WEST 158 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 158 STREET and WEST 159 STREET",Manhattan,12,33,Television,Episodic series,United States of America,10032
+668472,Shooting Permit,08/19/2022 06:00:00 PM,08/20/2022 06:00:00 AM,08/17/2022 04:30:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODHAVEN BOULEVARD between MYRTLE AVENUE and FOREST PARK DRIVE, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH",Queens,"5, 6, 82, 9","102, 104, 75",Television,Cable-episodic,United States of America,"11375, 11385, 11415, 11421"
+668453,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 10:00:00 PM,08/17/2022 03:48:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Episodic series,United States of America,10304
+668443,Shooting Permit,08/20/2022 06:00:00 AM,08/20/2022 10:00:00 PM,08/17/2022 03:11:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","1ST AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 45 STREET between 1 AVENUE and 2 AVENUE, EAST 46 STREET between 1 AVENUE and 3 AVENUE, 2 AVENUE between EAST 43 STREET and EAST 47 STREET, EAST 47 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 49 STREET between 1 AVENUE and 2 AVENUE, 1ST AVENUE between EAST 43 STREET and EAST 45 STREET",Manhattan,6,17,Television,Cable-episodic,United States of America,10017
+668413,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 11:00:00 PM,08/17/2022 01:54:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between 20 STREET and FT HAMILTON PARKWAY, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 52 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 51 STREET and WEST 52 STREET, WEST 51 STREET between 8 AVENUE and 5 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Brooklyn,"5, 7","18, 72",Television,Episodic series,United States of America,"10019, 10020, 10022, 11218"
+668412,Shooting Permit,08/24/2022 07:00:00 AM,08/24/2022 11:00:00 PM,08/17/2022 01:50:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668410,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 11:00:00 PM,08/17/2022 01:41:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","INDIA STREET between MANHATTAN AVENUE and FRANKLIN STREET, JAVA STREET between MANHATTAN AVENUE and FRANKLIN STREET, KENT STREET between MANHATTAN AVENUE and FRANKLIN STREET, MANHATTAN AVENUE between JAVA STREET and KENT STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668409,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 11:00:00 PM,08/17/2022 01:33:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668404,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 10:00:00 PM,08/17/2022 01:25:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between 46 STREET and 43 STREET, 45 STREET between 3 AVENUE and 2 AVENUE, 46 STREET between 3 AVENUE and 2 AVENUE",Brooklyn,7,72,Television,Not Applicable,United States of America,"11220, 11232"
+668401,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 10:00:00 PM,08/17/2022 01:19:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between 46 STREET and 43 STREET, 45 STREET between 3 AVENUE and 2 AVENUE, 46 STREET between 3 AVENUE and 2 AVENUE",Brooklyn,7,72,Television,Not Applicable,United States of America,"11220, 11232"
+668396,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 11:00:00 PM,08/17/2022 01:07:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668369,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 10:00:00 PM,08/17/2022 12:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+668346,Shooting Permit,08/21/2022 03:00:00 AM,08/21/2022 01:00:00 PM,08/17/2022 11:24:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+668341,Shooting Permit,08/20/2022 12:00:00 AM,08/20/2022 02:00:00 PM,08/17/2022 11:07:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+668327,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 09:00:00 PM,08/17/2022 10:05:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, MCGUINNESS BOULEVARD between GREEN STREET and FREEMAN STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668325,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 11:59:00 PM,08/17/2022 09:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+668311,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 10:00:00 PM,08/17/2022 08:37:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+668306,Shooting Permit,08/20/2022 07:00:00 AM,08/20/2022 08:00:00 PM,08/17/2022 07:29:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","DENNETT PLACE between NELSON STREET and LUQUER STREET, NELSON STREET between DENNETT PLACE and SMITH STREET, NELSON STREET between DENNETT PLACE and COURT STREET, 5 AVENUE between 11 STREET and 10 STREET, 11 STREET between 5 AVENUE and 4 AVENUE",Brooklyn,6,"76, 78",Film,Short,United States of America,"11215, 11231"
+668252,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 09:30:00 PM,08/16/2022 04:44:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and MANHATTAN AVENUE, EAGLE ST between MCGUINNESS BLVD and PROVOST ST, MCGUINNESS BLVD between DUPONT STREET and EAGLE ST, MCGUINNESS BLVD between CLAY STREET and DUPONT ST, PROVOST STREET between PAIDGE AVENUE and GREENE STREET, MANHATTAN AVENUE between EAGLE STREET and FREEMAN STREET, MANHATTAN AVENUE between EAGLE STREET and DUPONT STREET, FREEMAN STREET between MANHATTAN AVENUE and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668244,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 11:59:00 PM,08/16/2022 04:15:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668243,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 09:00:00 PM,08/16/2022 04:15:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 111 STREET between 1 AVENUE and 2 AVENUE,Manhattan,11,"23, 25",Television,Cable-episodic,United States of America,"10029, 10035"
+668218,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 10:00:00 PM,08/16/2022 03:03:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+668205,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 10:00:00 PM,08/16/2022 02:31:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+668204,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 10:00:00 PM,08/16/2022 02:26:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+668195,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 10:00:00 PM,08/16/2022 02:18:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+668190,Shooting Permit,08/21/2022 06:00:00 AM,08/21/2022 10:00:00 PM,08/16/2022 02:11:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+668181,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 09:00:00 PM,08/16/2022 01:31:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+668160,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 08:00:00 PM,08/16/2022 12:42:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,11385
+668145,Shooting Permit,08/24/2022 12:00:00 PM,08/24/2022 11:00:00 PM,08/16/2022 12:20:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 41 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,"10018, 10036"
+668132,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 11:00:00 PM,08/16/2022 11:47:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 5 AVENUE and 6 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 26 STREET and EAST 27 STREET, MADISON AVENUE between EAST 23 STREET and EAST 25 STREET, MADISON AVENUE between EAST 26 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 25 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10001, 10010, 10016"
+668121,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 11:59:00 PM,08/16/2022 11:23:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+668115,Shooting Permit,08/18/2022 10:00:00 AM,08/18/2022 04:00:00 PM,08/16/2022 10:51:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAUREL HILL BOULEVARD between 56 ROAD and 54 ROAD, LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE, REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11378"
+668101,Shooting Permit,08/19/2022 08:00:00 AM,08/19/2022 10:00:00 PM,08/16/2022 10:13:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT ST and COVERT ST, WYCKOFF AVENUE between NORMAN STREET and DECATUR STREET, DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE, DECATUR STREET between WYCKOFF AVENUE and CYPRESS AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+668096,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 10:00:00 PM,08/16/2022 09:47:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 63 STREET and EAST 60 STREET, EAST 62 STREET between 5 AVENUE and PARK AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 62 STREET and EAST 61 STREET, MADISON AVENUE between EAST 61 STREET and EAST 60 STREET, EAST 60 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10022, 10065"
+668095,Shooting Permit,08/18/2022 08:00:00 AM,08/18/2022 10:00:00 PM,08/16/2022 09:42:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between WALL STREET and HANOVER SQUARE, HANOVER STREET between WALL STREET and EXCHANGE PLACE, WILLIAM STREET between SOUTH WILLIAM STREET and STONE STREET, HANOVER SQUARE between STONE STREET and PEARL STREET, HANOVER SQUARE between PEARL STREET and WATER STREET, OLD SLIP between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between WATER STREET and SOUTH STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and OLD SLIP, PEARL STREET between WALL STREET and PINE STREET, BEAVER STREET between HANOVER STREET and PEARL STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+668092,Shooting Permit,08/17/2022 08:00:00 PM,08/18/2022 12:00:00 AM,08/16/2022 09:31:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between SURF AVENUE and DEAD END, SURF AVENUE between WEST 12 STREET and WEST 10 STREET",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+668084,Shooting Permit,08/21/2022 06:00:00 AM,08/21/2022 03:00:00 PM,08/16/2022 09:02:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 9 STREET and 11 STREET, QUEENS PLAZA SOUTH between 11 STREET and 13 STREET, 11 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2, 6, 8","108, 114, 17, 19",Television,Cable-episodic,United States of America,"10016, 10017, 10022, 10044, 10065, 11101"
+668082,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 11:00:00 PM,08/16/2022 08:44:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 69 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, EAST 74 STREET between PARK AVENUE and MADISON AVENUE, AMSTERDAM AVENUE between WEST 70 STREET and WEST 69 STREET, AMSTERDAM AVENUE between WEST 69 STREET and WEST 67 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 70 STREET and WEST 69 STREET, BROADWAY between WEST 69 STREET and WEST 68 STREET, BROADWAY between WEST 68 STREET and WEST 67 STREET, BROADWAY between WEST 67 STREET and WEST 66 STREET, WEST 67 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"7, 8","19, 20",Television,Cable-episodic,United States of America,"10021, 10023, 10065"
+668077,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 07:00:00 PM,08/16/2022 07:25:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE,Brooklyn,2,88,Film,Short,United States of America,11238
+668061,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 09:00:00 PM,08/15/2022 11:22:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+668058,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 10:00:00 PM,08/15/2022 10:36:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 46 STREET between 1 AVENUE and LEXINGTON AVENUE, EAST 47 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 45 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 48 STREET",Manhattan,6,17,Television,Cable-episodic,United States of America,"10017, 10022"
+668057,Shooting Permit,08/18/2022 06:00:00 AM,08/18/2022 10:00:00 PM,08/15/2022 10:28:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 46 STREET between 1 AVENUE and LEXINGTON AVENUE, EAST 47 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 45 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 48 STREET",Manhattan,6,17,Television,Cable-episodic,United States of America,"10017, 10022"
+668050,DCAS Prep/Shoot/Wrap Permit,08/19/2022 06:00:00 AM,08/19/2022 10:00:00 PM,08/15/2022 08:58:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",JORALEMON STREET between COURT STREET and BROOKLYN BRIDGE BOULEVARD,Brooklyn,2,84,Television,Episodic series,United States of America,11201
+668049,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 11:00:00 PM,08/15/2022 08:57:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between JORALEMON STREET and MONTAGUE STREET, COURT STREET between JORALEMON STREET and REMSEN STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+668039,Theater Load in and Load Outs,08/30/2022 12:01:00 AM,09/01/2022 11:59:00 PM,08/15/2022 07:36:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+668010,Shooting Permit,08/18/2022 07:00:00 AM,08/19/2022 01:00:00 AM,08/15/2022 04:42:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, MYRTLE AVENUE between ASHLAND PLACE and FLEET PLACE, VANDERBILT AVENUE between GREENE AVENUE and GATES AVENUE, CLERMONT AVENUE between GREENE AVENUE and FULTON STREET, GREENE AVENUE between VANDERBILT AVENUE and CLERMONT AVENUE",Brooklyn,"1, 2","88, 94",Television,Episodic series,United States of America,"11201, 11222, 11238"
+668004,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 08:00:00 PM,08/15/2022 04:16:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",HANCOCK STREET between MARCUS GARVEY BOULEVARD and THROOP AVENUE,Brooklyn,3,79,Film,Short,United States of America,11216
+668000,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 11:00:00 PM,08/15/2022 03:58:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+667996,Theater Load in and Load Outs,08/28/2022 12:01:00 AM,08/29/2022 06:00:00 AM,08/15/2022 03:49:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+667995,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 09:00:00 PM,08/15/2022 03:47:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","56 DRIVE between ARKANSAS DRIVE and NATIONAL DRIVE, 56 DRIVE between ARKANSAS DRIVE and WHITMAN DRIVE, NATIONAL DRIVE between 56 DRIVE and EAST 66 STREET, ARKANSAS DR between NATIONAL DRIVE and 56 DRIVE, MILL AVENUE between 60 PLACE and STRICKLAND AVENUE, STRICKLAND AVENUE between MILL AVENUE and 60 PLACE, 60 PLACE between MILL AVENUE and STRICKLAND AVENUE",Brooklyn,18,63,Television,Cable-episodic,United States of America,11234
+667990,Shooting Permit,08/17/2022 06:00:00 AM,08/17/2022 05:00:00 PM,08/15/2022 03:32:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",READE STREET between BROADWAY and CHURCH STREET,Manhattan,1,1,Television,Episodic series,United States of America,10007
+667988,DCAS Prep/Shoot/Wrap Permit,08/17/2022 06:00:00 AM,08/17/2022 10:00:00 PM,08/15/2022 03:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, BROADWAY between DUANE STREET and CHAMBERS STREET, BROADWAY between WARREN STREET and MURRAY STREET, CHAMBERS STREET between ELK STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+667986,Shooting Permit,08/23/2022 05:00:00 PM,08/23/2022 11:59:00 PM,08/15/2022 03:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",CORTLANDT ALLEY between FRANKLIN STREET and WHITE STREET,Manhattan,1,5,Student,Student Film,United States of America,10013
+667980,Shooting Permit,08/29/2022 10:00:00 AM,08/29/2022 11:00:00 AM,08/15/2022 03:14:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Commercial,Commercial,United States of America,"10019, 10020"
+667960,Shooting Permit,08/24/2022 06:00:00 AM,08/24/2022 10:00:00 PM,08/15/2022 02:34:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+667958,Shooting Permit,09/26/2022 06:30:00 AM,09/26/2022 11:45:00 PM,08/15/2022 02:31:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",39 STREET between SECOND AVENUE and THIRD AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11232
+667957,Shooting Permit,08/23/2022 06:00:00 AM,08/23/2022 10:00:00 PM,08/15/2022 02:30:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+667956,Shooting Permit,08/22/2022 06:00:00 AM,08/22/2022 10:00:00 PM,08/15/2022 02:28:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+667954,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 10:00:00 PM,08/15/2022 02:22:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+667940,Shooting Permit,08/18/2022 10:00:00 AM,08/19/2022 02:00:00 AM,08/15/2022 01:48:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667932,Theater Load in and Load Outs,08/28/2022 12:01:00 AM,08/29/2022 06:00:00 AM,08/15/2022 01:25:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+667931,Shooting Permit,08/17/2022 03:00:00 PM,08/18/2022 05:00:00 AM,08/15/2022 01:22:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIGHTON 3 STREET between OCEAN VIEW AVENUE and BRIGHTON BEACH AVENUE, BRIGHTON BEACH AVENUE between BRIGHTON 4 STREET and BRIGHTON 1 STREET, BRIGHTON 1 PLACE between BRIGHTON 1 WALK and BRIGHTON BEACH AVENUE, BRIGHTON 2 STREET between OCEAN VIEW AVENUE and BRIGHTON BEACH AVENUE, SURF AVENUE between WEST 8 STREET and SEA BREEZE AVENUE",Brooklyn,13,60,Television,Episodic series,United States of America,"11224, 11235"
+667929,Theater Load in and Load Outs,08/25/2022 12:01:00 AM,08/25/2022 11:59:00 PM,08/15/2022 01:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+667909,Theater Load in and Load Outs,08/27/2022 12:01:00 AM,08/27/2022 11:59:00 PM,08/15/2022 12:21:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+667891,Shooting Permit,08/18/2022 08:00:00 AM,08/18/2022 11:00:00 PM,08/15/2022 11:25:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667888,Shooting Permit,08/17/2022 08:00:00 AM,08/17/2022 11:00:00 PM,08/15/2022 11:20:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667871,Theater Load in and Load Outs,09/01/2022 12:01:00 AM,09/07/2022 11:59:00 PM,08/15/2022 10:38:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+667870,Shooting Permit,08/19/2022 06:00:00 AM,08/19/2022 11:59:00 PM,08/15/2022 10:26:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 55 STREET and WEST 54 STREET, BROADWAY between WEST 54 STREET and WEST 53 STREET, WEST 53 STREET between BROADWAY and 8 AVENUE, WEST 53 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between BROADWAY and 8 AVENUE, WEST 52 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+667859,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 07:00:00 PM,08/15/2022 09:39:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between PEARL STREET and JAY STREET, PEARL STREET between FRONT STREET and YORK STREET, YORK STREET between PEARL STREET and JAY STREET, FRONT STREET between JAY STREET and GOLD STREET, JAY STREET between FRONT STREET and YORK STREET, HUDSON AVENUE between JOHN STREET and PLYMOUTH STREET, HUDSON AVENUE between WATER STREET and FRONT STREET, PLYMOUTH STREET between HUDSON AVENUE and LITTLE STREET, LITTLE STREET between PLYMOUTH STREET and EVANS STREET, EVANS STREET between LITTLE STREET and HUDSON AVENUE, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, PEARL STREET between YORK STREET and PROSPECT STREET",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,11201
+667856,Shooting Permit,08/22/2022 06:00:00 AM,08/23/2022 02:00:00 AM,08/15/2022 09:31:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 13 STREET, BEDFORD AVENUE between NASSAU AVENUE and NORTH 12 STREET, 46 AVENUE between 5 STREET and VERNON BOULEVARD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 AVENUE and 44 DRIVE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 5 STREET between 44 DRIVE and 45 AVENUE, 45 AVENUE between 5 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222, 11249"
+667843,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 08:30:00 PM,08/15/2022 08:41:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOULEVARD between POINT CRESCENT and NORTH DRIVE, BOULEVARD between POINT CRESCENT and MALBA DRIVE, MALBA DRIVE between BOULEVARD and NORTH DRIVE, POINT CRESCENT between BOULEVARD and 141 STREET, WHITESTONE EXPRESSWAY between 3 AVENUE and 8 AVENUE, THIRD AVE between WHITESTONE EXPRESSWAY and 147 STREET, 147 STREET between THIRD AVENUE and FOURTH AVENUE",Queens,7,109,Television,Episodic series,United States of America,11357
+667842,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 11:00:00 PM,08/15/2022 08:37:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 69 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, EAST 74 STREET between PARK AVENUE and MADISON AVENUE, EAST 69 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+667841,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 07:00:00 PM,08/15/2022 08:08:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 72 STREET and WEST 74 STREET, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, LAFAYETTE STREET between BLEECKER STREET and BOND STREET, BOND STREET between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 64, 7","20, 22, 9",Commercial,Commercial,United States of America,"10012, 10023"
+667836,Shooting Permit,08/17/2022 07:30:00 AM,08/17/2022 09:30:00 PM,08/15/2022 03:03:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+667835,Shooting Permit,08/17/2022 11:00:00 AM,08/18/2022 01:00:00 AM,08/15/2022 02:52:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between HUDSON STREET and WEST BROADWAY, WEST BROADWAY between THOMAS STREET and WORTH STREET, WORTH STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between WORTH STREET and THOMAS STREET, LEONARD STREET between WEST BROADWAY and CHURCH STREET, WORTH STREET between CHURCH STREET and BROADWAY, CHURCH STREET between WORTH STREET and LEONARD STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, VARICK STREET between FRANKLIN STREET and LEONARD STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, NORTH MOORE STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between ERICSSON PLACE and NORTH MOORE STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, WEST BROADWAY between WORTH STREET and LEONARD STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+667744,Shooting Permit,08/17/2022 06:00:00 AM,08/17/2022 06:00:00 PM,08/13/2022 10:17:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and ROCKEFELLER PLAZA,Manhattan,5,18,Commercial,Promo,United States of America,"10020, 10036, 10111"
+667741,Shooting Permit,08/17/2022 07:00:00 AM,08/18/2022 01:00:00 AM,08/13/2022 08:45:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 9 AVENUE and 11 AVENUE, 10 AVENUE between WEST 43 STREET and WEST 44 STREET, WEST 43 STREET between 9 AVENUE and 10 AVENUE, WEST 43 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 42 STREET and WEST 43 STREET, WEST 44 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 45 STREET, WEST 44 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","10, 14, 18",Television,Episodic series,United States of America,10036
+667730,Shooting Permit,08/19/2022 01:00:00 PM,08/20/2022 04:00:00 AM,08/12/2022 08:29:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between LEROY STREET and CLARKSON STREET, CLARKSON STREET between WEST STREET and WASHINGTON STREET, SOUTH STREET between FULTON STREET and JOHN STREET, MAIDEN LANE between FRONT STREET and WATER STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, FRONT STREET between MAIDEN LANE and WALL STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between MAIDEN LANE and WALL STREET, WATER STREET between WALL STREET and OLD SLIP, SOUTH STREET between ROBERT F WAGNER PLACE and DOVER STREET, SOUTH STREET between DOVER STREET and PECK SLIP, SOUTH STREET between PECK SLIP and BEEKMAN STREET, SOUTH STREET between BEEKMAN STREET and JOHN STREET",Manhattan,"1, 2, 3","1, 5, 6, 9",Television,Cable-episodic,United States of America,"10002, 10005, 10014, 10038"
+667671,Shooting Permit,08/18/2022 11:00:00 AM,08/19/2022 01:00:00 AM,08/12/2022 03:46:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, UNION AVENUE between FROST STREET and JACKSON STREET, MEEKER AVE. between UNION AVENUE and WITHERS STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11211
+667669,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 09:00:00 PM,08/12/2022 03:44:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between VERNON BOULEVARD and 11 STREET, 47 ROAD between VERNON BOULEVARD and 11 STREET, 11 STREET between 47 AVENUE and 47 ROAD, 11 STREET between 46 ROAD and 47 AVENUE, 11 STREET between 46 ROAD and 46 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 45 ROAD between 11 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, 47 ROAD between 11 STREET and JACKSON AVENUE, JACKSON AVENUE between 47 AVENUE and 47 ROAD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+667664,Shooting Permit,08/18/2022 12:00:00 PM,08/19/2022 01:00:00 AM,08/12/2022 03:21:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET, ROCHESTER AVENUE between EASTERN PARKWAY and CROWN STREET, EAST NEW YORK AVENUE between BUFFALO AVENUE and EAST 94 STREET, BUFFALO AVENUE between EASTERN PARKWAY and EAST NEW YORK AVENUE",Brooklyn,"17, 18, 8, 9","67, 69, 71, 77",Television,Cable-episodic,United States of America,"11212, 11213, 11236"
+667657,Theater Load in and Load Outs,08/29/2022 06:00:00 AM,08/31/2022 01:00:00 PM,08/12/2022 03:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+667656,Theater Load in and Load Outs,08/26/2022 08:00:00 AM,08/28/2022 08:00:00 AM,08/12/2022 03:00:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+667654,Theater Load in and Load Outs,08/21/2022 06:00:00 AM,08/22/2022 01:00:00 PM,08/12/2022 02:59:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+667653,Theater Load in and Load Outs,08/18/2022 06:00:00 AM,08/21/2022 05:30:00 AM,08/12/2022 02:59:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+667651,Theater Load in and Load Outs,08/24/2022 12:01:00 AM,08/24/2022 11:59:00 PM,08/12/2022 02:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+667650,Theater Load in and Load Outs,08/26/2022 12:01:00 AM,08/28/2022 06:00:00 AM,08/12/2022 02:45:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+667649,Theater Load in and Load Outs,09/02/2022 12:01:00 AM,09/11/2022 11:59:00 PM,08/12/2022 02:37:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+667644,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 09:00:00 PM,08/12/2022 02:09:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 4 STREET and SOUTH 5 STREET, KENT AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 3 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 2 STREET and SOUTH 3 STREET, SOUTH 3 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between SOUTH 3 STREET and SOUTH 5 STREET, WYTHE AVENUE between SOUTH 6 STREET and BROADWAY, BROADWAY between WYTHE AVENUE and BEDFORD AVENUE, BROADWAY between KENT AVENUE and DUNHAM PLACE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+667633,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 09:00:00 PM,08/12/2022 01:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",PROSPECT PLACE between VANDERBILT AVENUE and CARLTON AVENUE,Brooklyn,8,78,Commercial,Commercial,United States of America,11238
+667628,Theater Load in and Load Outs,09/15/2022 12:01:00 AM,09/15/2022 11:59:00 PM,08/12/2022 01:20:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+667626,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 09:00:00 PM,08/12/2022 01:06:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+667619,Shooting Permit,08/31/2022 07:00:00 AM,08/31/2022 08:00:00 PM,08/12/2022 12:44:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between RIVINGTON STREET and DELANCEY STREET, RIVINGTON STREET between BOWERY and CHRYSTIE STREET",Manhattan,"2, 3",5,WEB,Not Applicable,United States of America,"10002, 10012"
+667588,Shooting Permit,08/19/2022 07:00:00 AM,08/19/2022 07:00:00 PM,08/12/2022 11:22:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 3 STREET and 4 STREET,Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11215
+667565,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 10:00:00 PM,08/12/2022 09:31:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH, FREEDOM DRIVE between MYRTLE AVENUE and PARK LANE SOUTH, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"2, 82","102, 108",Television,Episodic series,United States of America,"11101, 11385"
+667563,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 07:00:00 PM,08/12/2022 09:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, VARET STREET between WHITE STREET and BUSHWICK AVENUE, WHITE STREET between VARET STREET and COOK STREET, WHITE STREET between VARET STREET and MOORE STREET, COOK STREET between BUSHWICK AVENUE and WHITE STREET, COOK STREET between EVERGREEN AVENUE and BOGART STREET, COOK STREET between WHITE STREET and EVERGREEN AVENUE, FLUSHING AVENUE between BUSHWICK AVENUE and EVERGREEN AVENUE, FLUSHING AVENUE between EVERGREEN AVENUE and BOGART STREET, EVERGREEN AVENUE between FLUSHING AVENUE and NOLL STREET, CENTRAL AVENUE between FLUSHING AVENUE and NOLL STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11206
+667555,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 10:00:00 PM,08/12/2022 08:55:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 69 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, EAST 69 STREET between 5 AVENUE and MADISON AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+667545,Shooting Permit,08/16/2022 07:30:00 AM,08/16/2022 09:30:00 PM,08/12/2022 12:29:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+667544,Shooting Permit,08/16/2022 10:00:00 AM,08/16/2022 11:59:00 PM,08/12/2022 12:13:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 21 STREET between GRAMERCY PARK W and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 18 STREET between BROADWAY and 5 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+667536,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 09:00:00 PM,08/11/2022 09:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+667535,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 09:00:00 PM,08/11/2022 09:43:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+667502,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 07:00:00 PM,08/11/2022 05:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",VAN BUREN STREET between LEWIS AVENUE and STUYVESANT AVENUE,Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11221
+667500,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 07:00:00 PM,08/11/2022 05:07:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between EAST 81 STREET and EAST 82 STREET,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10028
+667487,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 09:00:00 PM,08/11/2022 04:28:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between 56 DRIVE and EAST 66 STREET, ARKANSAS DRIVE between NATIONAL DRIVE and 56 DRIVE, 56 DRIVE between ARKANSAS DRIVE and WHITMAN DRIVE, MILL AVENUE between EAST 60 PLACE and STRICKLAND AVENUE, STRICKLAND AVENUE between EAST 60 PLACE and MILL AVENUE, EAST 60 PLACE between MILL AVENUE and STRICKLAND AVENUE",Brooklyn,18,63,Television,Cable-episodic,United States of America,11234
+667482,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 07:00:00 PM,08/11/2022 04:09:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between PECK SLIP and BEEKMAN STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10038
+667476,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 08:00:00 PM,08/11/2022 04:00:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, VARET STREET between WHITE STREET and BUSHWICK AVENUE, WHITE STREET between MOORE STREET and VARET STREET, WHITE STREET between VARET STREET and COOK STREET, COOK STREET between BUSHWICK AVENUE and WHITE STREET, COOK STREET between WHITE STREET and BOGART STREET, FLUSHING AVENUE between BUSHWICK AVENUE and EVERGREEN AVENUE, FLUSHING AVENUE between EVERGREEN AVENUE and BOGART STREET, EVERGREEN AVENUE between FLUSHING AVENUE and NOLL STREET, CENTRAL AVENUE between FLUSHING AVENUE and NOLL STREET, COOK STREET between WHITE STREET and EVERGREEN AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11206
+667465,Shooting Permit,08/15/2022 07:00:00 PM,08/16/2022 05:00:00 AM,08/11/2022 03:34:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 76 STREET and EAST 78 STREET,Manhattan,"5, 6, 64, 8","17, 18, 19, 22",Film,Short,United States of America,"10019, 10020, 10021, 10022, 10028, 10065, 10075, 10103, 10128, 10152, 10154"
+667462,Shooting Permit,08/16/2022 12:00:00 PM,08/17/2022 02:00:00 AM,08/11/2022 03:22:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667418,Shooting Permit,08/18/2022 06:00:00 AM,08/18/2022 11:59:00 PM,08/11/2022 12:24:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+667417,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 11:59:00 PM,08/11/2022 12:24:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 12 STREET and NORTH 11 STREET, KENT AVENUE between NORTH 11 STREET and NORTH 10 STREET, NORTH 11 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 10 STREET, NORTH 11 STREET between WYTHE AVENUE and BERRY STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11249"
+667412,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 08:00:00 PM,08/11/2022 12:09:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+667411,Shooting Permit,08/16/2022 06:30:00 AM,08/16/2022 09:00:00 PM,08/11/2022 12:06:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between BROOME STREET and ENGERT AVENUE, BROOME STREET between HUMBOLDT STREET and MCGUINNESS BLVD SOUTH, ENGERT AVENUE between MCGUINNESS BLVD SOUTH and RUSSELL STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667408,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 08:00:00 PM,08/11/2022 11:58:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+667407,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 08:00:00 PM,08/11/2022 11:53:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+667403,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 08:00:00 PM,08/11/2022 11:25:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+667398,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 09:00:00 PM,08/11/2022 11:15:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+667397,Shooting Permit,08/17/2022 01:00:00 PM,08/18/2022 03:00:00 PM,08/11/2022 11:10:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+667377,Shooting Permit,08/13/2022 07:00:00 AM,08/13/2022 10:00:00 PM,08/11/2022 09:35:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 38 AVENUE and 40 AVENUE, 40 AVENUE between VERNON BOULEVARD and 12 STREET, 10 STREET between 40 AVENUE and 38 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11101
+667361,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 09:00:00 PM,08/11/2022 01:23:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, E 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 18 STREET between BROADWAY and 5 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+667331,Shooting Permit,08/15/2022 05:00:00 AM,08/15/2022 09:00:00 PM,08/10/2022 07:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 71 STREET and EAST 73 STREET, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 72 STREET, PARK AVENUE between EAST 70 STREET and EAST 72 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023"
+667330,Shooting Permit,08/15/2022 11:00:00 AM,08/16/2022 02:00:00 AM,08/10/2022 07:27:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between BROADWAY and RIVERSIDE DRIVE, RIVERSIDE DRIVE between WEST 138 STREET and WEST 137 STREET",Manhattan,"10, 9","26, 28, 30, 32",Film,Short,United States of America,"10027, 10030, 10031"
+667314,Shooting Permit,08/12/2022 03:00:00 PM,08/13/2022 05:00:00 AM,08/10/2022 05:42:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 174 STREET between AUDUBON AVENUE and ST NICHOLAS AVENUE, WEST 174 STREET between ST NICHOLAS AVENUE and WADSWORTH AVENUE, WEST 174 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE, ST NICHOLAS AVENUE between WEST 172 STREET and WEST 173 STREET, ST NICHOLAS AVENUE between WEST 173 STREET and WEST 174 STREET, ST NICHOLAS AVENUE between WEST 174 STREET and WEST 175 STREET, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 173 STREET and WEST 174 STREET, WADSWORTH AVENUE between WEST 174 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, BROADWAY between ST NICHOLAS AVENUE and WEST 171 STREET, BROADWAY between WEST 171 STREET and WEST 172 STREET, BROADWAY between WEST 172 STREET and WEST 173 STREET, BROADWAY between WEST 174 STREET and WEST 175 STREET",Manhattan,12,33,Television,Cable-episodic,United States of America,"10032, 10033"
+667312,Theater Load in and Load Outs,08/25/2022 12:01:00 AM,08/26/2022 06:00:00 AM,08/10/2022 05:38:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+667311,Theater Load in and Load Outs,08/24/2022 12:01:00 AM,08/24/2022 11:59:00 PM,08/10/2022 05:36:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+667310,Theater Load in and Load Outs,08/21/2022 12:01:00 AM,08/22/2022 06:00:00 AM,08/10/2022 05:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+667308,Theater Load in and Load Outs,08/19/2022 12:01:00 AM,08/20/2022 06:00:00 AM,08/10/2022 05:32:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+667296,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 07:00:00 PM,08/10/2022 04:31:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between PRINCE STREET and EAST HOUSTON STREET,Manhattan,"2, 3",5,WEB,Not Applicable,United States of America,"10002, 10012"
+667263,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 09:00:00 PM,08/10/2022 03:18:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, DUNHAM PLACE between SOUTH 6 STREET and BROADWAY, KENT AVENUE between SOUTH 3 STREET and BROADWAY, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 4 STREET and SOUTH 5 STREET, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, BROADWAY between KENT AVENUE and DUNHAM PLACE, BROADWAY between WYTHE AVENUE and BERRY STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+667255,Shooting Permit,08/18/2022 06:00:00 AM,08/18/2022 08:00:00 PM,08/10/2022 02:58:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+667254,Shooting Permit,08/17/2022 06:00:00 AM,08/17/2022 08:00:00 PM,08/10/2022 02:57:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+667252,Shooting Permit,08/18/2022 07:00:00 AM,08/18/2022 09:00:00 PM,08/10/2022 02:55:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667249,Shooting Permit,08/12/2022 04:00:00 PM,08/13/2022 05:30:00 AM,08/10/2022 02:41:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK WEST, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, GRAMERCY PARK NORTH between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between GRAMERCY PARK NORTH and EAST 22 STREET, EAST 23 STREET between 2 AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, IRVING PLACE between EAST 18 STREET and EAST 19 STREET, EAST 19 STREET between IRVING PLACE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010, 10016"
+667246,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 11:00:00 PM,08/10/2022 02:31:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667241,Shooting Permit,08/14/2022 03:00:00 AM,08/14/2022 02:00:00 PM,08/10/2022 02:19:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+667240,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 11:59:00 PM,08/10/2022 02:19:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+667228,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 11:00:00 PM,08/10/2022 02:07:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667227,Shooting Permit,08/23/2022 07:00:00 AM,08/23/2022 09:00:00 PM,08/10/2022 02:03:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667226,Shooting Permit,08/22/2022 07:00:00 AM,08/22/2022 09:00:00 PM,08/10/2022 02:03:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667217,Shooting Permit,08/17/2022 07:00:00 AM,08/17/2022 09:00:00 PM,08/10/2022 01:46:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667214,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 09:00:00 PM,08/10/2022 01:40:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667213,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 09:00:00 PM,08/10/2022 01:40:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667212,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 11:00:00 PM,08/10/2022 01:39:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CROWN STREET and CARROLL STREET, CROWN STREET between BEDFORD AVENUE and FRANKLIN AVENUE",Brooklyn,9,71,Television,News,United States of America,11225
+667211,Shooting Permit,08/17/2022 06:00:00 AM,08/17/2022 11:00:00 PM,08/10/2022 01:38:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CROWN STREET and CARROLL STREET, CROWN STREET between BEDFORD AVENUE and FRANKLIN AVENUE",Brooklyn,9,71,Television,News,United States of America,11225
+667210,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 11:00:00 PM,08/10/2022 01:37:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CROWN STREET and CARROLL STREET, CROWN STREET between BEDFORD AVENUE and FRANKLIN AVENUE",Brooklyn,9,71,Television,News,United States of America,11225
+667185,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 11:00:00 PM,08/10/2022 12:43:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and LORIMER STREET, NORMAN AVENUE between LORIMER STREET and MANHATTAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667176,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 09:00:00 PM,08/10/2022 12:20:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667141,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 09:00:00 PM,08/10/2022 10:32:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+667137,Shooting Permit,08/15/2022 09:00:00 AM,08/15/2022 06:00:00 PM,08/10/2022 10:24:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","18 AVENUE between 64 STREET and 63 STREET, 64 STREET between 18 AVENUE and 17 AVENUE",Brooklyn,11,62,Theater,Theater,United States of America,11204
+667134,Shooting Permit,08/14/2022 09:00:00 AM,08/14/2022 06:00:00 PM,08/10/2022 10:16:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","18 AVENUE between 64 STREET and 63 STREET, 64 STREET between 18 AVENUE and 17 AVENUE",Brooklyn,11,62,Theater,Theater,United States of America,11204
+667131,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 07:00:00 PM,08/10/2022 09:56:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",GATES AVENUE between CAMBRIDGE PLACE and ST JAMES PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+667130,Shooting Permit,08/15/2022 07:00:00 AM,08/15/2022 10:00:00 PM,08/10/2022 09:55:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667122,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 11:00:00 PM,08/10/2022 09:26:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMPTON AVENUE between NEWMAN AVENUE and STEPHENS AVENUE, NEWMAN AVENUE between COMPTON AVENUE and OBRIEN AVENUE, PATTERSON AVE between WHITE PLAINS ROAD and NEWMAN AVE, OBRIEN AVENUE between NEWMAN AVENUE and STEPHENS AVENUE, STEPHENS AVENUE between OBRIEN AVENUE and GILDERSLEEVE AVENUE, OBRIEN AVENUE between WHITE PLAINS ROAD and NEWMAN AVENUE, NEWMAN AVENUE between OBRIEN AVENUE and GILDERSLEEVE AVENUE, SOUNDVIEW AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, STEPHENS AVENUE between COMPTON AVENUE and OBRIEN AVENUE, SEWARD AVENUE between STICKBALL BOULEVARD and PUGSLEY AVENUE, STICKBALL BOULEVARD between SEWARD AVENUE and RANDALL AVENUE, RANDALL AVENUE between STICKBALL BOULEVARD and PUGSLEY AVENUE, WHITE PLAINS ROAD between PATTERSON AVENUE and OBRIEN AVENUE",Bronx,9,43,Television,Episodic series,United States of America,10473
+667115,Theater Load in and Load Outs,08/27/2022 12:01:00 AM,08/27/2022 11:59:00 PM,08/10/2022 09:04:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+667114,Shooting Permit,08/13/2022 12:00:00 AM,08/13/2022 02:00:00 PM,08/10/2022 09:04:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+667110,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 10:00:00 PM,08/10/2022 08:28:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+667109,Shooting Permit,08/16/2022 12:00:00 PM,08/17/2022 02:00:00 AM,08/10/2022 08:25:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+667107,Shooting Permit,08/12/2022 03:00:00 PM,08/12/2022 11:59:00 PM,08/10/2022 08:14:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+667104,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 11:00:00 PM,08/10/2022 06:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between GATES AVENUE and PALMETTO STREET, MYRTLE AVENUE between PALMETTO STREET and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WOODBINE STREET and MYRTLE AVENUE, WOODBINE STREET between ST NICHOLAS AVENUE and CYPRESS AVENUE, 31 STREET between 37 AVENUE and 38 AVENUE, 37 AVENUE between 31 STREET and 32 STREET, 32 STREET between 37 AVENUE and 36 AVENUE, 37 AVENUE between 32 STREET and 34 STREET",Queens,"1, 5","104, 114",Film,Feature,United States of America,"11101, 11106, 11385"
+667103,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 10:00:00 PM,08/10/2022 06:44:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+667102,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 10:00:00 PM,08/10/2022 06:44:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+667101,Shooting Permit,08/14/2022 06:00:00 AM,08/14/2022 10:00:00 PM,08/10/2022 06:44:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+667062,Shooting Permit,08/12/2022 09:00:00 AM,08/13/2022 01:00:00 AM,08/09/2022 06:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+667058,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 09:00:00 PM,08/09/2022 06:07:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON SQUARE between SUTTON PLACE and RIVERVIEW TERRACE, EAST 59 STREET between SUTTON PLACE and RIVERVIEW TERRACE, 1 AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 59 STREET between 1 AVENUE and YORK AVENUE, EAST 57 STREET between SUTTON PLACE and FIRST AVENUE, EAST 57 STREET between FIRST AVENUE and QUEENSBORO BRIDGE APPROACH, EAST 57 STREET between 2 AVENUE and 3 AVENUE, EAST 57 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"6, 8","17, 19",Television,Cable-episodic,United States of America,10022
+667045,Theater Load in and Load Outs,08/16/2022 12:01:00 AM,08/17/2022 11:59:00 PM,08/09/2022 05:02:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,20,Theater,Theater,United States of America,10023
+667042,Shooting Permit,08/16/2022 07:00:00 AM,08/16/2022 09:00:00 PM,08/09/2022 04:47:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 49 STREET and EAST 45 STREET, EAST 46 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 44 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 42 STREET and EAST 41 STREET, EAST 43 STREET between 3 AVENUE and 2 AVENUE, COVERT ST between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Manhattan,"4, 5, 6","104, 14, 17, 83",Television,Episodic series,United States of America,"10017, 10170, 11237, 11385"
+667038,Shooting Permit,08/14/2022 05:00:00 PM,08/15/2022 02:00:00 AM,08/09/2022 04:37:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WALKER STREET and WHITE STREET, 6 AVENUE between WALKER STREET and LISPENARD STREET",Manhattan,1,1,Film,Short,United States of America,10013
+667031,Shooting Permit,08/13/2022 09:00:00 AM,08/13/2022 09:00:00 PM,08/09/2022 04:11:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE,Brooklyn,4,83,Film,Short,United States of America,11206
+667029,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 10:00:00 PM,08/09/2022 04:10:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and BOERUM PLACE, ATLANTIC AVENUE between SMITH STREET and BOND STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11217"
+667026,Theater Load in and Load Outs,08/21/2022 12:01:00 AM,08/21/2022 11:59:00 PM,08/09/2022 04:06:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+667018,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 09:00:00 PM,08/09/2022 03:42:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCY AVENUE between HOPKINS STREET and ELLERY STREET, MARCY AVENUE between HOPKINS STREET and FLUSHING AVENUE, TOMPKINS AVENUE between HOPKINS STREET and FLUSHING AVENUE, TOMPKINS AVENUE between HOPKINS STREET and ELLERY STREET",Brooklyn,3,79,Television,Cable-episodic,United States of America,11206
+667012,Shooting Permit,08/12/2022 11:00:00 AM,08/12/2022 11:59:00 PM,08/09/2022 03:33:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 10 AVENUE and 11 AVENUE, WALKER STREET between CORTLANDT ALLEY and BROADWAY, WALKER STREET between CORTLANDT ALLEY and LAFAYETTE STREET",Manhattan,"1, 2, 3, 4","1, 10, 5, 6",Film,Short,United States of America,"10011, 10013, 10014"
+667010,Shooting Permit,08/12/2022 08:00:00 AM,08/12/2022 11:00:00 PM,08/09/2022 03:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+667000,Theater Load in and Load Outs,08/24/2022 12:01:00 AM,08/30/2022 11:59:00 PM,08/09/2022 03:08:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 164 STREET between RIVER AVENUE and JEROME AVENUE, EAST 165 STREET between RIVER AVENUE and JEROME AVENUE",Bronx,4,44,Theater,Theater,United States of America,"10451, 10452"
+666996,Shooting Permit,08/17/2022 06:00:00 AM,08/17/2022 10:00:00 PM,08/09/2022 02:50:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+666995,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 10:00:00 PM,08/09/2022 02:47:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+666993,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 10:00:00 PM,08/09/2022 02:40:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+666967,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 09:00:00 PM,08/09/2022 01:50:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAM STREET between 72 AVENUE and ASCAN AVENUE, INGRAM STREET between 72 AVENUE and ASCAN AVENUE, INGRAM STREET between 72 AVENUE and ASCAN AVENUE, 72 AVENUE between INGRAM STREET and HARROW STREET, 72 AVENUE between INGRAM STREET and JUNO STREET, ASCAN AVENUE between INGRAM STREET and GREENWAY SOUTH, ASCAN AVENUE between GREENWAY SOUTH and WINTER STREET, ASCAN AVENUE between WINTER STREET and SEASONGOOD ROAD, QUEENS BOULEVARD between 72 DRIVE and 73 AVENUE, QUEENS BOULEVARD between 73 AVENUE and 75 AVENUE, QUEENS BOULEVARD between 75 AVENUE and 76 ROAD",Queens,6,112,Television,Cable-episodic,United States of America,11375
+666962,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 08:00:00 PM,08/09/2022 01:36:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between VERNON BOULEVARD and 12 STREET, 10 STREET between 40 AVENUE and 41 AVENUE, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+666950,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 10:00:00 PM,08/09/2022 01:01:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+666943,Theater Load in and Load Outs,08/15/2022 06:00:00 AM,08/18/2022 11:59:00 PM,08/09/2022 12:40:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+666935,Shooting Permit,08/13/2022 05:00:00 AM,08/13/2022 02:00:00 PM,08/09/2022 12:02:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEROME AVENUE between MINERVA PLACE and WEST 195 STREET, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, JEROME AVENUE between MORRIS AVENUE and EAST 196 STREET, JEROME AVENUE between EAST 196 STREET and EAST 198 STREET, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, EAST 198 STREET between JEROME AVENUE and GRAND CONCOURSE, GRAND CONCOURSE between MINERVA PLACE and EAST KINGSBRIDGE ROAD, BEDFORD PARK BLVD WEST between GOULDEN AVENUE and PAUL AVENUE, PAUL AVENUE between BEDFORD PARK BLVD WEST and WEST 205 STREET, EAST 196 STREET between JEROME AVENUE and MORRIS AVENUE",Bronx,7,52,Film,Feature,United States of America,"10458, 10468"
+666927,Shooting Permit,08/12/2022 06:00:00 AM,08/12/2022 10:00:00 PM,08/09/2022 11:52:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 73 STREET and EAST 72 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023"
+666904,Shooting Permit,08/11/2022 08:00:00 PM,08/12/2022 01:00:00 AM,08/09/2022 10:51:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 9 STREET between 5 AVENUE and 6 AVENUE,Manhattan,2,6,Television,Cable-episodic,United States of America,10011
+666903,Shooting Permit,08/11/2022 04:00:00 PM,08/12/2022 05:00:00 AM,08/09/2022 10:51:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WEST 15 STREET between 7 AVENUE and 8 AVENUE, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 14 STREET and WEST 15 STREET, 7 AVENUE between WEST 15 STREET and WEST 19 STREET",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+666883,Shooting Permit,08/12/2022 08:00:00 AM,08/12/2022 11:00:00 PM,08/09/2022 09:40:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+666881,Shooting Permit,08/12/2022 09:00:00 PM,08/13/2022 02:30:00 AM,08/09/2022 09:39:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEDGWICK AVENUE between DEPOT PLACE and WEST 167 STREET, WEST 167 STREET between SEDGWICK AVENUE and WEST 168 STREET",Bronx,"4, 7, 8","44, 52",Film,Feature,United States of America,"10452, 10468"
+666880,Shooting Permit,08/11/2022 08:00:00 AM,08/11/2022 11:00:00 PM,08/09/2022 09:38:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+666867,Shooting Permit,08/12/2022 06:00:00 AM,08/12/2022 08:00:00 PM,08/09/2022 08:30:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 STREET between 3 AVENUE and 2 AVENUE, HANCOCK STREET between THROOP AVENUE and TOMPKINS AVENUE",Brooklyn,"3, 6","78, 79",Film,Feature,United States of America,"11215, 11216"
+666864,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 10:00:00 PM,08/09/2022 08:27:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+666861,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 09:00:00 PM,08/09/2022 08:13:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+666859,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 09:00:00 PM,08/09/2022 08:07:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+666857,Shooting Permit,08/11/2022 06:00:00 AM,08/11/2022 08:00:00 PM,08/09/2022 07:42:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR STREET between ALBANY AVENUE and MARCUS GARVEY BOULEVARD, WASHINGTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,"2, 3","79, 88",Film,Feature,United States of America,"11205, 11216"
+666853,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 11:00:00 PM,08/09/2022 06:03:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and NOLL STREET, FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+666814,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 08:30:00 PM,08/08/2022 06:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between VAN SINDEREN AVENUE and EASTERN PARKWAY, SACKMAN STREET between FULTON STREET and HERKIMER STREET, VAN SINDEREN AVENUE between HERKIMER STREET and ATLANTIC AVENUE, HAVENS PLACE between HERKIMER STREET and ATLANTIC AVENUE, HERKIMER STREET between HAVENS PLACE and VAN SINDEREN AVENUE, VAN SINDEREN AVENUE between FULTON STREET and HERKIMER STREET, WILLIAMS PLACE between HERKIMER STREET and ATLANTIC AVENUE, HERKIMER STREET between VAN SINDEREN AVENUE and WILLIAMS PLACE, HERKIMER STREET between WILLIAMS PLACE and WILLIAMS AVENUE, WILLIAMS PLACE between FULTON STREET and HERKIMER STREET, FULTON STREET between WILLIAMS AVENUE and WILLIAMS PLACE, SOMERS STREET between EASTERN PARKWAY and BROADWAY, EASTERN PARKWAY between SOMERS STREET and TRUXTON STREET, SACKMAN STREET between SOMERS STREET and TRUXTON STREET, TRUXTON STREET between SACKMAN STREET and CONWAY STREET, TRUXTON ST between SACKMAN STREET and EASTERN PARKWAY",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11233"
+666807,Shooting Permit,08/12/2022 03:00:00 PM,08/13/2022 05:00:00 AM,08/08/2022 05:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between PARKSIDE AVENUE and CATON AVENUE, CATON AVENUE between OCEAN AVENUE and ST PAULS PLACE, CROOKE AVENUE between OCEAN AVENUE and ST PAULS PLACE, WOODRUFF AVENUE between OCEAN AVENUE and ST PAULS PLACE, PARKSIDE AVENUE between PARK CIRCLE and PARADE PLACE, FLATBUSH AVENUE between EMPIRE BOULEVARD and LEFFERTS AVENUE",Brooklyn,"14, 9","70, 71",Television,Episodic series,United States of America,"11225, 11226"
+666787,Shooting Permit,08/11/2022 12:00:00 PM,08/12/2022 04:00:00 AM,08/08/2022 04:25:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+666777,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 11:00:00 PM,08/08/2022 04:02:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666774,Shooting Permit,08/11/2022 09:00:00 AM,08/11/2022 09:00:00 PM,08/08/2022 03:50:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between STATE STREET and ATLANTIC AVENUE, AMITY STREET between HENRY STREET and CLINTON STREET, HENRY STREET between ATLANTIC AVENUE and PACIFIC STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, COURT STREET between MONTAGUE STREET and JORALEMON STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE STREET between CLINTON STREET and COURT STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Television,Cable-episodic,United States of America,11201
+666770,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 11:00:00 PM,08/08/2022 03:40:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666768,Shooting Permit,08/11/2022 08:00:00 AM,08/11/2022 11:00:00 PM,08/08/2022 03:32:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between AVENUE J and AVENUE M, CAMPUS ROAD between EAST 26 STREET and EAST 27 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,"11210, 11230"
+666764,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 07:00:00 PM,08/08/2022 03:24:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET STREET between DIVISION STREET and EAST BROADWAY, EAST BROADWAY between MARKET STREET and CATHERINE STREET",Manhattan,"1, 2, 3","1, 5, 6, 9",Film,Short,United States of America,"10002, 10004, 10012"
+666756,Shooting Permit,08/16/2022 06:00:00 AM,08/16/2022 06:00:00 PM,08/08/2022 03:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLOTTE STREET between BOSTON ROAD and SEABURY PLACE, CHARLOTTE STREET between BOSTON ROAD and CROTONA PARK EAST",Bronx,3,42,Television,Pilot,United States of America,10460
+666724,Shooting Permit,08/11/2022 11:00:00 AM,08/11/2022 11:30:00 PM,08/08/2022 01:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, CALYER STREET between CLIFFORD PLACE and GUERNSEY STREET, GUERNSEY STREET between OAK STREET and CALYER STREET, MESEROLE AVENUE between BANKER STREET and GUERNSEY STREET, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666719,Shooting Permit,08/10/2022 06:00:00 AM,08/10/2022 11:59:00 PM,08/08/2022 01:46:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+666711,Shooting Permit,08/12/2022 09:00:00 AM,08/13/2022 01:00:00 AM,08/08/2022 01:21:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODHAVEN BOULEVARD between MYRTLE AVENUE and FOREST PARK DRIVE, MYRTLE AVE between WOODHAVEN BOULEVARD and FOREST PARK DR, MYRTLE AVENUE between MEMORIAL DRIVE and FREEDOM DRIVE, MEMORIAL DR between MYRTLE AVENUE and Dead End",Queens,"5, 6, 82, 9","102, 104, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+666702,Rigging Permit,08/12/2022 09:00:00 AM,08/12/2022 06:00:00 PM,08/08/2022 01:03:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+666671,Shooting Permit,08/11/2022 06:00:00 AM,08/11/2022 10:00:00 PM,08/08/2022 12:04:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+666620,Shooting Permit,08/10/2022 08:00:00 AM,08/11/2022 01:00:00 AM,08/08/2022 10:26:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 24 STREET between 11 AVENUE and 10 AVENUE, WEST 23 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+666615,Shooting Permit,08/11/2022 06:30:00 AM,08/11/2022 08:30:00 PM,08/08/2022 10:08:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between COOPER STREET and SCHAEFER STREET, KNICKERBOCKER AVENUE between SCHAEFER STREET and COOPER STREET, DECATUR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between HANCOCK STREET and HALSEY STREET, HALSEY STREET between IRVING AVENUE and WYCKOFF AVENUE, WEIRFIELD STREET between IRVING AVENUE and KNICKERBOCKER AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+666610,Shooting Permit,08/11/2022 08:00:00 AM,08/11/2022 10:00:00 PM,08/08/2022 09:43:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between NORTH MOORE STREET and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Made for TV/mini-series,United States of America,10013
+666609,Shooting Permit,08/10/2022 09:00:00 AM,08/10/2022 11:59:00 PM,08/08/2022 09:30:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCIAL STREET between CLAY STREET and BOX STREET, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and CLAY STREET, MANHATTAN AVENUE between COMMERCIAL STREET and DEAD END, PROVOST STREET between PAIDGE AVENUE and GREEN STREET, PAIDGE AVENUE between CLAY STREET and MCGUINESS BOULEVARD, PAIDGE AVENUE between CLAY STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666607,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 09:00:00 PM,08/08/2022 09:25:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST LOOP ROAD between NORTH LOOP ROAD and SOUTH LOOP ROAD, 36 AVENUE between 12 STREET and 21 STREET",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11106"
+666605,Shooting Permit,08/10/2022 02:00:00 PM,08/11/2022 05:00:00 AM,08/08/2022 09:06:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 15 STREET and WEST 19 STREET, 8 AVENUE between WEST 14 STREET and WEST 15 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, WEST 14 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WEST 15 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+666601,Shooting Permit,08/11/2022 06:00:00 AM,08/11/2022 09:00:00 PM,08/08/2022 08:27:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 175 STREET and WEST 177 STREET,Manhattan,12,33,Still Photography,Not Applicable,United States of America,10033
+666597,Shooting Permit,08/09/2022 10:00:00 PM,08/10/2022 10:00:00 AM,08/08/2022 05:47:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between QUINCY STREET and LEXINGTON AVENUE,Brooklyn,3,79,Film,Feature,United States of America,11216
+666576,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 09:00:00 PM,08/07/2022 07:13:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+666575,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 11:00:00 PM,08/07/2022 06:57:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and NOLL STREET, FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+666574,Shooting Permit,08/11/2022 09:00:00 AM,08/12/2022 01:00:00 AM,08/07/2022 06:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+666564,Theater Load in and Load Outs,08/12/2022 12:01:00 AM,08/13/2022 06:00:00 AM,08/07/2022 04:09:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+666563,Theater Load in and Load Outs,08/09/2022 12:01:00 AM,08/10/2022 11:59:00 PM,08/07/2022 03:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+666562,Theater Load in and Load Outs,09/02/2022 12:01:00 AM,09/04/2022 06:00:00 AM,08/07/2022 03:55:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+666534,Shooting Permit,08/11/2022 10:00:00 AM,08/11/2022 11:59:00 PM,08/07/2022 10:32:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","ROCKAWAY BEACH DRIVE between BEACH 108 STREET and BEACH 109 STREET, BEACH 108 STREET between ROCKAWAY BEACH BOULEVARD and ROCKAWAY BEACH DRIVE, BEACH 108 STREET between ROCKAWAY BEACH DRIVE and SHORE FRONT PARKWAY",Queens,14,100,Commercial,Commercial,United States of America,11694
+666476,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 11:50:00 PM,08/05/2022 08:11:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 AVENUE between WEST 31 STREET and WEST 33 STREET,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+666463,Shooting Permit,08/11/2022 08:00:00 AM,08/12/2022 12:00:00 AM,08/05/2022 05:35:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","3RD AVE between WHITESTONE EXPY and 147 ST, WHITESTONE EXPY between 3 AVE and 4 AVE, WHITESTONE EXPY between 3 AVE and 8 AVE, 154 STREET between POWELLS COVE BOULEVARD and 11 AVENUE, 10 AVENUE between 152 STREET and 154 STREET, 152 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between 152 STREET and 154 STREET, 12 AVENUE between 152 STREET and 154 STREET, 154 STREET between 11 AVENUE and 12 AVENUE",Queens,7,109,Television,Episodic series,United States of America,11357
+666446,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 11:00:00 PM,08/05/2022 04:39:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and NOLL STREET, FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+666440,Shooting Permit,08/10/2022 10:00:00 AM,08/11/2022 02:00:00 AM,08/05/2022 04:20:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","DRIGGS AVENUE between SOUTH 9 STREET and DIVISION AVENUE, BROADWAY between ROEBLING ST. and HAVEMEYER ST, BROADWAY between BEDFORD AVENUE and DRIGGS AVENUE, BEDFORD AVENUE between BROADWAY and SOUTH 4 STREET, SOUTH 5 STREET between BEDFORD AVENUE and WYTHE AVENUE, SOUTH 6 STREET between BEDFORD AVENUE and BERRY STREET, BROADWAY between BERRY STREET and BEDFORD AVENUE, HAVEMEYER STREET between BROADWAY and DIVISION AVENUE, SOUTH 5 STREET between HAVEMEYER STREET and MARCY AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, BROADWAY between ROEBLING ST. and HAVEMEYER ST.",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+666425,Shooting Permit,08/09/2022 05:00:00 AM,08/09/2022 06:30:00 PM,08/05/2022 03:54:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between PACIFIC STREET and BERGEN STREET, COURT STREET between FIRST PLACE and THIRD PLACE",Brooklyn,"6, 8","76, 77",Commercial,Commercial,United States of America,"11231, 11238"
+666408,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 11:00:00 PM,08/05/2022 03:26:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between AVENUE K and AVENUE L, OCEAN AVENUE between AVENUE J and AVENUE M, CAMPUS ROAD between EAST 27 STREET and EAST 26 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,"11210, 11230"
+666402,Shooting Permit,08/09/2022 07:00:00 PM,08/10/2022 06:00:00 AM,08/05/2022 03:04:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between COFFEY STREET and VAN DYKE STREET, COFFEY STREET between EAST RIVER and FERRIS STREET",Brooklyn,6,76,Television,Not Applicable,United States of America,11231
+666397,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 11:59:00 PM,08/05/2022 02:55:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET, 47TH AVENUE between 29TH STREET and 30TH STREET, 47 AVENUE between 30 STREET and 30 PLACE, 30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+666396,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 PM,08/05/2022 02:54:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between MULBERRY STREET and MOTT STREET, BROOME STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between KENMARE STREET and GRAND STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10012, 10013"
+666383,Theater Load in and Load Outs,08/16/2022 12:01:00 AM,08/17/2022 05:00:00 AM,08/05/2022 02:33:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+666368,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 11:00:00 PM,08/05/2022 01:52:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","139 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET, 138 STREET between 15 AVENUE and 14 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11356, 11357"
+666355,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 09:00:00 PM,08/05/2022 01:20:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, PORTER AVENUE between INGRAHAM STREET and JOHNSON AVENUE, ST MARKS PLACE between 1 AVENUE and 2 AVENUE",Brooklyn,"1, 3","9, 90",Film,Feature,United States of America,"10003, 11237"
+666344,Shooting Permit,08/10/2022 02:00:00 PM,08/11/2022 05:00:00 AM,08/05/2022 12:26:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIGHTON 3 STREET between OCEAN VIEW AVENUE and BRIGHTON BEACH AVENUE, BRIGHTON 3 STREET between BRIGHTON BEACH AVENUE and BRIGHTWATER COURT, BRIGHTON 2 STREET between OCEAN VIEW AVENUE and BRIGHTON BEACH AVENUE, BRIGHTON 2 STREET between BRIGHTON BEACH AVENUE and BRIGHTWATER COURT, BRIGHTON BEACH AVENUE between BRIGHTON 2 STREET and BRIGHTON 3 STREET, BRIGHTON BEACH AVENUE between BRIGHTON 2 STREET and BRIGHTON 1 PLACE, WEST 12 STREET between SURF AVENUE and DEAD END, STILLWELL AVENUE between SURF AVENUE and RIEGELMANN BOARDWALK, SURF AVENUE between WEST 12 STREET and WEST 10 STREET",Brooklyn,13,60,Television,Episodic series,United States of America,"11224, 11235"
+666337,Shooting Permit,08/09/2022 02:00:00 PM,08/10/2022 04:00:00 AM,08/05/2022 11:54:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE STREET between BEDFORD STREET and BLEECKER STREET, BLEECKER STREET between GROVE STREET and BARROW STREET, HUDSON STREET between BARROW STREET and CHRISTOPHER STREET, BLEECKER STREET between GROVE STREET and WEST 10 STREET, CHRISTOPHER STREET between BLEECKER STREET and 7 AVENUE SOUTH, 6 AVENUE between WEST 16 STREET and WEST 18 STREET, 7 AVENUE between WEST 15 STREET and WEST 16 STREET, 7 AVENUE between WEST 16 STREET and WEST 17 STREET, WEST 16 STREET between 5 AVENUE and 6 AVENUE, WEST 16 STREET between 6 AVENUE and 7 AVENUE, WEST 14 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WEST 17 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"2, 4, 5","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+666306,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 07:00:00 PM,08/05/2022 10:16:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+666305,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 07:00:00 PM,08/05/2022 10:14:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",IMLAY STREET between VERONA STREET and COMMERCE STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+666302,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 07:00:00 PM,08/05/2022 10:03:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between LEROY STREET and CLARKSON STREET, LEROY STREET between WEST STREET and WASHINGTON STREET, LEROY STREET between WASHINGTON STREET and GREENWICH STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between LEROY STREET and MORTON STREET, CLARKSON STREET between WEST STREET and WASHINGTON STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,10014
+666300,Shooting Permit,08/09/2022 10:00:00 AM,08/10/2022 12:00:00 AM,08/05/2022 10:00:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLASSON AVENUE between PARK AVENUE and MYRTLE AVENUE, CLASSON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, MYRTLE AVENUE between EMERSON PLACE and CLASSON AVENUE",Brooklyn,"2, 3","79, 88",Film,Feature,United States of America,11205
+666286,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 11:30:00 PM,08/05/2022 09:07:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 1 STREET between BERRY STREET and BEDFORD AVENUE, GRAND STREET between WYTHE AVENUE and BEDFORD AVENUE, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, NORTH 4 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, KENT AVENUE between NORTH 4 STREET and NORTH 5 STREET, KENT AVENUE between NORTH 3 STREET and NORTH 4 STREET, COMMERCIAL STREET between CLAY STREET and BOX STREET, BOX STREET between COMMERCIAL STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and CLAY STREET, ASH STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, PROVOST STREET between PAIDGE AVENUE and GREEN STREET, PAIDGE AVENUE between CLAY STREET and DEAD END, MANHATTAN AVENUE between COMMERCIAL STREET and DEAD END, PAIDGE AVENUE between CLAY STREET and MCGUINNESS BOULEVARD",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+666283,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 10:00:00 PM,08/05/2022 08:57:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 55 STREET and WEST 56 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, 7 AVENUE between WEST 56 STREET and WEST 57 STREET, BROADWAY between WEST 54 STREET and WEST 57 STREET, WEST 55 STREET between 7 AVENUE and BROADWAY, 7 AVENUE between WEST 58 STREET and CPS, CPS between 7 AVENUE and COLUMBUS CIRCLE, CPS between 6 AVENUE and 7 AVENUE, WEST 24 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 24 STREET and WEST 26 STREET, WEST 54 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5, 64","10, 18, 22",Television,Episodic series,United States of America,"10001, 10011, 10019, 10106"
+666280,Shooting Permit,08/12/2022 07:00:00 AM,08/12/2022 07:00:00 PM,08/05/2022 08:22:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 12 STREET between WYTHE AVENUE and BERRY STREET,Brooklyn,1,94,Film,Feature,United States of America,11249
+666279,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 07:00:00 PM,08/05/2022 08:18:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 12 STREET between WYTHE AVENUE and BERRY STREET,Brooklyn,1,94,Film,Feature,United States of America,11249
+666269,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 04:00:00 PM,08/05/2022 12:03:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between QUINCY STREET and LEXINGTON AVENUE,Brooklyn,3,79,Film,Feature,United States of America,11216
+666264,Shooting Permit,08/09/2022 08:30:00 AM,08/09/2022 10:30:00 PM,08/04/2022 11:15:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+666232,Shooting Permit,08/15/2022 06:00:00 AM,08/15/2022 08:00:00 PM,08/04/2022 07:52:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEEKMAN STREET between WATER STREET and FRONT STREET, SOUTH STREET between BEEKMAN STREET and FULTON STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10038
+666223,Shooting Permit,08/09/2022 07:00:00 AM,08/10/2022 01:00:00 AM,08/04/2022 06:10:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and GUERNSEY STREET, CALYER STREET between DIAMOND STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, LORIMER STREET between MESEROLE AVENUE and CALYER STREET, LORIMER STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666219,Shooting Permit,08/09/2022 10:00:00 AM,08/10/2022 02:00:00 AM,08/04/2022 05:26:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+666203,Shooting Permit,08/08/2022 05:00:00 AM,08/08/2022 06:00:00 PM,08/04/2022 04:23:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","SANDS STREET between PEARL STREET and ADAMS STREET, NORTH 9 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,"1, 2","84, 94",Commercial,Commercial,United States of America,"11201, 11249"
+666189,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 10:00:00 PM,08/04/2022 03:54:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+666188,Shooting Permit,08/10/2022 06:00:00 AM,08/10/2022 09:00:00 PM,08/04/2022 03:49:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUSSON AVENUE between DEAD END and GILDERSLEEVE AVENUE, GILDERSLEEVE AVENUE between BETTS AVENUE and PUGSLEY AVENUE, GILDERSLEEVE AVENUE between PUGSLEY AVENUE and STEPHENS AVENUE, PUGSLEY AVENUE between GILDERSLEEVE AVENUE and CORNELL AVENUE, SOUNDVIEW AVENUE between NEWMAN AVENUE and DEAD END, SEWARD AVENUE between STICKBALL BOULEVARD and PUGSLEY AVENUE, STICKBALL BOULEVARD between SEWARD AVENUE and RANDALL AVENUE, RANDALL AVENUE between PUGSLEY AVENUE and STICKBALL BOULEVARD",Bronx,9,43,Television,Episodic series,United States of America,10473
+666187,Shooting Permit,08/12/2022 01:00:00 PM,08/13/2022 02:00:00 AM,08/04/2022 03:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between MILTON STREET and NOBLE STREET, NOBLE STREET between FRANKLIN STREET and WEST STREET, MANHATTAN AVENUE between KENT STREET and NOBLE STREET, NOBLE STREET between MANHATTAN AVENUE and FRANKLIN STREET, LORIMER STREET between NOBLE STREET and CALYER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+666185,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 10:00:00 PM,08/04/2022 03:42:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+666179,Shooting Permit,08/08/2022 09:00:00 AM,08/09/2022 01:00:00 AM,08/04/2022 03:32:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+666172,Shooting Permit,08/06/2022 02:00:00 PM,08/07/2022 03:00:00 AM,08/04/2022 03:12:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY STREET between CLINTON STREET and COURT STREET, CARROLL STREET between CLINTON STREET and COURT STREET, CLINTON STREET between 2 PLACE and UNION STREET, COURT STREET between SACKETT STREET and 2 PLACE, FRONT STREET between WASHINGTON STREET and ADAMS STREET, FRONT STREET between ADAMS STREET and PEARL STREET, WATER STREET between ADAMS STREET and WASHINGTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,"2, 6","76, 84",Television,Not Applicable,United States of America,"11201, 11231"
+666159,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 08:00:00 PM,08/04/2022 02:29:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 24 STREET between 11 AVENUE and 10 AVENUE, WEST 23 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+666139,Shooting Permit,08/08/2022 10:00:00 AM,08/08/2022 11:59:00 PM,08/04/2022 01:07:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between PARK AVENUE and MADISON AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 39 STREET and EAST 38 STREET, PARK AVENUE between EAST 40 STREET and EAST 39 STREET, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 55 STREET and EAST 48 STREET, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 53 STREET and WEST 54 STREET, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, WEST 53 STREET between 7 AVENUE and BROADWAY, EAST 41 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Cable-episodic,United States of America,"10016, 10017, 10019, 10022, 10152, 10171"
+666136,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 AM,08/04/2022 01:03:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between FRONT STREET and YORK STREET, WASHINGTON STREET between PLYMOUTH STREET and WATER STREET",Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+666110,Shooting Permit,08/10/2022 12:00:00 AM,08/10/2022 11:00:00 AM,08/04/2022 11:54:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+666105,Shooting Permit,08/09/2022 12:00:00 PM,08/09/2022 11:59:00 PM,08/04/2022 11:46:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+666097,Shooting Permit,08/06/2022 06:00:00 AM,08/06/2022 02:00:00 PM,08/04/2022 11:25:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","JEROME AVENUE between MINERVA PLACE and WEST 195 STREET, JEROME AVENUE between EAST 198 STREET and MINERVA PLACE, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, JEROME AVENUE between EAST 196 STREET and EAST 198 STREET, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, EAST 198 STREET between GRAND CONCOURSE and JEROME AVENUE, GRAND CONCOURSE between MINERVA PLACE and EAST KINGSBRIDGE ROAD, BEDFORD PARK BLVD WEST between GOULDEN AVENUE and PAUL AVENUE, PAUL AVENUE between BEDFORD PARK BLVD WEST and WEST 205 STREET",Bronx,7,52,Film,Feature,United States of America,"10458, 10468"
+666089,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 09:00:00 PM,08/04/2022 10:59:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+666076,Shooting Permit,08/10/2022 06:00:00 AM,08/10/2022 09:00:00 PM,08/04/2022 10:23:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 17 STREET and EAST 18 STREET, FOSTER AVENUE between EAST 18 STREET and EAST 19 STREET",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+666068,Shooting Permit,08/06/2022 10:00:00 AM,08/07/2022 12:00:00 AM,08/04/2022 09:43:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","YORK STREET between BRIDGE STREET and GOLD STREET, YORK STREET between JAY STREET and BRIDGE STREET, JAY STREET between YORK STREET and FRONT STREET, BRIDGE STREET between YORK STREET and FRONT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+666064,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 11:00:00 PM,08/04/2022 09:39:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","FREDERICK DOUGLASS BOULEVARD between WEST 140 STREET and WEST 138 STREET, WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, HAMILTON TERRACE between WEST 144 STREET and WEST 141 STREET, WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 140 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 140 STREET and WEST 141 STREET, WEST 140 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 136 STREET, CONVENT AVENUE between WEST 145 STREET and WEST 141 STREET, WEST 144 STREET between AMSTERDAM AVENUE and CONVENT AVENUE, WEST 144 STREET between CONVENT AVENUE and HAMILTON TERRACE, WEST 145 STREET between AMSTERDAM AVENUE and CONVENT AVENUE",Manhattan,"10, 9","26, 30, 32",Television,Cable-episodic,United States of America,"10030, 10031"
+666053,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 09:00:00 PM,08/04/2022 08:58:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","OLD SLIP between SOUTH STREET and FRONT STREET, WEST STREET between CLARKSON STREET and LEROY STREET, LEROY STREET between WEST STREET and WASHINGTON STREET, LEROY STREET between WASHINGTON STREET and GREENWICH STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between LEROY STREET and MORTON STREET, CLARKSON STREET between WEST STREET and WASHINGTON STREET, HUDSON STREET between CHARLTON STREET and KING STREET, KING STREET between HUDSON STREET and VARICK STREET, VARICK STREET between KING STREET and CHARLTON STREET, CHARLTON STREET between HUDSON STREET and VARICK STREET",Manhattan,"1, 2","1, 6",Television,Cable-episodic,United States of America,"10005, 10014"
+666047,Shooting Permit,08/09/2022 04:00:00 PM,08/10/2022 05:00:00 AM,08/04/2022 08:00:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 36 STREET between EDGEMERE AVENUE and SPRAY VIEW AVENUE, SPRAY VIEW AVENUE between BEACH 36 STREET and BEACH 33 STREET, BEACH 35 STREET between BOARDWALK and EDGEMERE AVENUE, BEACH 34 STREET between EDGEMERE AVENUE and SPRAY VIEW AVENUE",Queens,14,101,Television,Episodic series,United States of America,11691
+666036,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 09:00:00 PM,08/04/2022 01:01:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+666027,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 06:00:00 PM,08/03/2022 11:05:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",HALSEY STREET between HOWARD AVENUE and SARATOGA AVENUE,Brooklyn,3,"79, 81",Film,Feature,United States of America,"11216, 11233"
+666012,Shooting Permit,08/05/2022 08:30:00 AM,08/05/2022 10:30:00 PM,08/03/2022 08:38:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between SPRING STREET and BROOME STREET, BROOME STREET between GREENE STREET and MERCER STREET, BROOME STREET between MERCER STREET and BROADWAY, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and KENMARE STREET, BROOME STREET between LAFAYETTE STREET and CENTRE STREET, BROOME STREET between CENTRE STREET and MULBERRY STREET, CENTRE STREET between BROOME STREET and GRAND STREET, GRAND STREET between CENTRE STREET and LAFAYETTE STREET, GRAND STREET between CENTRE MARKET PLACE and MULBERRY STREET, GRAND STREET between MULBERRY STREET and MOTT STREET, CENTRE MARKET PLACE between BROOME STREET and GRAND STREET, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK W, EAST 21 STREET between GRAMERCY PARK WEST and LEXINGTON AVENUE, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, IRVING PLACE between EAST 20 STREET and EAST 19 STREET, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE",Manhattan,"2, 5, 6","1, 13, 5",Television,Episodic series,United States of America,"10003, 10012, 10013"
+665994,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 09:00:00 PM,08/03/2022 06:41:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","ORCHARD STREET between GRAND STREET and HESTER STREET, GRAND STREET between ELDRIDGE STREET and ALLEN STREET, GRAND STREET between ORCHARD STREET and LUDLOW STREET, ALLEN STREET between RIVINGTON STREET and GRAND STREET, ELDRIDGE STREET between BROOME STREET and GRAND STREET",Manhattan,3,"5, 7",Film,Feature,United States of America,10002
+665993,DCAS Prep/Shoot/Wrap Permit,08/08/2022 06:00:00 AM,08/08/2022 09:00:00 PM,08/03/2022 06:29:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, READE STREET between CENTRE STREET and BROADWAY, BROADWAY between CHAMBERS STREET and DUANE STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between MURRAY STREET and WARREN STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+665973,Shooting Permit,08/06/2022 07:00:00 AM,08/06/2022 07:00:00 PM,08/03/2022 04:49:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, EIGHTH AVENUE between CARROLL STREET and GARFIELD PLACE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+665971,Shooting Permit,08/08/2022 06:00:00 AM,08/09/2022 11:00:00 PM,08/03/2022 04:48:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 69 STREET and EAST 68 STREET, EAST 69 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,8,19,Television,News,United States of America,"10021, 10065"
+665969,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 10:00:00 PM,08/03/2022 04:47:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, EIGHTH AVENUE between CARROLL STREET and GARFIELD PLACE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+665962,Shooting Permit,08/11/2022 07:00:00 AM,08/11/2022 09:00:00 PM,08/03/2022 04:31:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOORE STREET between PEARL STREET and WATER STREET, PEARL STREET between STATE STREET and WHITEHALL STREET, PEARL STREET between MOORE STREET and BROAD STREET, WATER STREET between BROAD STREET and MOORE STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,10004
+665960,Shooting Permit,08/05/2022 10:00:00 AM,08/06/2022 12:30:00 AM,08/03/2022 04:24:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between COLUMBIA STREET and CANNON STREET, COLUMBIA STREET between DELANCY STREET and GRAND STREET, GRAND STREET between WILLETT STREET and COLUMBIA STREET, GRAND STREET between COLUMBIA STREET and LEWIS STREET, BOWERY between RIVINGTON STREET and DELANCEY STREET, RIVINGTON STREET between BOWERY and CHRYSTIE STREET, PRINCE STREET between MOTT STREET and BOWERY, ELIZABETH STREET between PRINCE STREET and SPRING STREET, CHRYSTIE STREET between RIVINGTON STREET and STANTON STREET, SPRING STREET between ELIZABETH STREET and BOWERY, BOWERY between RIVINGTON STREET and PRINCE STREET, BOWERY between STANTON STREET and PRINCE STREET, BOWERY between STANTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, BOWERY between EAST HOUSTON STREET and BLEEKER STREET",Manhattan,"2, 3","5, 7, 9",Television,Episodic series,United States of America,"10002, 10003, 10012"
+665946,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 10:00:00 PM,08/03/2022 04:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between CHURCH AVENUE and MARTENSE STREET, NOSTRAND AVENUE between MARTENSE STREET and LINDEN BOULEVARD, CHURCH AVENUE between ROGERS AVENUE and BROOKLYN AVENUE, MARTENSE STREET between NOSTRAND AVENUE and FAIRVIEW PLACE, MARTENSE STREET between NOSTRAND AVENUE and ROGERS AVENUE, PARKSIDE AVENUE between PARK CIRCLE and PARADE PLACE, BEDFORD AVENUE between SNYDER AVENUE and ALBERMARLE ROAD",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,"11203, 11226"
+665932,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 08:30:00 PM,08/03/2022 03:29:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 150 STREET and WEST 147 STREET, BROADWAY between WEST 147 STREET and WEST 145 STREET, WEST 145 STREET between BROADWAY and AMSTERDAM AVENUE, HAMILTON TERRACE between WEST 144 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 136 STREET",Manhattan,"10, 9","26, 30, 32",Television,Episodic series,United States of America,"10027, 10030, 10031"
+665928,Shooting Permit,08/05/2022 04:00:00 PM,08/06/2022 03:00:00 AM,08/03/2022 03:20:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 106 STREET, PARK AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 101 STREET and EAST 104 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,"00083, 10029"
+665925,Theater Load in and Load Outs,08/12/2022 12:01:00 AM,08/14/2022 06:00:00 AM,08/03/2022 03:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+665905,Shooting Permit,08/07/2022 06:00:00 AM,08/07/2022 02:00:00 PM,08/03/2022 02:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEROME AVENUE between MINERVA PLACE and WEST 195 STREET, JEROME AVENUE between MINERVA PLACE and EAST 198 STREET, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, JEROME AVENUE between EAST 198 STREET and EAST 196 STREET, PARKVIEW TERRACE between MORRIS AVENUE and EAST 196 STREET, PARKVIEW TERRACE between JEROME AVENUE and MORRIS AVENUE, MORRIS AVENUE between PARKVIEW TERRACE and EAST 196 STREET, GRAND CONCOURSE between MINERVA PLACE and EAST KINGSBRIDGE ROAD, EAST 198 STREET between GRAND CONCOURSE and JEROME AVENUE, BEDFORD PARK BLVD WEST between GOULDEN AVENUE and PAUL AVENUE, PAUL AVENUE between BEDFORD PARK BLVD WEST and WEST 205 STREET",Bronx,7,52,Film,Feature,United States of America,"10458, 10468"
+665881,Shooting Permit,08/09/2022 08:00:00 AM,08/09/2022 10:00:00 PM,08/03/2022 12:48:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665872,Shooting Permit,08/05/2022 07:00:00 AM,08/06/2022 12:00:00 AM,08/03/2022 12:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 10 AVENUE and 11 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+665867,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 PM,08/03/2022 12:14:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, PORTER AVENUE between INGRAHAM STREET and JOHNSON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11237
+665862,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 09:00:00 PM,08/03/2022 12:03:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between RIVER TERRACE and NORTH END AVENUE, RIVER TERRACE between WARREN STREET and NORTH END AVENUE, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, GREENWICH STREET between CHAMBERS STREET and READE STREET, GREENWICH STREET between DUANE STREET and READE STREET, HARRISON STREET between WEST STREET and GREENWICH STREET, WEST STREET between CHAMBERS STREET and HARRISON STREET, CHAMBERS STREET between NORTH END AVENUE and WEST STREET, WEST STREET between HARRISON STREET and NORTH MOORE STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10013, 10282"
+665846,Shooting Permit,08/07/2022 04:00:00 AM,08/07/2022 01:00:00 PM,08/03/2022 11:19:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+665845,Shooting Permit,08/06/2022 04:00:00 AM,08/06/2022 01:00:00 PM,08/03/2022 11:18:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+665837,Shooting Permit,08/05/2022 10:00:00 AM,08/06/2022 02:00:00 AM,08/03/2022 10:50:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between THROOP AVENUE and MARCUS GARVEY BOULEVARD, PARK AVENUE between MARCUS GARVEY BOULEVARD and BROADWAY, MARCUS GARVEY BOULEVARD between PARK AVENUE and ELLERY STREET, MARCUS GARVEY BOULEVARD between PARK AVENUE and ELLERY STREET, MARCUS GARVEY BOULEVARD between BROADWAY and ELLERY STREET, MARCUS GARVEY BOULEVARD between PARK AVENUE and MYRTLE AVENUE, ELLERY STREET between MARCUS GARVEY BOULEVARD and BROADWAY, BROADWAY between SUMNER PLACE and LOCUST STREET, FLUSHING AVENUE between BROADWAY and THROOP AVENUE, BROADWAY between FLUSHING AVENUE and THORNTON STREET, BROADWAY between THORNTON STREET and MANHATTAN AVENUE",Brooklyn,"1, 3, 4","79, 81, 83, 90",Television,Episodic series,United States of America,11206
+665836,Shooting Permit,08/04/2022 11:00:00 AM,08/05/2022 01:00:00 AM,08/03/2022 10:48:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEABREEZE AVENUE between WEST 5 STREET and WEST 2 STREET, RANDOLPH STREET between STEWART AVENUE and VARICK AVENUE, VARICK AVENUE between JOHNSON AVENUE and RANDOLPH STREET",Brooklyn,"1, 13","60, 90",Film,Feature,United States of America,"11224, 11237"
+665829,Shooting Permit,08/06/2022 06:00:00 AM,08/06/2022 08:00:00 PM,08/03/2022 10:33:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, 3 AVENUE between 34 STREET and 36 STREET, 54 STREET between 2 AVENUE and 3 AVENUE, 1 AVENUE between 55 STREET and 56 STREET, 2 AVENUE between 53 STREET and 56 STREET",Manhattan,"1, 7","1, 72",Commercial,Commercial,United States of America,"10004, 11220, 11232"
+665817,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 10:00:00 PM,08/03/2022 09:57:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, QUEENS PLAZA SOUTH between 9 STREET and 10 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 11 STREET and 13 STREET, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+665816,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 07:00:00 PM,08/03/2022 09:54:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","YORK STREET between BRIDGE STREET and JAY STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+665810,Shooting Permit,08/09/2022 07:00:00 AM,08/09/2022 09:00:00 PM,08/03/2022 09:21:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between NOSTRAND AVENUE and MARCY AVENUE, PARK AVENUE between TOMPKINS AVENUE and MARCY AVENUE, MARCY AVENUE between HOPKINS STREET and ELLERY STREET, MARCY AVENUE between FLUSHING AVENUE and HOPKINS STREET, FLUSHING AVENUE between MARCY AVENUE and TOMPKINS AVENUE, TOMPKINS AVENUE between HOPKINS STREET and FLUSHING AVENUE, TOMPKINS AVENUE between HOPKINS STREET and ELLERY STREET",Brooklyn,"1, 3","79, 90",Television,Cable-episodic,United States of America,11206
+665806,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 09:00:00 PM,08/03/2022 09:06:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","SANFORD STREET between PARK AVENUE and MYRTLE AVENUE, SANFORD STREET between PARK AVENUE and MYRTLE AVENUE, PARK AVENUE between NOSTRAND AVENUE and SANFORD STREET, PARK AVENUE between MARCY AVENUE and NOSTRAND AVENUE, PARK AVENUE between TOMPKINS AVENUE and MARCY AVENUE, ELLERY STREET between MARCY AVENUE and TOMPKINS AVENUE, MARCY AVENUE between HOPKINS STREET and ELLERY STREET, MARCY AVENUE between HOPKINS STREET and FLUSHING AVENUE, TOMPKINS AVENUE between HOPKINS STREET and FLUSHING AVENUE, TOMPKINS AVENUE between HOPKINS STREET and ELLERY STREET, FLUSHING AVENUE between TOMPKINS AVENUE and MARCY AVENUE",Brooklyn,"1, 3","79, 90",Television,Cable-episodic,United States of America,"11205, 11206"
+665804,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 09:00:00 PM,08/03/2022 08:53:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","OLD SLIP between SOUTH STREET and FRONT STREET, WEST STREET between CLARKSON STREET and LEROY STREET, LEROY STREET between WEST STREET and WASHINGTON STREET, LEROY STREET between WASHINGTON STREET and GREENWICH STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between LEROY STREET and MORTON STREET, CLARKSON STREET between WEST STREET and WASHINGTON STREET, HUDSON STREET between CHARLTON STREET and KING STREET, KING STREET between HUDSON STREET and VARICK STREET, VARICK STREET between KING STREET and CHARLTON STREET, CHARLTON STREET between HUDSON STREET and VARICK STREET",Manhattan,"1, 2","1, 6",Television,Cable-episodic,United States of America,"10005, 10014"
+665791,Shooting Permit,08/05/2022 10:00:00 AM,08/06/2022 01:30:00 AM,08/03/2022 12:30:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between THROOP AVENUE and TOMPKINS AVENUE, MACDONOUGH STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE",Brooklyn,3,"79, 81",Film,Feature,United States of America,"11216, 11233"
+665775,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 PM,08/02/2022 06:56:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","UTOPIA PARKWAY between UNIVERSITY ROAD and UNION TNPK, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 15 STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 13 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, CHELSEA STREET between 87 ROAD and HILLSIDE AVENUE, CHELSEA STREET between BARRINGTON STREET and 87 ROAD, 87 ROAD between 188 STREET and CHELSEA STREET, WEXFORD TERRACE between CHELSEA STREET and DALNY ROAD, HILLSIDE AVENUE between DALNY ROAD and CHELSEA STREET",Queens,"1, 12, 8","103, 107, 94",Television,Episodic series,United States of America,"11222, 11249, 11432"
+665727,Shooting Permit,08/10/2022 06:00:00 AM,08/10/2022 10:00:00 PM,08/02/2022 03:51:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665725,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 10:00:00 PM,08/02/2022 03:48:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665724,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 11:59:00 PM,08/02/2022 03:46:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+665723,Shooting Permit,08/05/2022 12:00:00 PM,08/06/2022 02:00:00 AM,08/02/2022 03:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 118 STREET and WEST 116 STREET, AMSTERDAM AVENUE between WEST 116 STREET and WEST 118 STREET, AMSTERDAM AVENUE between WEST 118 STREET and WEST 119 STREET, AMSTERDAM AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 118 STREET between AMSTERDAM AVENUE and MORNINGSIDE DRIVE, WEST 116 STREET between AMSTERDAM AVENUE and MORNINGSIDE DRIVE, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 120 STREET and WEST 116 STREET, BROADWAY between WEST 120 STREET and WEST 122 STREET, WEST 120 STREET between CLAREMONT AVENUE and BROADWAY, MORNINGSIDE DRIVE between WEST 118 STREET and WEST 116 STREET, MORNINGSIDE DRIVE between WEST 118 STREET and WEST 116 STREET",Manhattan,9,26,Television,Episodic series,United States of America,10027
+665722,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 PM,08/02/2022 03:45:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665708,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 08:00:00 PM,08/02/2022 03:02:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE FRONT PARKWAY between BEACH 73 STREET and BEACH 77 STREET, SHORE FRONT PARKWAY between BEACH 77 STREET and BEACH 81 STREET, BEACH 77 STREET between SHORE FRONT PARKWAY and ROCKAWAY BEACH BOULEVARD, ROCKAWAY BEACH BOULEVARD between BEACH 77 STREET and BEACH 74 STREET, BEACH 74 STREET between SHORE FRONT PARKWAY and SPINNAKER DRIVE",Queens,14,"100, 101",Television,Episodic series,United States of America,"11691, 11692, 11693, 11694"
+665705,Shooting Permit,08/04/2022 01:00:00 PM,08/05/2022 01:00:00 AM,08/02/2022 02:58:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between WEST STREET and DEAD END,Brooklyn,1,94,Student,Student Film,United States of America,11222
+665703,Shooting Permit,08/05/2022 10:00:00 AM,08/06/2022 12:00:00 AM,08/02/2022 02:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between COMMERCE STREET and DELEVAN STREET, DELEVAN STREET between VAN BRUNT STREET and RICHARD STREET, COMMERCE STREET between VAN BRUNT STREET and IMLAY STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARD STREET, RICHARD STREET between COMMERCE STREET and VERONA STREET, DELEVAN STREET between RICHARD STREET and DWIGHT STREET, VERONA STREET between VAN BRUNT STREET and RICHARD STREET, VERONA STREET between RICHARD STREET and DWIGHT STREET, RICHARD STREET between VERONA STREET and SULLIVAN STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+665697,Shooting Permit,08/05/2022 02:00:00 PM,08/06/2022 04:00:00 AM,08/02/2022 02:41:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and NOLL STREET, FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+665684,Shooting Permit,08/14/2022 12:00:00 PM,08/14/2022 06:00:00 PM,08/02/2022 02:14:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, ASTOR PLACE between LAFAYETTE STREET and BROADWAY",Manhattan,2,9,Theater,Theater,United States of America,10003
+665672,Shooting Permit,08/04/2022 06:00:00 AM,08/04/2022 09:00:00 PM,08/02/2022 01:47:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GERARD AVENUE between EAST 153 STREET and EAST 157 STREET, GERARD AVENUE between EAST 157 STREET and EAST 158 STREET, EAST 157 STREET between RIVER AVENUE and GERARD AVENUE, EAST 157 STREET between GERARD AVENUE and WALTON AVENUE, WALTON AVENUE between EAST 158 STREET and EAST 157 STREET, WALTON AVENUE between EAST 157 STREET and EAST 153 STREET, RIVER AVENUE between EAST 153 STREET and EAST 157 STREET, RIVER AVENUE between EAST 157 STREET and EAST 161 STREET, EAST 161 STREET between GERARD AVENUE and RIVER AVENUE",Bronx,4,44,Commercial,Commercial,United States of America,10451
+665671,Shooting Permit,08/13/2022 05:00:00 PM,08/13/2022 09:00:00 PM,08/02/2022 01:45:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, ASTOR PLACE between LAFAYETTE STREET and BROADWAY",Manhattan,2,9,Theater,Theater,United States of America,10003
+665650,Shooting Permit,08/10/2022 06:00:00 AM,08/10/2022 09:00:00 PM,08/02/2022 01:05:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and FULTON STREET, LAFAYETTE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, LAFAYETTE AVENUE between ADELPHI STREET and CLERMONT AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+665623,Shooting Permit,08/04/2022 12:00:00 PM,08/05/2022 03:30:00 AM,08/02/2022 12:03:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between COMMERCE STREET and DELEVAN STREET, DELEVAN STREET between VAN BRUNT STREET and RICHARD STREET, COMMERCE STREET between VAN BRUNT STREET and IMLAY STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARD STREET, RICHARD STREET between COMMERCE STREET and VERONA STREET, DELEVAN STREET between RICHARD STREET and DWIGHT STREET, VERONA STREET between VAN BRUNT STREET and RICHARD STREET, VERONA STREET between RICHARD STREET and DWIGHT STREET, RICHARD STREET between VERONA STREET and SULLIVAN STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+665619,Shooting Permit,08/04/2022 10:00:00 AM,08/05/2022 01:00:00 AM,08/02/2022 11:55:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and HOGAN PLACE, WORTH STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, READE ST between CENTRE STREET and ELK STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, BROADWAY between CHAMBERS STREET and READE STREET, BROADWAY between READE STREET and DUANE STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, BEAVER STREET between BROADWAY and NEW STREET, BEAVER STREET between NEW STREET and BROAD STREET, BROADWAY between STONE STREET and BEAVER STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET, BRIDGE STREET between WHITEHALL STREET and BROAD STREET, PEARL STREET between WHITEHALL STREET and BROAD STREET, STATE STREET between BATTERY PLACE and BRIDGE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10004, 10007, 10013"
+665616,DCAS Prep/Shoot/Wrap Permit,08/04/2022 11:00:00 AM,08/04/2022 08:00:00 PM,08/02/2022 11:38:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WORTH STREET between CENTRE STREET and BAXTER STREET,Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+665603,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 10:00:00 PM,08/02/2022 11:16:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","SECOND AVENUE between EAST 15 STREET and EAST 17 STREET, EAST 15 STREET between SECOND AVENUE and RUTHERFORD PLACE, EAST 15 STREET between RUTHERFORD PLACE and THIRD AVENUE, EAST 17 STREET between RUTHERFORD PLACE and THIRD AVENUE, THIRD AVENUE between EAST 14 STREET and EAST 17 STREET, EAST 14 STREET between FIRST AVENUE and AVENUE C, EAST 18 STREET between BROADWAY and FIFTH AVENUE",Manhattan,"3, 5, 6","13, 9",Television,Episodic series,United States of America,"10003, 10009"
+665602,Shooting Permit,08/05/2022 06:00:00 AM,08/05/2022 11:00:00 PM,08/02/2022 11:15:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","58 STREET between FIRST AVENUE and THIRD AVENUE, FIRST AVENUE between 58 STREET and 56 STREET, SECOND AVENUE between 60 STREET and 65 STREET",Brooklyn,7,72,Television,Episodic series,United States of America,11220
+665593,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 11:00:00 PM,08/02/2022 10:37:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+665585,Shooting Permit,08/04/2022 10:00:00 AM,08/05/2022 12:00:00 AM,08/02/2022 10:09:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","72 ROAD between MANSE STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between 71 DRIVE and 72 AVENUE, 71 ROAD between METROPOLITAN AVENUE and UNION TURNPIKE, PARK LANE SOUTH between METROPOLITAN AVENUE and GROSVENOR ROAD",Queens,"6, 82, 9","102, 112",Film,Feature,United States of America,"11375, 11418"
+665574,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 08:00:00 PM,08/02/2022 09:18:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between POPLAR STREET and MIDDAGH STREET, HENRY STREET between MIDDAGH STREET and CRANBERRY STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+665559,Shooting Permit,08/04/2022 10:00:00 AM,08/05/2022 12:00:00 AM,08/02/2022 01:26:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",HANCOCK STREET between THROOP AVENUE and TOMPKINS AVENUE,Brooklyn,3,79,Film,Feature,United States of America,11216
+665556,Shooting Permit,08/04/2022 08:00:00 AM,08/04/2022 07:00:00 PM,08/02/2022 12:52:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",ORIENT AVE between MORGAN AVE and OLIVE ST,Brooklyn,1,90,Commercial,Commercial,United States of America,11211
+665543,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 11:30:00 PM,08/01/2022 09:48:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BUSHWICK AVENUE between MYRTLE AVENUE and TROUTMAN STREET, BUSHWICK AVENUE between TROUTMAN STREET and STANWIX STREET, MYRTLE AVENUE between BUSHWICK AVENUE and CHARLES PLACE, TROUTMAN STREET between BUSHWICK AVENUE and MYRTLE AVENUE",Brooklyn,4,83,Film,Feature,United States of America,"11206, 11221"
+665529,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 09:00:00 PM,08/01/2022 08:09:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MAIDEN LANE and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and FLETCHER STREET, OLD SLIP between SOUTH STREET and FRONT STREET, WEST STREET between CLARKSON STREET and LEROY STREET, LEROY STREET between WEST STREET and WASHINGTON STREET, LEROY STREET between WASHINGTON STREET and GREENWICH STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between LEROY STREET and MORTON STREET",Manhattan,"1, 2","1, 6",Television,Cable-episodic,United States of America,"10005, 10014, 10038"
+665508,Theater Load in and Load Outs,08/11/2022 12:01:00 AM,08/12/2022 11:59:00 PM,08/01/2022 05:30:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+665506,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 10:00:00 PM,08/01/2022 05:22:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 AVENUE between 42 STREET and 43 STREET, 43 AVENUE between 44 STREET and 43 STREET, 43 AVENUE between 44 STREET and 45 STREET, 45 STREET between QUEENS BOULEVARD and 43 AVENUE, 44 STREET between SKILLMAN AVENUE and 43 AVENUE, QUEENS BOULEVARD between 42 STREET and 44 STREET, GREENPOINT AVENUE between 41 STREET and 48 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11104
+665496,Shooting Permit,08/04/2022 01:00:00 PM,08/05/2022 03:00:00 AM,08/01/2022 04:56:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and NOLL STREET, FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+665489,Shooting Permit,08/05/2022 03:00:00 PM,08/06/2022 05:00:00 AM,08/01/2022 04:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between MADISON AVENUE and 5 AVENUE, WEST 51 STREET between 5 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 50 STREET, 6 AVENUE between WEST 49 STREET and WEST 50 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10112"
+665487,Shooting Permit,08/04/2022 06:00:00 AM,08/05/2022 03:00:00 AM,08/01/2022 04:21:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between SIXTH AVENUE and SEVENTH AVENUE, WEST 56 STREET between SEVENTH AVENUE and SIXTH AVENUE, WEST 58 STREET between SIXTH AVENUE and SEVENTH AVENUE, SEVENTH AVENUE between WEST 57 STREET and WEST 58 STREET, SIXTH AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, SIXTH AVENUE between WEST 58 STREET and WEST 57 STREET, SEVENTH AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, CENTRAL PARK SOUTH between SEVENTH AVENUE and SIXTH AVENUE, WEST 51 STREET between BROADWAY and SIXTH AVENUE, EAST 51 STREET between MADISON AVENUE and FIFTH AVENUE",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10020, 10022, 10036"
+665486,Theater Load in and Load Outs,08/25/2022 12:01:00 AM,08/28/2022 05:00:00 AM,08/01/2022 04:20:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+665484,Theater Load in and Load Outs,08/09/2022 12:01:00 AM,08/24/2022 11:59:00 PM,08/01/2022 04:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+665473,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 11:00:00 PM,08/01/2022 03:53:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between LORIMER STREET and MANHATTAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665467,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 06:00:00 PM,08/01/2022 03:25:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10018
+665453,Shooting Permit,08/13/2022 03:00:00 PM,08/13/2022 10:00:00 PM,08/01/2022 02:31:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between BERGEN STREET and ST MARKS PLACE, PLAZA STREET EAST between ST JOHNS PLACE and VANDERBILT AVENUE, 6 AVENUE between PACIFIC STREET and DEAN STREET",Brooklyn,"2, 55, 6, 8","77, 78, 84",Theater,Theater,United States of America,"11217, 11238"
+665443,Shooting Permit,08/04/2022 01:00:00 PM,08/05/2022 03:00:00 AM,08/01/2022 01:59:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between 1 AVENUE and MOUNT CARMEL PLACE, MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 26 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+665442,Shooting Permit,08/10/2022 07:00:00 AM,08/10/2022 09:00:00 PM,08/01/2022 01:58:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665440,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 09:00:00 PM,08/01/2022 01:53:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665434,Shooting Permit,08/05/2022 12:00:00 PM,08/05/2022 11:59:00 PM,08/01/2022 01:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665423,Shooting Permit,08/04/2022 10:00:00 AM,08/04/2022 11:00:00 PM,08/01/2022 01:09:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, FLATBUSH AVENUE between PLAZA STREET WEST and EMPIRE BOULEVARD, SECOND STREET between EIGHTH AVENUE and SEVENTH AVENUE, EIGHTH AVENUE between CARROLL STREET and GARFIELD PLACE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+665421,Shooting Permit,08/05/2022 12:00:00 PM,08/06/2022 02:00:00 AM,08/01/2022 01:06:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+665419,Shooting Permit,08/04/2022 09:00:00 AM,08/05/2022 01:00:00 AM,08/01/2022 01:03:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+665400,Shooting Permit,08/03/2022 01:00:00 PM,08/03/2022 08:00:00 PM,08/01/2022 12:36:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",DECATUR STREET between EVERGREEN AVENUE and BUSHWICK AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11207
+665394,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 10:00:00 PM,08/01/2022 12:30:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+665391,Shooting Permit,08/03/2022 09:00:00 AM,08/03/2022 10:00:00 PM,08/01/2022 12:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665385,Shooting Permit,08/04/2022 10:00:00 AM,08/04/2022 10:00:00 PM,08/01/2022 12:16:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between CANAL STREET and SPRING STREET,Manhattan,"1, 2",1,Commercial,Commercial,United States of America,10013
+665384,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 10:00:00 PM,08/01/2022 12:16:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONEY ISLAND AVENUE between DITMAS AVENUE and SLOCUM PLACE, CORTELYOU ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, CONEY ISLAND AVENUE between AVENUE C and BEVERLEY ROAD, AVENUE C between CONEY ISLAND AVENUE and EAST 8 STREET, AVENUE C between EAST 7 STREET and EAST 8 STREET, BEVERLEY ROAD between EAST 21 STREET and OCEAN AVENUE",Brooklyn,"12, 14","66, 70",Television,Cable-episodic,United States of America,"11218, 11226, 11230"
+665367,Shooting Permit,08/03/2022 10:00:00 AM,08/03/2022 11:00:00 PM,08/01/2022 11:44:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","72 ROAD between MANSE STREET and METROPOLITAN AVENUE, PARK LANE SOUTH between METROPOLITAN AVENUE and GROSVENOR ROAD",Queens,"6, 82, 9","102, 112",Film,Feature,United States of America,"11375, 11418"
+665363,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 11:00:00 PM,08/01/2022 11:27:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EDISON STREET between PRESCOTT AVENUE and OTIS AVENUE, OTIS AVENUE between EDISON STREET and CLAWSON STREET, BRYANT AVENUE between EDISON STREET and CLAWSON STREET, EBBITTS STREET between ROMA AVENUE and CEDAR GROVE AVENUE, CEDAR GROVE COURT between CEDAR GROVE AVENUE and DEAD END",Staten Island,"2, 3, 95","122, 123",Television,Episodic series,United States of America,"10306, 10309"
+665356,Shooting Permit,08/02/2022 07:00:00 AM,08/03/2022 03:00:00 AM,08/01/2022 11:05:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, JEWEL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665353,Shooting Permit,08/03/2022 06:00:00 AM,08/03/2022 09:00:00 PM,08/01/2022 10:53:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",BUCKINGHAM ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+665343,Shooting Permit,08/04/2022 06:00:00 AM,08/04/2022 02:00:00 PM,08/01/2022 10:34:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between STILLWELL AVENUE and WEST 7 STREET, WEST 10 STREET between BOARDWALK WEST and SURF AVENUE",Brooklyn,13,60,Television,Episodic series,United States of America,"11224, 11235"
+665325,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 10:00:00 PM,08/01/2022 09:49:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43RD AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+665323,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 09:00:00 PM,08/01/2022 09:33:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and GRAND AVENUE, CAMBRIDGE PLACE between GATES AVENUE and FULTON STREET",Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+665318,Shooting Permit,08/05/2022 09:00:00 AM,08/05/2022 11:00:00 PM,08/01/2022 08:18:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,WEB,Not Applicable,United States of America,10018
+665317,Shooting Permit,08/04/2022 10:00:00 AM,08/04/2022 11:00:00 PM,08/01/2022 08:07:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,WEB,Not Applicable,United States of America,10018
+665312,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 09:00:00 PM,08/01/2022 02:02:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+665311,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 09:30:00 PM,08/01/2022 01:39:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE, ATLANTIC AVENUE between HENRY STREET and HICKS STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, CADMAN PLAZA EAST between TILLARY STREET and JOHNSON STREET, REMSEN STREET between COURT STREET and CLINTON STREET, REMSEN STREET between CLINTON STREET and HENRY STREET, REMSEN STREET between HENRY STREET and HICKS STREET, CLINTON STREET between ATLANTIC AVENUE and PACIFIC STREET, HENRY STREET between ATLANTIC AVENUE and PACIFIC STREET, MONTAGUE STREET between HENRY STREET and HICKS STREET, MONTAGUE STREET between COURT STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+665304,Shooting Permit,08/03/2022 09:00:00 AM,08/03/2022 11:59:00 PM,07/31/2022 10:59:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between THROOP AVENUE and TOMPKINS AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE",Brooklyn,"3, 8","77, 79",Film,Feature,United States of America,11216
+665303,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 11:30:00 PM,07/31/2022 10:57:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between HESTER STREET and GRAND STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, ELIZABETH STREET between CANAL STREET and HESTER STREET, HESTER STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10013, 10038"
+665240,Shooting Permit,08/05/2022 07:00:00 AM,08/05/2022 09:00:00 PM,07/31/2022 11:05:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+665239,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 09:00:00 PM,07/31/2022 11:02:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+665235,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 09:00:00 PM,07/31/2022 09:33:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MAIDEN LANE and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and FLETCHER STREET, OLD SLIP between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+665232,Shooting Permit,08/09/2022 07:00:00 PM,08/10/2022 08:00:00 AM,07/31/2022 08:56:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 68 STREET and WEST 66 STREET, WEST 67 STREET between BROADWAY and COLUMBUS AVENUE, WEST 68 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 68 STREET and WEST 67 STREET",Manhattan,7,20,Commercial,Commercial,United States of America,10023
+665179,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 11:00:00 PM,07/30/2022 01:09:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, CALYER STREET between LORIMER STREET and GUERNSEY STREET, LORIMER STREET between MESEROLE AVENUE and CALYER STREET, LORIMER STREET between CALYER STREET and NOBLE STREET, CALYER STREET between LORIMER STREET and MANHATTAN AVENUE, OAK STREET between GUERNSEY STREET and FRANKLIN STREET, MANHATTAN AVENUE between MESEROLE AVENUE and NOBLE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665128,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 10:00:00 PM,07/29/2022 05:43:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between 2 STREET and CENTER BOULEVARD, 2 STREET between BORDEN AVENUE and 51 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, WOODSIDE AVENUE between 59 STREET and 60 STREET, WOODSIDE AVENUE between 59 STREET and 60 STREET, 54 AVENUE between CENTER BOULEVARD and 2 STREET, BORDEN AVE between 2 STREET and 5 STREET, 58 STREET between WOODSIDE AVENUE and 41 DRIVE, WOODSIDE AVENUE between 58 STREET and 59 STREET, ROOSEVELT AVENUE between 58 STREET and 59 STREET, WOODSIDE AVENUE between 58 STREET and 57 STREET, WOODSIDE AVENUE between 60 STREET and 61 STREET, QUEENS BLVD between 51ST STREET and 58TH STREET, 59 STREET between WOODSIDE AVENUE and 41 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11377"
+665123,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 08:00:00 PM,07/29/2022 05:14:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 ROAD and 44 AVENUE, 11 STREET between 43 ROAD and 44 AVENUE, 43 ROAD between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE, 43 AVENUE between 9 STREET and 10 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+665108,Shooting Permit,08/05/2022 12:30:00 PM,08/06/2022 04:30:00 AM,07/29/2022 04:22:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 45 AVENUE and 44 DRIVE, 10 STREET between 45 AVENUE and 44 DRIVE, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, 46 ROAD between VERNON BOULEVARD and 11 STREET, 46 AVENUE between VERNON BOULEVARD and 5 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 5 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+665102,Shooting Permit,08/02/2022 01:00:00 PM,08/03/2022 06:00:00 AM,07/29/2022 03:56:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Documentary,Not Applicable,United States of America,10018
+665091,Shooting Permit,08/02/2022 08:00:00 AM,08/03/2022 12:00:00 AM,07/29/2022 03:19:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR STREET between ALBANY AVENUE and MARCUS GARVEY BOULEVARD, BEDFORD AVENUE between QUINCY STREET and LEXINGTON AVENUE",Brooklyn,3,79,Film,Feature,United States of America,11216
+665089,Shooting Permit,08/04/2022 06:00:00 AM,08/04/2022 11:59:00 PM,07/29/2022 03:11:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+665084,Shooting Permit,08/03/2022 06:00:00 AM,08/04/2022 01:00:00 AM,07/29/2022 03:04:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYCKOFF AVENUE between DEKALB AVENUE and STOCKHOLM STREET, WYCKOFF AVENUE between DEKALB AVENUE and HART STREET, HART STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between SUYDAM STREET and HART STREET, SUYDAM STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between SUYDAM STREET and WILLOUGHBY AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and STARR STREET, IRVING AVENUE between DEKALB AVENUE and HART STREET, IRVING AVENUE between HART STREET and SUYDAM STREET, IRVING AVENUE between SUYDAM STREET and STARR STREET, IRVING AVENUE between STARR STREET and TROUTMAN STREET, IRVING AVENUE between TROUTMAN STREET and JEFFERSON STREET, STARR STREET between WYCKOFF AVENUE and IRVING AVENUE",Brooklyn,4,83,Television,Episodic series,United States of America,11237
+665082,Shooting Permit,07/30/2022 04:00:00 AM,07/30/2022 12:00:00 PM,07/29/2022 02:56:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+665081,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 11:59:00 PM,07/29/2022 02:52:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 118 STREET and WEST 116 STREET, AMSTERDAM AVENUE between WEST 118 STREET and WEST 116 STREET, WEST 118 STREET between AMSTERDAM AVENUE and MORNINGSIDE DRIVE, WEST 116 STREET between AMSTERDAM AVENUE and MORNINGSIDE DRIVE, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 120 STREET and WEST 116 STREET, BROADWAY between WEST 122 STREET and WEST 120 STREET, WEST 120 STREET between CLAREMONT AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 119 STREET and WEST 118 STREET, AMSTERDAM AVENUE between WEST 119 STREET and WEST 118 STREET",Manhattan,9,26,Television,Episodic series,United States of America,10027
+665079,Theater Load in and Load Outs,08/29/2022 12:01:00 AM,09/01/2022 06:00:00 AM,07/29/2022 02:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+665077,Shooting Permit,08/02/2022 10:00:00 AM,08/02/2022 11:00:00 PM,07/29/2022 02:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVENUE between MINETTA LANE and W HOUSTON STREET, WEST HOUSTON STREET between MACDOUGAL STREET and GREENE STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,"10012, 10014"
+665076,Shooting Permit,08/03/2022 06:00:00 AM,08/03/2022 08:00:00 PM,07/29/2022 02:39:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE,Manhattan,8,19,WEB,Not Applicable,United States of America,10028
+665075,Shooting Permit,08/09/2022 06:00:00 AM,08/09/2022 09:00:00 PM,07/29/2022 02:37:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and FULTON STREET, LAFAYETTE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, LAFAYETTE AVENUE between ADELPHI STREET and CLERMONT AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+665074,Shooting Permit,08/03/2022 11:30:00 AM,08/03/2022 09:00:00 PM,07/29/2022 02:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between 10 AVENUE and WASHINGTON STREET,Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,"10011, 10014"
+665071,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 09:00:00 PM,07/29/2022 02:21:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+665069,Shooting Permit,08/03/2022 06:00:00 AM,08/03/2022 07:00:00 PM,07/29/2022 02:16:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 162 STREET and WEST 163 STREET, W 162 ST between ST NICHOLAS AVE and JEMEL TERRACE, JUMEL TERRACE between WEST 162 STREET and SYLVAN TERRACE",Manhattan,"12, 9","26, 30, 33",Commercial,Commercial,United States of America,"10027, 10031, 10032, 10033"
+665064,Shooting Permit,08/01/2022 08:00:00 AM,08/01/2022 11:00:00 PM,07/29/2022 01:48:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 11 STREET between 44 AVENUE and 44 ROAD, 44 AVENUE between 11 STREET and 21 STREET",Queens,2,108,Film,Feature,United States of America,11101
+665060,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 10:00:00 PM,07/29/2022 01:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+665036,Shooting Permit,08/04/2022 08:00:00 AM,08/04/2022 09:00:00 PM,07/29/2022 12:34:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+665032,Shooting Permit,08/05/2022 06:00:00 AM,08/05/2022 10:00:00 PM,07/29/2022 12:32:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665030,Shooting Permit,08/04/2022 06:00:00 AM,08/04/2022 10:00:00 PM,07/29/2022 12:30:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665029,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 09:00:00 PM,07/29/2022 12:28:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 109 STREET and WEST 116 STREET, WEST 114 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 112 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 112 STREET and WEST 115 STREET",Manhattan,"7, 9","24, 26",Television,Cable-episodic,United States of America,"10024, 10025, 10027"
+665027,Shooting Permit,08/04/2022 06:30:00 AM,08/04/2022 09:00:00 PM,07/29/2022 12:23:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between LAFAYETTE AVENUE and GREENE AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+665021,Shooting Permit,08/02/2022 10:00:00 AM,08/03/2022 01:00:00 AM,07/29/2022 12:09:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONSELYEA STREET between LEONARD STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between METROPOLITAN AVENUE and JACKSON STREET, GRAHAM AVENUE between JACKSON STREET and DEVOE STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, HAVEMEYER STREET between SOUTH 4 STREET and BROADWAY, SOUTH 5 STREET between HAVEMEYER STREET and RODNEY STREET, SOUTH 4 STREET between HAVEMEYER STREET and MARCY AVENUE, SOUTH 4 STREET between MARCY AVENUE and RODNEY STREET, LEONARD STREET between SKILLMAN AVENUE and CONSELYEA STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+665016,Shooting Permit,08/03/2022 06:00:00 AM,08/03/2022 10:00:00 PM,07/29/2022 12:03:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+665014,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 09:00:00 PM,07/29/2022 11:59:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHRISTOPHER STREET and WEST 11 STREET, WEST 10 STREET between WEST STREET and WASHINGTON STREET, CHARLES STREET between WEST STREET and WASHINGTON STREET, DESBROSSES STREET between HUDSON STREET and GREENWICH STREET, WASHINGTON STREET between WATTS STREET and VESTRY STREET, VESTRY STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2","1, 6",Commercial,Commercial,United States of America,"10013, 10014"
+665012,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 05:00:00 PM,07/29/2022 11:58:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between JACKSON STREET and CONSELYEA STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11211
+665011,Shooting Permit,08/04/2022 03:30:00 PM,08/05/2022 05:00:00 AM,07/29/2022 11:58:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 57 STREET and EAST 51 STREET, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, EAST 54 STREET between MADISON AVENUE and PARK AVENUE, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, EAST 55 STREET between MADISON AVENUE and 5 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10152"
+665010,Shooting Permit,08/06/2022 07:00:00 AM,08/06/2022 07:00:00 PM,07/29/2022 11:57:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 59 STREET and EAST 58 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"1, 2, 5","1, 13, 18, 6",Commercial,Commercial,United States of America,"10003, 10004, 10005, 10006, 10010, 10011, 10013, 10019, 10022"
+665009,Shooting Permit,08/07/2022 06:00:00 AM,08/07/2022 08:00:00 PM,07/29/2022 11:57:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 68 STREET and WEST 66 STREET, WEST 67 STREET between BROADWAY and COLUMBUS AVENUE, WEST 68 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 68 STREET and WEST 67 STREET, BOWERY between SPRING STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, DELANCEY STREET between BOWERY and FORSYTHE STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,"2, 3, 7","20, 5",Commercial,Commercial,United States of America,"10002, 10012, 10013, 10023"
+665007,Shooting Permit,08/12/2022 07:30:00 PM,08/12/2022 11:00:00 PM,07/29/2022 11:48:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",COURT STREET between 4 PLACE and LUQUER STREET,Brooklyn,"2, 6","76, 84",Theater,Theater,United States of America,"11201, 11231"
+665001,Shooting Permit,08/01/2022 08:00:00 AM,08/01/2022 07:00:00 PM,07/29/2022 11:39:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between 5 AVENUE and MADISON AVENUE, WATER STREET between DOCK STREET and OLD FULTON STREET",Manhattan,"1, 2, 3, 5","1, 18, 5, 84",Still Photography,Not Applicable,United States of America,"10002, 10020, 10022, 10038, 11201"
+664983,Shooting Permit,08/05/2022 11:00:00 AM,08/06/2022 12:00:00 AM,07/29/2022 10:55:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between STARR STREET and SUYDAM STREET",Brooklyn,4,83,Film,Feature,United States of America,11237
+664975,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 08:30:00 PM,07/29/2022 10:24:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, GREENPOINT AVENUE between MCGUINNESS BOULEVARD and PROVOST STREET, CALYER STREET between MCGUINNESS BOULEVARD and NEWEL STREET, CALYER STREET between NEWEL STREET and DIAMOND STREET, PROVOST STREET between PAIDGE AVENUE and GREENPOINT AVENUE, PAIDGE AVENUE between CLAY STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664973,Shooting Permit,07/30/2022 12:00:00 AM,07/30/2022 12:00:00 PM,07/29/2022 10:03:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Television,Morning Show,United States of America,10023
+664962,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/29/2022 08:58:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MAIDEN LANE and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and FLETCHER STREET, OLD SLIP between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+664956,Shooting Permit,07/31/2022 07:00:00 AM,07/31/2022 08:30:00 PM,07/29/2022 07:13:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, EAST 42 STREET between VANDERBILT AVENUE and MADISON AVENUE, BARCLAY STREET between BROADWAY and CHURCH STREET, WATER STREET between WALL STREET and HANOVER SQUARE",Manhattan,"1, 5","1, 14, 18",Still Photography,Not Applicable,United States of America,"10004, 10005, 10007, 10017, 10019, 10022, 10279"
+664941,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/28/2022 10:30:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10036, 10103, 10105, 10112"
+664927,Theater Load in and Load Outs,08/02/2022 05:00:00 AM,08/04/2022 11:00:00 PM,07/28/2022 07:14:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+664926,Theater Load in and Load Outs,07/31/2022 05:45:00 AM,08/01/2022 01:00:00 PM,07/28/2022 07:00:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+664915,Shooting Permit,08/04/2022 07:00:00 AM,08/04/2022 07:30:00 PM,07/28/2022 05:52:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+664914,Rigging Permit,07/30/2022 03:00:00 AM,07/30/2022 10:00:00 AM,07/28/2022 05:52:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE,Manhattan,10,28,Television,Episodic series,United States of America,10027
+664909,Theater Load in and Load Outs,08/08/2022 12:01:00 AM,08/15/2022 06:00:00 AM,07/28/2022 05:36:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+664899,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/28/2022 05:18:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664896,Shooting Permit,08/03/2022 05:00:00 PM,08/04/2022 07:00:00 AM,07/28/2022 05:15:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 37 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Documentary,Not Applicable,United States of America,10018
+664895,Shooting Permit,08/03/2022 01:00:00 PM,08/04/2022 01:00:00 AM,07/28/2022 05:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",HENRY STREET between CLARK STREET and PIERREPONT STREET,Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+664887,Shooting Permit,08/01/2022 10:00:00 AM,08/02/2022 02:00:00 AM,07/28/2022 04:50:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 AVENUE between 35 STREET and 36 STREET, 35 STREET between 31 AVENUE and 30 AVENUE, 34 STREET between 31 AVENUE and 30 AVENUE, 37 STREET between 31 AVENUE and 30 AVENUE, STEINWAY STREET between 31 AVENUE and 30 AVENUE, 3 STREET between 26 AVENUE and 27 AVENUE, 26 AVENUE between 2 STREET and 4 STREET, 2 STREET between 26 AVENUE and 27 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11102, 11103"
+664886,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 10:00:00 PM,07/28/2022 04:46:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+664884,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 09:00:00 PM,07/28/2022 04:44:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+664882,Shooting Permit,08/02/2022 11:00:00 AM,08/02/2022 11:00:00 PM,07/28/2022 04:43:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+664855,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 07:30:00 PM,07/28/2022 03:55:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 5 AVENUE and EAST 23 STREET, MADISON AVENUE between EAST 26 STREET and EAST 23 STREET, WEST 27 STREET between BROADWAY and 5 AVENUE, WEST 24 STREET between 6 AVENUE and 5 AVENUE, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, EAST 26 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 25 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 28 STREET and EAST 26 STREET",Manhattan,5,13,Television,Cable-episodic,United States of America,"10001, 10010, 10016"
+664829,Shooting Permit,08/01/2022 07:30:00 AM,08/01/2022 09:30:00 PM,07/28/2022 03:09:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 174 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE, WEST 175 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE, AMSTERDAM AVENUE between WEST 174 STREET and WEST 177 STREET, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 176 STREET, ST NICHOLAS AVENUE between WEST 176 STREET and WEST 180 STREET",Manhattan,12,"33, 34",Television,Cable-episodic,United States of America,10033
+664822,DCAS Prep/Shoot/Wrap Permit,08/01/2022 01:00:00 PM,08/01/2022 09:30:00 PM,07/28/2022 02:41:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between COURT STREET and CLINTON STREET, REMSEN STREET between CLINTON STREET and HENRY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+664810,Shooting Permit,08/03/2022 10:00:00 AM,08/03/2022 11:00:00 PM,07/28/2022 02:27:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+664808,Shooting Permit,08/02/2022 08:00:00 AM,08/02/2022 10:00:00 PM,07/28/2022 02:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+664807,Shooting Permit,07/29/2022 10:00:00 AM,07/30/2022 12:00:00 AM,07/28/2022 02:20:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664806,Shooting Permit,08/01/2022 08:00:00 AM,08/01/2022 10:00:00 PM,07/28/2022 02:17:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+664803,Theater Load in and Load Outs,08/13/2022 12:01:00 AM,08/14/2022 06:00:00 AM,07/28/2022 02:13:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+664802,Shooting Permit,07/29/2022 08:00:00 AM,07/29/2022 10:00:00 PM,07/28/2022 02:13:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+664799,Theater Load in and Load Outs,08/12/2022 12:01:00 AM,08/13/2022 06:00:00 AM,07/28/2022 02:08:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+664798,Theater Load in and Load Outs,08/13/2022 12:01:00 AM,08/14/2022 06:00:00 AM,07/28/2022 02:06:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+664790,Shooting Permit,08/05/2022 06:00:00 AM,08/06/2022 02:00:00 AM,07/28/2022 01:57:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between NEWEL STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, HUMBOLDT STREET between CALYER STREET and GREENPOINT AVENUE, CALYER STREET between RUSSELL STREET and HUMBOLDT STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664783,Theater Load in and Load Outs,08/12/2022 12:01:00 AM,08/12/2022 11:59:00 PM,07/28/2022 01:48:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+664782,Theater Load in and Load Outs,08/23/2022 12:01:00 AM,08/23/2022 11:59:00 PM,07/28/2022 01:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664780,Theater Load in and Load Outs,09/21/2022 12:01:00 AM,09/22/2022 06:00:00 AM,07/28/2022 01:40:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664779,Theater Load in and Load Outs,09/14/2022 12:01:00 AM,09/16/2022 06:00:00 AM,07/28/2022 01:40:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664778,Theater Load in and Load Outs,09/07/2022 12:01:00 AM,09/11/2022 06:00:00 AM,07/28/2022 01:40:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664777,Theater Load in and Load Outs,09/01/2022 12:01:00 AM,09/03/2022 11:59:00 PM,07/28/2022 01:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664776,Theater Load in and Load Outs,08/26/2022 12:01:00 AM,08/28/2022 11:59:00 PM,07/28/2022 01:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664775,Theater Load in and Load Outs,08/19/2022 12:01:00 AM,08/22/2022 11:59:00 PM,07/28/2022 01:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664774,Theater Load in and Load Outs,08/18/2022 12:01:00 AM,08/18/2022 11:59:00 PM,07/28/2022 01:37:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+664764,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/28/2022 01:22:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between 2 AVENUE and 3 AVENUE, 1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"11, 8","19, 23",Television,Cable-episodic,United States of America,"10029, 10128"
+664763,Shooting Permit,08/03/2022 10:00:00 AM,08/03/2022 11:00:00 PM,07/28/2022 01:21:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, FLATBUSH AVENUE between PLAZA STREET WEST and EMPIRE BOULEVARD, SECOND STREET between EIGHTH AVENUE and SEVENTH AVENUE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+664762,Shooting Permit,08/02/2022 10:00:00 AM,08/02/2022 11:00:00 PM,07/28/2022 01:20:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, MONTGOMERY PLACE between PROSPECT PARK WEST and EIGHTH AVENUE, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, FLATBUSH AVENUE between PLAZA STREET WEST and EMPIRE BOULEVARD, SECOND STREET between EIGHTH AVENUE and SEVENTH AVENUE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+664738,Theater Load in and Load Outs,08/01/2022 12:01:00 AM,08/01/2022 11:59:00 PM,07/28/2022 12:14:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+664732,Shooting Permit,08/07/2022 06:00:00 AM,08/07/2022 11:59:00 PM,07/28/2022 11:54:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAIGHT STREET between HUDSON STREET and GREENWICH STREET,Manhattan,1,1,Theater,Theater,United States of America,10013
+664731,Shooting Permit,08/06/2022 06:00:00 AM,08/06/2022 11:59:00 PM,07/28/2022 11:54:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAIGHT STREET between HUDSON STREET and GREENWICH STREET,Manhattan,1,1,Theater,Theater,United States of America,10013
+664730,Shooting Permit,08/26/2022 12:00:00 AM,08/26/2022 03:00:00 PM,07/28/2022 11:52:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664729,Shooting Permit,08/25/2022 04:00:00 AM,08/25/2022 11:59:00 PM,07/28/2022 11:47:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664728,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/28/2022 11:46:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","DOMINICK STREET between VARICK STREET and 6 AVENUE, LUDLOW STREET between GRAND STREET and HESTER STREET",Manhattan,"2, 3","1, 7",Commercial,Commercial,United States of America,"10002, 10013"
+664725,Shooting Permit,08/19/2022 12:00:00 AM,08/19/2022 03:00:00 PM,07/28/2022 11:31:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664721,Shooting Permit,08/18/2022 04:00:00 AM,08/18/2022 03:00:00 PM,07/28/2022 11:20:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664696,Shooting Permit,08/02/2022 12:00:00 PM,08/02/2022 08:00:00 PM,07/28/2022 10:42:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between DEAD END and FERRIS STREET,Brooklyn,6,76,Student,Student Film,United States of America,11231
+664692,Shooting Permit,08/12/2022 12:00:00 AM,08/12/2022 03:00:00 PM,07/28/2022 10:37:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664689,Shooting Permit,07/31/2022 01:00:00 PM,07/31/2022 09:00:00 PM,07/28/2022 10:30:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+664687,Shooting Permit,08/11/2022 04:00:00 AM,08/11/2022 11:59:00 PM,07/28/2022 10:30:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664684,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 05:00:00 PM,07/28/2022 10:19:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between MCGUINNESS BOULEVARD and DIAMOND STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE, ECKFORD STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664677,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 10:00:00 PM,07/28/2022 09:53:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST between QUEENS PLAZA SOUTH and 43RD AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+664665,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/28/2022 09:20:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+664662,Shooting Permit,08/02/2022 08:00:00 AM,08/02/2022 11:00:00 PM,07/28/2022 09:09:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between KNICKERBOCKER AVENUE and VARICK AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11237
+664658,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 08:00:00 PM,07/28/2022 08:43:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between LIVINGSTON STREET and JORALEMON STREET, SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, COURT STREET between LIVINGSTON STREET and SCHERMERHORN STREET, COURT STREET between STATE STREET and SCHERMERHORN STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+664655,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/28/2022 08:33:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between JOHN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and MAIDEN LANE, OLD SLIP between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+664649,Shooting Permit,08/08/2022 06:00:00 AM,08/08/2022 09:00:00 PM,07/28/2022 06:02:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between EAST RIVER and HALLECK STREET,Brooklyn,6,76,Television,Not Applicable,United States of America,11231
+664629,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 10:00:00 PM,07/27/2022 10:42:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS STREET between GRAND STREET and DELANCEY STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+664627,Shooting Permit,08/01/2022 07:30:00 AM,08/01/2022 09:30:00 PM,07/27/2022 10:28:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and CLARK STREET, CADMAN PLAZA WEST between CLARK STREET and PINEAPPLE WALK, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, TILLARY STREET between CADMAN PLAZA EAST and ADAMS STREET, CADMAN PLAZA EAST between TILLARY STREET and JOHNSON STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE, ATLANTIC AVENUE between BOERUM PLACE and SMITH STREET, CADMAN PLAZA WEST between PINEAPPLE WALK and MIDDAGH STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+664611,Shooting Permit,08/02/2022 08:00:00 AM,08/02/2022 08:00:00 PM,07/27/2022 07:32:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between ELDERT STREET and MACDONOUGH STREET,Brooklyn,"16, 4","73, 83",WEB,Not Applicable,United States of America,"11207, 11221"
+664568,Rigging Permit,07/29/2022 12:30:00 AM,07/29/2022 01:00:00 PM,07/27/2022 03:35:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE,Manhattan,10,28,Television,Episodic series,United States of America,10027
+664565,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/27/2022 03:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+664564,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 10:00:00 PM,07/27/2022 03:11:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 131 STREET and WEST 135 STREET, WEST 134 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 136 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 135 STREET and WEST 137 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 141 STREET and WEST 139 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 139 STREET and WEST 138 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 137 STREET, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLAS BOULEVARD, WEST 126 STREET between LENOX AVENUE and 5 AVENUE, WEST 127 STREET between LENOX AVENUE and 5 AVENUE, LENOX AVENUE between WEST 129 STREET and WEST 127 STREET",Manhattan,10,"28, 32",Television,Cable-episodic,United States of America,"10027, 10030"
+664563,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/27/2022 03:11:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+664553,Theater Load in and Load Outs,08/05/2022 12:01:00 AM,08/06/2022 06:00:00 AM,07/27/2022 02:43:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+664547,Shooting Permit,08/01/2022 09:00:00 AM,08/01/2022 11:00:00 PM,07/27/2022 02:23:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between NORTH MOORE STREET and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Made for TV/mini-series,United States of America,10013
+664542,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 11:00:00 PM,07/27/2022 02:12:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 9 STREET between 38 AVENUE and 40 AVENUE, 40 AVENUE between 9 STREET and 10 STREET, 10 STREET between 38 AVENUE and 40 AVENUE, 10 STREET between 41 AVENUE and 40 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+664541,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 09:00:00 PM,07/27/2022 02:08:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664536,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/27/2022 01:54:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","KANE STREET between HICKS STREET and HENRY STREET, KANE STREET between HICKS STREET and HENRY STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+664522,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 10:00:00 PM,07/27/2022 01:26:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 55 STREET and EAST 59 STREET, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 58 STREET between MADISON AVENUE and PARK AVENUE, EAST 59 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 60 STREET and EAST 61 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+664475,Shooting Permit,07/28/2022 08:00:00 AM,07/28/2022 07:00:00 PM,07/27/2022 11:30:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUBERT STREET between HUDSON STREET and COLLISTER STREET, HUDSON STREET between HUBERT STREET and BEACH STREET, EAST 70 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"1, 8","1, 19",Television,Made for TV/mini-series,United States of America,"10013, 10021"
+664465,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 11:00:00 PM,07/27/2022 11:22:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+664437,Shooting Permit,08/01/2022 08:00:00 AM,08/01/2022 09:00:00 PM,07/27/2022 10:38:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVENUE between MINETTA LANE and W HOUSTON STREET, WEST HOUSTON STREET between MACDOUGAL STREET and GREENE STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,"10012, 10014"
+664421,Shooting Permit,08/05/2022 12:00:00 AM,08/05/2022 03:00:00 PM,07/27/2022 09:51:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664420,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 08:00:00 PM,07/27/2022 09:47:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between MILTON STREET and NOBLE STREET, NOBLE STREET between FRANKLIN STREET and WEST STREET",Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+664419,Shooting Permit,08/04/2022 04:00:00 AM,08/04/2022 11:59:00 PM,07/27/2022 09:45:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664416,Shooting Permit,07/29/2022 10:00:00 AM,07/29/2022 08:00:00 PM,07/27/2022 09:33:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE BOULEVARD between DITMARS BOULEVARD and 20 AVENUE, 31 STREET between 21 AVENUE and DITMARS BOULEVARD",Queens,1,114,Television,Episodic series,United States of America,11105
+664414,Shooting Permit,07/29/2022 08:30:00 AM,07/29/2022 11:30:00 PM,07/27/2022 09:29:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+664400,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 11:59:00 PM,07/27/2022 08:14:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,18,Commercial,Commercial,United States of America,10022
+664401,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 09:00:00 AM,07/27/2022 08:14:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,18,Commercial,Commercial,United States of America,10022
+664385,Shooting Permit,07/29/2022 01:00:00 PM,07/30/2022 03:00:00 AM,07/26/2022 10:51:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+664377,Shooting Permit,07/29/2022 10:00:00 AM,07/30/2022 01:00:00 AM,07/26/2022 09:53:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE,Brooklyn,8,77,Film,Feature,United States of America,11216
+664347,Shooting Permit,07/30/2022 12:00:00 PM,07/31/2022 02:00:00 AM,07/26/2022 05:43:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",LOCUST AVENUE between HYLAN BOULEVARD and DEAD END,Staten Island,2,122,Television,Episodic series,United States of America,10306
+664346,Shooting Permit,07/29/2022 12:00:00 PM,07/30/2022 02:00:00 AM,07/26/2022 05:43:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",LOCUST AVENUE between HYLAN BOULEVARD and DEAD END,Staten Island,2,122,Television,Episodic series,United States of America,10306
+664325,Shooting Permit,07/28/2022 11:00:00 AM,07/29/2022 03:00:00 AM,07/26/2022 04:33:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, 36 AVENUE between SHORE ROAD and WEST DRIVE, GROSVENOR STREET between SHORE ROAD and WEST DRIVE, SHORE ROAD between WESTMORELAND PLACE and GROSVENOR STREET",Queens,11,111,Television,Episodic series,United States of America,11363
+664324,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 11:59:00 PM,07/26/2022 04:19:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BENNETT AVENUE between WEST 181 STREET and WEST 184 STREET, BENNETT AVENUE between WEST 181 STREET and WEST 184 STREET, COLONEL ROBERT MAGAW PLACE between WEST 181 STREET and WEST 183 STREET, WEST 181 STREET between PINEHURST AVENUE and FORT WASHINGTON AVENUE, WEST 181 STREET between FORT WASHINGTON AVENUE and COLONEL ROBERT MAGAW PLACE, WEST 181 STREET between COLONEL ROBERT MAGAW PLACE and BENNETT AVENUE, WEST 181 STREET between BENNETT AVENUE and BROADWAY, BROADWAY between WEST 182 STREET and WEST 181 STREET, WEST 181 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 181 STREET and WEST 180 STREET, BROADWAY between WEST 180 STREET and WEST 179 STREET, WEST 180 STREET between BROADWAY and WADSWORTH AVENUE, WEST 180 STREET between WADSWORTH AVENUE and SAINT NICHOLAS AVENUE",Manhattan,12,34,Television,Episodic series,United States of America,10033
+664322,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 10:00:00 PM,07/26/2022 04:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 41 STREET and EAST 42 STREET, 3 AVENUE between EAST 38 STREET and EAST 39 STREET, 3 AVENUE between EAST 39 STREET and EAST 40 STREET, 3 AVENUE between EAST 40 STREET and EAST 41 STREET, 3 AVENUE between EAST 37 STREET and EAST 38 STREET, 3 AVENUE between EAST 36 STREET and EAST 37 STREET",Manhattan,6,17,Film,Feature,United States of America,"10016, 10017, 10158"
+664321,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 10:00:00 PM,07/26/2022 04:15:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 38 STREET and EAST 39 STREET, 3 AVENUE between EAST 37 STREET and EAST 38 STREET, 3 AVENUE between EAST 39 STREET and EAST 40 STREET",Manhattan,"5, 6","14, 17",Film,Feature,United States of America,"10016, 10158"
+664320,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 10:00:00 PM,07/26/2022 04:13:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",LOCUST AVENUE between HYLAN BOULEVARD and DEAD END,Staten Island,2,122,Television,Episodic series,United States of America,10306
+664317,Shooting Permit,08/04/2022 06:00:00 AM,08/04/2022 09:00:00 PM,07/26/2022 04:10:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between WEST 21 STREET and WEST 22 STREET, 5 AVENUE between EAST 20 STREET and EAST 21 STREET, WEST 21 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,13,WEB,Not Applicable,United States of America,10010
+664313,Theater Load in and Load Outs,08/02/2022 12:01:00 AM,08/03/2022 06:00:00 AM,07/26/2022 04:00:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+664308,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 07:00:00 PM,07/26/2022 03:48:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 38 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10018
+664306,Shooting Permit,07/28/2022 10:30:00 AM,07/29/2022 12:30:00 AM,07/26/2022 03:47:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+664305,Shooting Permit,07/29/2022 11:00:00 AM,07/30/2022 04:00:00 AM,07/26/2022 03:43:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, DITMARS BOULEVARD between 19 STREET and 21 STREET, 19 STREET between DITMARS BOULEVARD and 21 DRIVE, 19 STREET between 21 ROAD and 21 AVENUE, 21 ROAD between 19 STREET and SHORE BOULEVARD, 21 ROAD between 19 STREET and 21 STREET, ASTORIA BLVD SOUTH between STEINWAY STREET and 41 STREET",Queens,1,114,Television,Episodic series,United States of America,"11103, 11105"
+664302,Rigging Permit,07/27/2022 10:30:00 PM,07/28/2022 10:30:00 AM,07/26/2022 03:41:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE,Manhattan,10,28,Television,Episodic series,United States of America,10027
+664300,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 08:00:00 PM,07/26/2022 03:39:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH STREET between WEST BROADWAY and VARICK STREET, WEST BROADWAY between BEACH STREET and NORTH MOORE STREET, WALKER STREET between WEST BROADWAY and 6 AVENUE, 6 AVENUE between WHITE STREET and WALKER STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET",Manhattan,1,1,Television,Made for TV/mini-series,United States of America,"10005, 10013, 10045"
+664292,Shooting Permit,07/29/2022 10:00:00 AM,07/29/2022 11:59:00 PM,07/26/2022 03:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and 31 PLACE, REVIEW AVENUE between 29 STREET and 35 STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+664288,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 09:00:00 PM,07/26/2022 02:59:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between JOHN STREET and MAIDEN LANE, SOUTH STREET between JOHN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and MAIDEN LANE, JOHN STREET between WATER STREET and PEARL STREET, MAIDEN LANE between SOUTH STREET and PEARL STREET, WATER STREET between MAIDEN LANE and PINE STREET, OLD SLIP between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+664285,Shooting Permit,08/02/2022 06:00:00 AM,08/02/2022 10:00:00 PM,07/26/2022 02:51:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+664284,Theater Load in and Load Outs,08/06/2022 12:01:00 AM,08/08/2022 06:00:00 AM,07/26/2022 02:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+664283,Shooting Permit,07/29/2022 11:00:00 AM,07/30/2022 02:30:00 AM,07/26/2022 02:49:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between 2 AVENUE and 3 AVENUE, 1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"11, 8","19, 23",Television,Cable-episodic,United States of America,"10029, 10128"
+664282,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 09:00:00 PM,07/26/2022 02:48:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+664278,Shooting Permit,07/29/2022 06:00:00 AM,07/29/2022 10:00:00 PM,07/26/2022 02:45:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+664272,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 10:00:00 PM,07/26/2022 02:32:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+664266,Theater Load in and Load Outs,08/02/2022 12:01:00 AM,08/03/2022 06:00:00 AM,07/26/2022 02:18:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+664263,Shooting Permit,07/29/2022 09:30:00 AM,07/30/2022 12:00:00 AM,07/26/2022 02:11:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MILTON STREET and CALYER STREET, CALYER STREET between LORIMER STREET and ECKFORD STREET, NOBLE STREET between LORIMER STREET and MANHATTAN AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+664262,Shooting Permit,07/27/2022 08:00:00 AM,07/27/2022 10:00:00 PM,07/26/2022 02:00:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+664247,Shooting Permit,07/28/2022 10:00:00 AM,07/29/2022 01:00:00 AM,07/26/2022 01:14:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,11,23,Television,Cable-episodic,United States of America,10029
+664246,Shooting Permit,07/28/2022 11:00:00 AM,07/29/2022 01:30:00 AM,07/26/2022 01:14:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET, 33 STREET between 31 AVENUE and BROADWAY, 31 AVENUE between 33 STREET and 34 STREET, BROADWAY between 31 STREET and 32 STREET, BROADWAY between 32 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+664244,Shooting Permit,07/29/2022 12:00:00 AM,07/29/2022 03:00:00 PM,07/26/2022 01:09:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,10036
+664243,Shooting Permit,07/28/2022 04:00:00 AM,07/28/2022 11:59:00 PM,07/26/2022 01:05:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+664236,Shooting Permit,07/29/2022 08:00:00 AM,07/30/2022 12:00:00 AM,07/26/2022 12:42:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 65 STREET and EAST 63 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 60 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 60 STREET and EAST 61 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+664228,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 11:59:00 PM,07/26/2022 12:22:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CANAL STREET between 6 AVENUE and WEST BROADWAY, WEST BROADWAY between CANAL STREET and 6 AVENUE, 6 AVENUE between CANAL STREET and WEST BROADWAY, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, CHURCH STREET between CANAL STREET and WALKER STREET, WEST BROADWAY between GRAND STREET and CANAL STREET, WOOSTER STREET between GRAND STREET and CANAL STREET, CANAL STREET between WEST BROADWAY and CHURCH STREET, WALKER STREET between 6 AVENUE and LAFAYETTE STREET",Manhattan,"1, 2","1, 5",Television,Episodic series,United States of America,10013
+664218,Shooting Permit,07/28/2022 09:00:00 AM,07/28/2022 10:00:00 PM,07/26/2022 12:04:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and 31 PLACE, REVIEW AVENUE between 29 STREET and 35 STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+664217,Shooting Permit,08/08/2022 07:00:00 AM,08/08/2022 04:00:00 PM,07/26/2022 11:58:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5","13, 18",Television,Reality,United States of America,"10010, 10019"
+664210,Theater Load in and Load Outs,08/06/2022 12:01:00 AM,08/07/2022 06:00:00 AM,07/26/2022 11:48:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+664206,Theater Load in and Load Outs,08/01/2022 12:01:00 AM,08/05/2022 11:59:00 PM,07/26/2022 11:43:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+664197,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 09:00:00 PM,07/26/2022 11:33:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PRINCE STREET and EAST HOUSTON STREET, DELANCEY STREET between BOWERY and ELDRIDGE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, BROOME STREET between ELIZABETH STREET and BOWERY, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+664173,Shooting Permit,07/29/2022 04:00:00 PM,07/30/2022 04:00:00 AM,07/26/2022 10:50:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT ALLEY between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between CORTLANDT ALLEY and LAFAYETTE STREET, WHITE STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between WHITE STREET and CANAL STREET, WALKER STREET between BROADWAY and CENTRE STREET, WALKER STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Film,Short,United States of America,10013
+664162,Shooting Permit,07/29/2022 10:00:00 AM,07/30/2022 02:00:00 AM,07/26/2022 10:27:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAVEMEYER STREET between NORTH 5 STREET and NORTH 6 STREET, NORTH 6 STREET between HAVEMEYER STREET and MEEKER AVENUE, NORTH 5 STREET between HAVEMEYER STREET and ROEBLING STREET, HAVEMEYER ST between NORTH 5 STREET and METROPOLITAN AVE, ROEBLING STREET between NORTH 5 STREET and NORTH 6 STREET, MESEROLE AVENUE between DOBBIN STREET and GEM STREET, MESEROLE AVENUE between CLIFFORD PLACE and GUERNSEY STREET, DOBBIN STREET between MESEROLE AVENUE and NORMAN STREET, BANKER STREET between MESEROLE AVENUE and CALYER STREET, BANKER STREET between MESEROLE AVENUE and NORMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+664151,Shooting Permit,07/28/2022 07:30:00 AM,07/28/2022 11:00:00 PM,07/26/2022 10:02:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 65 STREET and EAST 63 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 60 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 60 STREET and EAST 61 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+664148,Shooting Permit,07/29/2022 01:00:00 PM,07/30/2022 03:00:00 AM,07/26/2022 09:52:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MC DONALD AVENUE between GREENWOOD AVENUE and VANDERBILT STREET, GREENWOOD AVENUE between EAST 2 STREET and EAST 4 STREET, GREENWOOD AVENUE between EAST 4 STREET and EAST 5 STREET, EAST 5 STREET between VANDERBILT STREET and GREENWOOD AVENUE",Brooklyn,7,72,Film,Feature,United States of America,11218
+664147,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 08:00:00 PM,07/26/2022 09:51:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, RIVERSIDE DRIVE between WEST 91 STREET and WEST 90 STREET",Manhattan,7,"20, 24",Film,Feature,United States of America,10024
+664137,Shooting Permit,07/28/2022 08:00:00 AM,07/28/2022 11:30:00 PM,07/26/2022 09:22:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+664133,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 09:00:00 PM,07/26/2022 08:59:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHN STREET between SOUTH STREET and FRONT STREET, SOUTH STREET between JOHN STREET and FULTON STREET, JOHN STREET between FRONT STREET and WATER STREET, FRONT STREET between JOHN STREET and MAIDEN LANE, JOHN STREET between WATER STREET and PEARL STREET, MAIDEN LANE between SOUTH STREET and PEARL STREET, WATER STREET between MAIDEN LANE and PINE STREET, SOUTH STREET between JOHN STREET and MAIDEN LANE",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038"
+664125,Shooting Permit,07/29/2022 03:00:00 AM,07/30/2022 05:00:00 AM,07/26/2022 07:56:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+664121,Shooting Permit,07/28/2022 10:00:00 AM,07/29/2022 01:00:00 AM,07/26/2022 07:30:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","CATHEDRAL PARKWAY between AMSTERDAM AVENUE and FREDERICK DOUGLASS CIRCLE, MORNINGSIDE DRIVE between WEST 110 STREET and WEST 113 STREET, MANHATTAN AVENUE between CATHEDRAL PARKWAY and WEST 111 STREET, WEST 111 STREET between MANHATTAN AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between FREDERICK DOUGLASS CIRCLE and WEST 111 STREET",Manhattan,"10, 7, 9","24, 26, 28",Television,Episodic series,United States of America,"10025, 10026"
+664116,Shooting Permit,07/29/2022 08:00:00 AM,07/29/2022 12:00:00 PM,07/26/2022 05:48:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 95 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 96 STREET and EAST 94 STREET, 5 AVENUE between EAST 96 STREET and EAST 94 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10128
+664090,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 10:00:00 PM,07/25/2022 08:22:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 41 STREET between SEVENTH AVENUE and BROADWAY, WEST 41 STREET between BROADWAY and SIXTH AVENUE, BROADWAY between WEST 42 STREET and WEST 40 STREET, SIXTH AVENUE between WEST 43 STREET and WEST 42 STREET, SIXTH AVENUE between WEST 40 STREET and WEST 41 STREET, PARK AVENUE between EAST 53 STREET and EAST 48 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10018, 10022, 10036, 10152, 10171"
+664085,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 08:00:00 PM,07/25/2022 08:10:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 59 STREET and WEST 62 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 59 STREET and WEST 60 STREET, PARK AVENUE between EAST 35 STREET and EAST 38 STREET, EAST 38 STREET between PARK AVENUE and MADISON AVENUE, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 46 STREET and EAST 49 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 37 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"4, 5, 6, 7","17, 18, 20",Television,Episodic series,United States of America,"10016, 10017, 10019, 10023, 10167, 10171, 10172, 10177"
+664084,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 10:00:00 PM,07/25/2022 08:00:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS STREET between GRAND STREET and DELANCEY STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+664082,Theater Load in and Load Outs,08/02/2022 12:01:00 AM,08/04/2022 06:00:00 AM,07/25/2022 07:43:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+664070,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 10:00:00 PM,07/25/2022 05:52:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",LOCUST AVENUE between HYLAN BOULEVARD and DEAD END,Staten Island,2,122,Television,Episodic series,United States of America,10306
+664069,Shooting Permit,07/28/2022 10:00:00 AM,07/29/2022 12:00:00 AM,07/25/2022 05:39:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 18 STREET and EAST 19 STREET, 1 AVENUE between EAST 15 STREET and EAST 16 STREET, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, EAST 18 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,13,Film,Feature,United States of America,"10003, 10009"
+664068,Shooting Permit,07/28/2022 10:00:00 AM,07/29/2022 12:00:00 AM,07/25/2022 05:37:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+664040,Shooting Permit,07/27/2022 07:30:00 AM,07/27/2022 11:00:00 PM,07/25/2022 04:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 65 STREET and EAST 63 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 60 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 60 STREET and EAST 61 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+664034,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 11:00:00 PM,07/25/2022 04:38:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 47 ROAD and 49 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, SKILLMAN AVENUE between 45 STREET and 49 STREET, VAN DAM STREET between 47 AVENUE and THOMSON AVENUE, THOMSON AVENUE between VAN DAM STREET and 31 STREET, THOMSON AVENUE between 31 STREET and 30 PLACE, 31 STREET between THOMSON AVENUE and 47 AVENUE, 47 AVENUE between VAN DAM STREET and 31 STREET",Queens,2,108,Television,Cable-episodic,United States of America,"11101, 11104, 11109"
+664026,Shooting Permit,08/03/2022 07:00:00 AM,08/03/2022 11:00:00 PM,07/25/2022 04:14:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE,Manhattan,7,"20, 24",Commercial,Commercial,United States of America,10024
+664022,Shooting Permit,07/27/2022 02:00:00 PM,07/28/2022 02:00:00 AM,07/25/2022 04:10:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between DELANCEY STREET and BROOME STREET, EAST 7 STREET between AVENUE C and AVENUE D",Manhattan,"2, 3","5, 7, 9",Television,Pilot,United States of America,"10002, 10009, 10012"
+664020,Rigging Permit,07/26/2022 07:00:00 AM,07/26/2022 05:00:00 PM,07/25/2022 04:05:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET,Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+664015,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 10:00:00 PM,07/25/2022 03:48:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between ALBERMARLE ROAD and BEVERLEY ROAD, CONEY ISLAND AVENUE between SLOCUM PLACE and DORCHESTER ROAD, CORTELYOU ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, CONEY ISLAND AVENUE between BEVERLEY ROAD and LEWIS PLACE, BEVERLEY ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, BEVERLEY ROAD between STRATFORD ROAD and RUGBY ROAD, ARGYLE ROAD between ALBERMARLE ROAD and BEVERLEY ROAD",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226"
+664008,Shooting Permit,07/27/2022 10:00:00 AM,07/27/2022 11:59:00 PM,07/25/2022 03:33:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 86 STREET and EAST 89 STREET, EAST 87 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 82 STREET and EAST 84 STREET, EAST 84 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 81 STREET and EAST 84 STREET, EAST 82 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+664005,Shooting Permit,07/28/2022 04:00:00 PM,07/29/2022 04:00:00 AM,07/25/2022 03:28:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","STATE STREET between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET",Brooklyn,"1, 2, 6","76, 84, 90",Television,Episodic series,United States of America,"11201, 11217, 11231, 11249"
+663946,Theater Load in and Load Outs,08/04/2022 12:01:00 AM,08/06/2022 11:59:00 PM,07/25/2022 01:42:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+663939,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 02:00:00 PM,07/25/2022 01:31:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Film,Feature,United States of America,10474
+663925,Shooting Permit,07/29/2022 06:00:00 AM,07/29/2022 10:00:00 PM,07/25/2022 12:18:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+663924,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 10:00:00 PM,07/25/2022 12:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+663923,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 10:00:00 PM,07/25/2022 12:17:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+663914,Shooting Permit,07/28/2022 09:00:00 AM,07/28/2022 09:00:00 PM,07/25/2022 12:04:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+663910,Shooting Permit,07/29/2022 01:00:00 PM,07/30/2022 01:00:00 AM,07/25/2022 11:56:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 115 STREET and WEST 112 STREET, WEST 114 STREET between 7 AVENUE and ST NICHOLAS AVENUE, WEST 113 STREET between 7 AVENUE and ST NICHOLAS AVENUE",Manhattan,10,28,Film,Feature,United States of America,10026
+663904,Shooting Permit,07/26/2022 07:30:00 AM,07/26/2022 08:30:00 PM,07/25/2022 11:43:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCY STREET between BOWERY and FORSYTH STREET, DELANCY STREET between FORSYTH STREET and ELDRIDGE STREET, ELIZABETH STREET between BROOME STREET and GRAND STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between KENMARE STREET and BROOME STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, GRAND STREET between CHRYSTIE STREET and ELDRIDGE STREET, FORSYTH STREET between DELANCY STREET and GRAND STREET, BOWERY between KENMARE STREET and SPRING STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+663888,Shooting Permit,07/28/2022 08:00:00 AM,07/28/2022 11:00:00 PM,07/25/2022 11:12:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","145 PLACE between 13 ROAD and 14 AVENUE, 14 AVENUE between PARSONS BOULEVARD and 146 PLACE, 13 AVENUE between 145 PLACE and 146 STREET, 144 PLACE between 14 AVENUE and 145 PLACE, 13 ROAD between PARSONS BOULEVARD and 145 PLACE, PARSONS BOULEVARD between 14 AVENUE and 13 ROAD",Queens,7,109,Television,Cable-episodic,United States of America,"11357, 11359"
+663881,Shooting Permit,07/27/2022 09:00:00 AM,07/27/2022 10:00:00 PM,07/25/2022 11:06:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and 31 PLACE, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+663874,Theater Load in and Load Outs,07/30/2022 12:01:00 AM,07/30/2022 11:59:00 PM,07/25/2022 10:54:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+663869,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 10:00:00 PM,07/25/2022 10:35:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 36 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+663867,Shooting Permit,07/29/2022 05:00:00 PM,07/30/2022 07:00:00 AM,07/25/2022 10:29:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between BOWERY and CLEVELAND PLACE, DELANCEY STREET between BOWERY and FORSYTH STREET, BROOME STREET between BOWERY and ELIZABETH STREET, GRAND STREET between CHRYSTIE STREET and MULBERRY STREET, HESTER STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between GRAND STREET and BROOME STREET, BOWERY between BROOME STREET and HESTER STREET, BOWERY between GRAND STREET and HESTER STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+663865,Shooting Permit,08/02/2022 07:00:00 AM,08/02/2022 09:00:00 PM,07/25/2022 10:16:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between EAST 144 STREET and EAST 140 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 149 STREET, GRAND CONCOURSE between EAST 153 STREET and EAST 158 STREET",Bronx,"1, 4","40, 44",Television,Episodic series,United States of America,10451
+663863,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 10:00:00 PM,07/25/2022 10:06:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+663859,Shooting Permit,07/28/2022 06:30:00 AM,07/28/2022 11:00:00 PM,07/25/2022 09:59:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",REMSEN STREET between HICKS STREET and MONTAGUE TERRACE,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+663853,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 08:00:00 PM,07/25/2022 09:50:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between HANSON PLACE and FULTON STREET,Brooklyn,2,88,WEB,Not Applicable,United States of America,11217
+663852,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 08:00:00 PM,07/25/2022 09:49:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between HANSON PLACE and FULTON STREET,Brooklyn,2,88,WEB,Not Applicable,United States of America,11217
+663849,Shooting Permit,07/27/2022 08:00:00 AM,07/27/2022 11:00:00 PM,07/25/2022 09:31:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+663844,Shooting Permit,07/28/2022 12:00:00 PM,07/29/2022 12:00:00 AM,07/25/2022 09:19:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 115 STREET and WEST 112 STREET, WEST 114 STREET between 7 AVENUE and ST NICHOLAS AVENUE, WEST 113 STREET between 7 AVENUE and ST NICHOLAS AVENUE",Manhattan,10,28,Film,Feature,United States of America,10026
+663842,Shooting Permit,07/27/2022 10:00:00 AM,07/28/2022 01:00:00 AM,07/25/2022 09:07:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOX STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, ASH STREET between MANHATTAN AVENUE and MCGUINESS BLVD, MANHATTAN AVENUE between DUPONT STREET and COMMERCIAL STREET, MANHATTAN AVENUE between DUPONT STREET and EAGLE STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+663840,Shooting Permit,07/27/2022 09:00:00 AM,07/27/2022 07:00:00 PM,07/25/2022 08:56:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE STREET between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK PLACE between MESEROLE STREET and MONTROSE AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+663838,Shooting Permit,07/27/2022 11:00:00 AM,07/27/2022 11:00:00 PM,07/25/2022 08:47:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 115 STREET and WEST 112 STREET, WEST 114 STREET between 7 AVENUE and ST NICHOLAS AVENUE, WEST 113 STREET between 7 AVENUE and ST NICHOLAS AVENUE",Manhattan,10,28,Film,Feature,United States of America,10026
+663829,Theater Load in and Load Outs,07/28/2022 06:00:00 AM,07/30/2022 11:59:00 PM,07/25/2022 03:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, DEAN STREET between 6 AVENUE and FLATBUSH AVENUE, FLATBUSH AVENUE between DEAN STREET and ATLANTIC AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+663811,Shooting Permit,07/27/2022 10:00:00 AM,07/28/2022 01:00:00 AM,07/24/2022 10:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 18 STREET and EAST 19 STREET, 1 AVENUE between EAST 15 STREET and EAST 16 STREET, 1 AVENUE between EAST 17 STREET and EAST 18 STREET",Manhattan,6,13,Film,Feature,United States of America,"10003, 10009"
+663804,Shooting Permit,07/27/2022 08:30:00 AM,07/27/2022 10:30:00 PM,07/24/2022 08:56:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+663802,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 07:00:00 PM,07/24/2022 08:22:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between COOPER SQUARE and 2 AVENUE, EAST 5 STREET between 2 AVENUE and COOPER SQUARE",Manhattan,"2, 3",9,Film,Feature,United States of America,10003
+663790,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 10:00:00 PM,07/24/2022 04:13:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS STREET between GRAND STREET and DELANCEY STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+663744,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 11:15:00 PM,07/23/2022 04:26:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663729,Shooting Permit,07/28/2022 10:00:00 AM,07/29/2022 02:00:00 AM,07/23/2022 01:52:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663724,DCAS Prep/Shoot/Wrap Permit,07/27/2022 05:00:00 PM,07/28/2022 02:00:00 AM,07/23/2022 12:51:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between BAXTER STREET and CENTRE STREET, CENTRE STREET between LEONARD STREET and WORTH STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, LAFAYETTE STREET between READE STREET and DUANE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and PIKE STREET, PIKE STREET between EAST BROADWAY and HENRY STREET",Manhattan,"1, 3","5, 7",Television,Episodic series,United States of America,"10002, 10007, 10013"
+663703,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 11:00:00 PM,07/23/2022 08:36:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 18 STREET and EAST 19 STREET, 1 AVENUE between EAST 15 STREET and EAST 16 STREET, 1 AVENUE between EAST 17 STREET and EAST 18 STREET",Manhattan,6,13,Film,Feature,United States of America,"10003, 10009"
+663690,Shooting Permit,07/27/2022 08:00:00 AM,07/27/2022 06:00:00 PM,07/22/2022 10:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARROW STREET between WEST 4 STREET and 7 AVENUE SOUTH, WEST 4 STREET between BARROW STREET and GROVE STREET, WEST 4 STREET between BARROW STREET and JONES STREET, WEST WASHINGTON PLACE between GROVE STREET and AVENUE OF THE AMERICAS, 6 AVENUE between WAVERLY PLACE and WEST 4 STREET, AVENUE OF THE AMERICAS between WEST 8 STREET and WEST 10 STREET, WEST 9 STREET between AVENUE OF THE AMERICAS and 5 AVENUE",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+663652,Theater Load in and Load Outs,07/28/2022 12:01:00 AM,07/29/2022 06:00:00 AM,07/22/2022 04:47:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+663650,Theater Load in and Load Outs,07/26/2022 06:00:00 AM,07/31/2022 05:00:00 AM,07/22/2022 04:41:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+663602,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 10:00:00 PM,07/22/2022 02:51:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE AVENUE between ECKFORD STREET and MANHATTAN AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+663594,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 09:00:00 PM,07/22/2022 02:33:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between GRAND STREET and SOUTH 1 STREET, MYRTLE AVENUE between NORTH PORTLAND AVENUE and WASHINGTON PARK",Brooklyn,"1, 2","88, 90",Commercial,Commercial,United States of America,"11201, 11205, 11249"
+663593,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 07:00:00 PM,07/22/2022 02:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",HUDSON STREET between BANK STREET and WEST 11 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+663591,Shooting Permit,07/26/2022 08:00:00 AM,07/26/2022 10:00:00 PM,07/22/2022 02:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+663590,Shooting Permit,07/26/2022 08:30:00 AM,07/26/2022 11:30:00 PM,07/22/2022 02:29:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 39 PLACE and 40 STREET, 43 AVENUE between 40 STREET and 41 STREET, QUEENS BOULEVARD between 40 STREET and 41 STREET, QUEENS BOULEVARD between 39 PLACE and 40 STREET, QUEENS BOULEVARD between 39 STREET and 39 PLACE, QUEENS BOULEVARD between 41 STREET and 42 STREET, 40 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11104
+663585,Shooting Permit,07/27/2022 10:00:00 AM,07/28/2022 02:00:00 AM,07/22/2022 02:17:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 94 STREET between DITMAS AVENUE and AVENUE D, AVENUE D between EAST 92 STREET and EAST 96 STREET, FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET",Brooklyn,"17, 18","67, 69",Television,Cable-episodic,United States of America,11236
+663565,Shooting Permit,08/01/2022 09:00:00 AM,08/01/2022 09:00:00 PM,07/22/2022 01:18:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between HANOVER STREET and SOUTH STREET, WALL STREET between PEARL STREET and FRONT STREET, WATER STREET between OLD SLIP and WALL STREET, PEARL STREET between HANOVER SQUARE and WALL STREET, MAIDEN LANE between PEARL STREET and FRONT STREET",Manhattan,1,1,Film,Short,United States of America,"10005, 10038"
+663553,Theater Load in and Load Outs,08/03/2022 04:01:00 PM,08/06/2022 11:59:00 PM,07/22/2022 12:40:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between JEROME AVENUE and RIVER AVENUE,Bronx,4,44,Theater,Theater,United States of America,"10451, 10452"
+663551,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 10:00:00 PM,07/22/2022 12:39:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 53 STREET and EAST 57 STREET, 5 AVENUE between EAST 63 STREET and EAST 60 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 59 STREET and EAST 61 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+663548,Shooting Permit,07/28/2022 08:00:00 AM,07/28/2022 11:59:00 PM,07/22/2022 12:34:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 4 STREET, NORTH 12 STREET between KENT AVENUE and BERRY STREET",Brooklyn,1,94,WEB,Not Applicable,United States of America,"11222, 11249"
+663536,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 08:30:00 PM,07/22/2022 12:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between DOCK STREET and OLD FULTON STREET, WATER STREET between DOCK STREET and MAIN STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+663535,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 11:00:00 PM,07/22/2022 12:03:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 12 STREET and 21 STREET, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+663531,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 10:00:00 PM,07/22/2022 11:57:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, FURMANVILLE AVENUE between 78 STREET and 79 PLACE, JUNIPER VALLEY ROAD between 78 STREET and 79 PLACE, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, JUNIPER BLVD SOUTH between 77 PLACE and DRY HARBOR ROAD",Queens,5,104,Television,Episodic series,United States of America,11379
+663529,Shooting Permit,07/27/2022 09:00:00 AM,07/27/2022 09:00:00 PM,07/22/2022 11:52:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+663527,Shooting Permit,07/25/2022 08:30:00 AM,07/25/2022 10:30:00 PM,07/22/2022 11:46:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between PARK AVENUE and 6 AVENUE, WEST 52 STREET between 7 AVENUE and BROADWAY, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, 7 AVENUE between WEST 56 STREET and WEST 57 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10020, 10022, 10106, 10111"
+663525,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 11:59:00 PM,07/22/2022 11:40:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 6 STREET between 1 AVENUE and AVENUE A, EAST 6 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE B and AVENUE C, AVENUE B between EAST 6 STREET and EAST 5 STREET, AVENUE B between EAST 5 STREET and EAST 4 STREET, AVENUE A between EAST 10 STREET and EAST 7 STREET, EAST 7 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 7 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 5 STREET, EAST 6 STREET between AVENUE B and AVENUE C, EAST 6 STREET between AVENUE B and AVENUE C, EAST 5TH STREET between AVENUE B and AVENUE C",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+663520,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 11:00:00 PM,07/22/2022 11:32:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+663516,Shooting Permit,08/01/2022 07:00:00 AM,08/01/2022 09:00:00 PM,07/22/2022 11:25:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663515,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 09:00:00 PM,07/22/2022 11:25:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663514,Shooting Permit,07/28/2022 07:00:00 AM,07/28/2022 09:00:00 PM,07/22/2022 11:24:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663513,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 09:00:00 PM,07/22/2022 11:21:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663511,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 10:00:00 PM,07/22/2022 11:12:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+663505,Shooting Permit,07/26/2022 07:30:00 AM,07/26/2022 11:00:00 PM,07/22/2022 10:42:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 57 STREET and EAST 55 STREET, 5 AVENUE between EAST 60 STREET and EAST 63 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 59 STREET and EAST 61 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, EAST 55 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+663502,Rigging Permit,07/26/2022 06:00:00 AM,07/26/2022 11:59:00 PM,07/22/2022 10:26:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between STERLING PLACE and ST JOHN'S PLACE,Brooklyn,6,78,Commercial,Commercial,United States of America,11217
+663496,Shooting Permit,07/23/2022 10:00:00 AM,07/23/2022 10:00:00 PM,07/22/2022 10:14:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+663482,Shooting Permit,07/26/2022 01:00:00 PM,07/27/2022 01:00:00 AM,07/22/2022 09:09:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 115 STREET and WEST 112 STREET, WEST 114 STREET between 7 AVENUE and ST NICHOLAS AVENUE, WEST 113 STREET between 7 AVENUE and ST NICHOLAS AVENUE",Manhattan,10,28,Film,Feature,United States of America,10026
+663481,Shooting Permit,08/03/2022 08:00:00 AM,08/03/2022 09:00:00 PM,07/22/2022 09:04:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","BATTERY PLACE between LITTLE WEST STREET and 1 PLACE, 1 PLACE between BATTERY PLACE and LITTLE WEST STREET, LITTLE WEST STREET between 1 PLACE and 2 PLACE",Manhattan,1,1,Film,Feature,United States of America,"10004, 10280"
+663480,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 09:00:00 PM,07/22/2022 08:50:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663457,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 10:00:00 PM,07/21/2022 09:45:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS STREET between GRAND STREET and DELANCEY STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+663442,Shooting Permit,07/25/2022 08:00:00 AM,07/25/2022 10:30:00 PM,07/21/2022 07:16:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 8 AVENUE and 9 AVENUE, WEST 17 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 17 STREET and WEST 19 STREET, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+663414,Shooting Permit,07/27/2022 08:00:00 AM,07/27/2022 09:00:00 PM,07/21/2022 04:25:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between EAST 4 STREET and ASTOR PLACE",Manhattan,2,"6, 9",Television,Made for TV/mini-series,United States of America,"10003, 10012"
+663407,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 10:00:00 PM,07/21/2022 04:12:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY AVENUE between JUNIUS STREET and HINSDALE STREET, EAST NEW YORK AVENUE between JUNIUS STREET and VAN SINDEREN AVENUE, GEORGIA AVENUE between LIBERTY AVENUE and BELMONT AVENUE, JUNIUS STREET between GLENMORE AVENUE and LIBERTY AVENUE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11212"
+663399,Shooting Permit,07/28/2022 06:30:00 AM,07/28/2022 08:00:00 PM,07/21/2022 03:52:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 19 STREET and GRAMERCY PARK SOUTH, IRVING PLACE between EAST 19 STREET and GRAMERCY PARK SOUTH, EAST 19 STREET between 3 AVENUE and IRVING PLACE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"5, 6","13, 14, 18",Film,Feature,United States of America,"10003, 10036"
+663396,Shooting Permit,07/26/2022 08:00:00 AM,07/26/2022 09:00:00 PM,07/21/2022 03:46:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",VARICK STREET between LAIGHT STREET and BEACH STREET,Manhattan,1,1,Television,Made for TV/mini-series,United States of America,10013
+663392,Shooting Permit,07/26/2022 02:00:00 PM,07/27/2022 03:00:00 AM,07/21/2022 03:40:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between STANTON STREET and RIVINGTON STREET, ALLEN STREET between EAST HOUSTON STREET and STANTON STREET, ALLEN STREET between RIVINGTON STREET and DELANCEY STREET, BROOME STREET between ELDRIDGE STREET and ALLEN STREET, ALLEN STREET between BROOME STREET and DELANCEY STREET, NORFOLK STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,"5, 7",Television,Pilot,United States of America,10002
+663371,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 11:00:00 AM,07/21/2022 02:45:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 109 STREET and WEST 107 STREET,Manhattan,"64, 7","22, 24",Television,Cable-episodic,United States of America,10025
+663353,Shooting Permit,07/25/2022 10:00:00 AM,07/25/2022 11:00:00 PM,07/21/2022 01:59:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between HUDSON STREET and VARICK STREET, THOMPSON STREET between GRAND STREET and 6 AVENUE, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,"1, 2",1,Television,Made for TV/mini-series,United States of America,10013
+663323,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 09:00:00 PM,07/21/2022 12:54:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD, DORCHESTER ROAD between EAST 19 STREET and EAST 18 STREET",Brooklyn,"14, 55","70, 78",WEB,Not Applicable,United States of America,"11215, 11226"
+663322,Shooting Permit,07/25/2022 09:00:00 AM,07/25/2022 11:59:00 PM,07/21/2022 12:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 77 STREET, WEST 81 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and WEST 85 STREET, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, 7 AVENUE between WEST 59 STREET and WEST 58 STREET, WEST 58 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10024"
+663312,Shooting Permit,07/24/2022 03:00:00 PM,07/25/2022 03:00:00 AM,07/21/2022 12:29:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",8 STREET between 4 AVENUE and 3 AVENUE,Brooklyn,6,78,Film,Feature,United States of America,11215
+663303,Shooting Permit,08/02/2022 08:00:00 AM,08/02/2022 09:00:00 PM,07/21/2022 12:08:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BATTERY PLACE between LITTLE WEST STREET and 1 PLACE, 1 PLACE between BATTERY PLACE and LITTLE WEST STREET, LITTLE WEST STREET between 1 PLACE and 2 PLACE",Manhattan,1,1,Film,Feature,United States of America,"10004, 10280"
+663298,Shooting Permit,07/28/2022 06:00:00 AM,07/28/2022 11:59:00 PM,07/21/2022 11:58:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+663285,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 08:00:00 PM,07/21/2022 11:23:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET, RIVERSIDE DRIVE between WEST 88 STREET and WEST 87 STREET, RIVERSIDE DRIVE between WEST 89 STREET and WEST 88 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+663270,Shooting Permit,07/25/2022 02:00:00 PM,07/25/2022 11:59:00 PM,07/21/2022 10:38:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 3 AVENUE and BOND STREET,Brooklyn,2,84,Television,Episodic series,United States of America,11217
+663259,Shooting Permit,07/23/2022 07:00:00 AM,07/23/2022 09:00:00 PM,07/21/2022 10:20:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","POINT CRESCENT between 141 STREET and BOULEVARD, SOUTH DRIVE between BOULEVARD and MALBA DRIVE, BOULEVARD between POINT CRESCENT and MALBA DRIVE, 3RD AVE between WHITESTONE EXPRESSWAY and 147TH ST, WHITESTONE EXPRESSWAY between 3RD AVE and 4TH AVE, 147 STREET between 3 AVENUE and 6 AVENUE",Queens,7,109,Television,Episodic series,United States of America,11357
+663258,Shooting Permit,07/24/2022 04:00:00 AM,07/24/2022 02:00:00 PM,07/21/2022 10:19:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+663250,Shooting Permit,07/23/2022 04:00:00 AM,07/23/2022 02:00:00 PM,07/21/2022 10:07:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+663246,Shooting Permit,07/25/2022 12:00:00 PM,07/26/2022 12:00:00 AM,07/21/2022 09:45:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASTOR PLACE between BROADWAY and LAFAYETTE STREET, BROADWAY between EAST 8 STREET and WAVERLY PLACE, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET",Manhattan,"2, 3","6, 9",Film,Feature,United States of America,10003
+663244,Shooting Permit,07/26/2022 09:00:00 AM,07/26/2022 09:00:00 PM,07/21/2022 09:34:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+663242,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 10:00:00 PM,07/21/2022 09:26:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+663241,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 10:00:00 PM,07/21/2022 09:26:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+663238,Shooting Permit,07/25/2022 02:00:00 AM,07/25/2022 09:00:00 PM,07/21/2022 09:06:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+663233,Shooting Permit,07/24/2022 07:00:00 AM,07/24/2022 09:00:00 PM,07/21/2022 08:17:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE, STEWART AVENUE between HARRISON PLACE and JOHNSON AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, HARRISON PLACE between STEWART AVENUE and FLUSHING AVENUE",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+663232,Shooting Permit,07/23/2022 09:00:00 AM,07/23/2022 11:59:00 PM,07/21/2022 08:03:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE, STEWART AVENUE between HARRISON PLACE and JOHNSON AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, HARRISON PLACE between STEWART AVENUE and FLUSHING AVENUE",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+663229,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 11:00:00 PM,07/21/2022 07:44:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between EAST 21 STREET and FLATBUSH AVENUE, FLATBUSH AVENUE between CHURCH AVENUE and SNYDER AVENUE, EAST 21 STREET between CHURCH AVENUE and ALBEMARLE TERRACE",Brooklyn,14,70,Film,Feature,United States of America,11226
+663225,Shooting Permit,07/29/2022 09:30:00 AM,07/29/2022 11:59:00 PM,07/21/2022 07:04:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+663224,Shooting Permit,07/28/2022 09:00:00 AM,07/28/2022 11:00:00 PM,07/21/2022 07:04:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 134 STREET between WILLOW AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 133 STREET and EAST 134 STREET, EAST 134 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+663204,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 10:00:00 PM,07/20/2022 09:04:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS STREET between GRAND STREET and DELANCEY STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+663200,Shooting Permit,07/25/2022 07:30:00 AM,07/25/2022 09:30:00 PM,07/20/2022 08:32:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+663181,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 09:00:00 PM,07/20/2022 06:12:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+663168,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 09:00:00 PM,07/20/2022 05:18:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between ST JOHNS PLACE and STERLING PLACE, ST JOHNS PLACE between 6 AVENUE and 5 AVENUE, STERLING PLACE between 6 AVENUE and 5 AVENUE",Brooklyn,6,78,Commercial,Commercial,United States of America,11217
+663112,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 08:30:00 PM,07/20/2022 03:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 30 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, 3 AVENUE between EAST 28 STREET and EAST 29 STREET, EAST 29 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 29 STREET and EAST 30 STREET, EAST 30 STREET between 2 AVENUE and 3 AVENUE, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 24 STREET and EAST 26 STREET, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+663102,Shooting Permit,07/26/2022 08:00:00 AM,07/26/2022 11:00:00 PM,07/20/2022 03:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+663097,Shooting Permit,07/22/2022 02:00:00 PM,07/23/2022 04:00:00 AM,07/20/2022 03:36:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 140 STREET and WEST 145 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 138 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 137 STREET and WEST 138 STREET, EDGECOMBE AVENUE between WEST 138 STREET and WEST 139 STREET, ST NICHOLAS AVENUE between WEST 134 STREET and WEST 135 STREET, ST NICHOLAS AVENUE between WEST 138 STREET and WEST 140 STREET, WEST 139 STREET between ST NICHOLAS AVENUE and EDGECOMBE AVENUE, FREDERICK DOUGLASS BOULEVARD between WEST 135 STREET and WEST 137 STREET, WEST 137 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ST NICHOLAS AVENUE between WEST 135 STREET and WEST 136 STREET",Manhattan,"10, 9","26, 30, 32",Television,Episodic series,United States of America,"10030, 10031"
+663081,Shooting Permit,07/26/2022 08:00:00 AM,07/26/2022 11:00:00 PM,07/20/2022 03:07:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between LORIMER STREET and DOBBIN STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, WITHER ST. between UNION AVE. and LORIMER ST., UNION AVENUE between FROST STREET and JACKSON STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+663063,Theater Load in and Load Outs,07/29/2022 12:01:00 AM,07/29/2022 11:59:00 PM,07/20/2022 02:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+663061,Theater Load in and Load Outs,07/28/2022 12:01:00 AM,07/28/2022 11:59:00 PM,07/20/2022 02:39:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+663052,Shooting Permit,07/21/2022 12:00:00 AM,07/21/2022 12:00:00 PM,07/20/2022 02:24:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Television,Morning Show,United States of America,10036
+663048,Shooting Permit,07/25/2022 09:00:00 AM,07/25/2022 09:00:00 PM,07/20/2022 02:20:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+663037,Shooting Permit,07/27/2022 06:30:00 AM,07/27/2022 08:30:00 PM,07/20/2022 02:03:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11238
+663036,Shooting Permit,07/26/2022 06:30:00 AM,07/26/2022 08:30:00 PM,07/20/2022 02:03:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+662998,Shooting Permit,07/22/2022 11:00:00 AM,07/22/2022 10:00:00 PM,07/20/2022 01:01:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEROY STREET between BEDFORD STREET and BLEECKER STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, 6 AVENUE between WEST 4 STREET and WAVERLY PLACE, 6 AVENUE between BEDFORD STREET and DOWNING STREET, CARMINE STREET between 6 AVENUE and BLEECKER STREET, BLEECKER STREET between LEROY STREET and DOWNING STREET, WASHINGTON PLACE between WASHINGTON SQUARE WEST and 6 AVENUE, WASHINGTON SQUARE WEST between WAVERLY PLACE and WASHINGTON PLACE",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10014"
+662978,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 11:00:00 PM,07/20/2022 12:06:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662971,Shooting Permit,07/22/2022 08:00:00 AM,07/22/2022 11:30:00 PM,07/20/2022 11:55:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, CADMAN PLAZA EAST between TILLARY STREET and JOHNSON STREET, JOHNSON STREET between CADMAN PLAZA EAST and ADAMS STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, BRIDGE STREET between FULTON STREET and MYRTLE AVENUE, WILLOUGHBY STREET between LAWRENCE STREET and BRIDGE STREET, LAWRENCE STREET between WILLOUGHBY STREET and FULTON STREET, PARK AVE between NAVY ST and N ELLIOTT PL, PARK AVENUE between NORTH ELLIOTT PLACE and NORTH PORTLAND AVENUE, NORTH ELLIOTT PLACE between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205"
+662968,Shooting Permit,07/22/2022 11:00:00 AM,07/22/2022 11:59:00 PM,07/20/2022 11:48:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between PERRY STREET and WEST 12 STREET, WASHINGTON STREET between BETHUNE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and JANE STREET, WEST 14 STREET between 7 AVENUE and 8 AVENUE, WEST 14 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, 1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"11, 2, 4","10, 23, 6",Television,Cable-episodic,United States of America,"10011, 10014, 10029"
+662964,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 11:00:00 PM,07/20/2022 11:41:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662956,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 11:00:00 PM,07/20/2022 11:26:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+662952,Shooting Permit,07/22/2022 09:30:00 AM,07/22/2022 11:30:00 PM,07/20/2022 11:08:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662943,Shooting Permit,07/27/2022 07:00:00 AM,07/27/2022 10:00:00 PM,07/20/2022 10:47:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 100 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 100 STREET and WEST 101 STREET, CENTRAL PARK WEST between WEST 100 STREET and WEST 97 STREET, CENTRAL PARK WEST between WEST 102 STREET and WEST 101 STREET, WEST 102 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 101 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, COLUMBUS AVENUE between WEST 100 STREET and WEST 106 STREET, 7 AVENUE between WEST 41 STREET and WEST 42 STREET, 7 AVENUE between WEST 40 STREET and WEST 41 STREET, BROADWAY between WEST 41 STREET and WEST 40 STREET, WEST 44 STREET between 6 AVENUE and BROADWAY",Manhattan,"5, 64, 7","14, 18, 22, 24",Television,Cable-episodic,United States of America,"10017, 10018, 10025, 10036"
+662942,Shooting Permit,07/28/2022 04:00:00 PM,07/29/2022 06:00:00 AM,07/20/2022 10:44:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and STARR AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662941,Shooting Permit,08/02/2022 09:00:00 AM,08/02/2022 11:45:00 PM,07/20/2022 10:44:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between CALYER STREET and OAK STREET, OAK STREET between WEST STREET and FRANKLIN STREET, MILTON STREET between FRANKLIN STREET and MANHATTAN AVENUE, FRANKLIN STREET between MILTON STREET and NOBLE STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+662940,Shooting Permit,07/22/2022 01:00:00 PM,07/23/2022 01:00:00 AM,07/20/2022 10:33:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 5 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 30 STREET and EAST 29 STREET, EAST 29 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,5,"13, 14",Film,Feature,United States of America,"10001, 10010, 10016"
+662929,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 11:59:00 PM,07/20/2022 09:52:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+662916,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 10:00:00 PM,07/20/2022 08:49:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662915,Shooting Permit,07/26/2022 08:00:00 AM,07/26/2022 09:00:00 PM,07/20/2022 08:28:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEROY STREET between BEDFORD STREET and BLEECKER STREET, BLEECKER STREET between CARMINE STREET and MORTON STREET, 7 AVENUE SOUTH between ST LUKES PLACE and BARROW STREET, LA GUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, BLEECKER ST between LAGUARDIA PLACE and WOOSTER ST, STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Manhattan,2,"108, 6",Television,Episodic series,United States of America,"10012, 10014, 11101"
+662911,Shooting Permit,07/27/2022 07:30:00 AM,07/27/2022 09:30:00 PM,07/20/2022 07:05:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+662910,Shooting Permit,07/26/2022 07:30:00 AM,07/26/2022 09:30:00 PM,07/20/2022 07:04:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+662890,Shooting Permit,07/22/2022 11:00:00 AM,07/23/2022 01:00:00 AM,07/19/2022 07:48:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between PUTNAM AVENUE and GATES AVENUE, GRAND AVENUE between GATES AVENUE and GREENE AVENUE, DEKALB AVENUE between WASHINGTON PARK and FORT GREENE PLACE, WASHINGTON PARK between DEKALB AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between WASHINGTON PARK and NORTH PORTLAND AVENUE, WAVERLY AVENUE between FULTON STREET and ATLANTIC AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217, 11238"
+662885,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 10:00:00 PM,07/19/2022 07:29:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+662881,Shooting Permit,07/25/2022 12:00:00 PM,07/25/2022 11:59:00 PM,07/19/2022 07:12:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 8 AVENUE and 9 AVENUE,Manhattan,"4, 5","14, 18",WEB,Not Applicable,United States of America,"10019, 10036"
+662872,Shooting Permit,07/22/2022 11:00:00 AM,07/23/2022 03:00:00 AM,07/19/2022 06:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between NORMAN AVENUE and MESEROLE AVENUE, JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662870,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 09:00:00 PM,07/19/2022 05:28:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 72 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 71 STREET between COLUMBUS AVENUE and BROADWAY, CENTRAL PARK WEST between WEST 73 STREET and WEST 74 STREET, CENTRAL PARK WEST between WEST 69 STREET and WEST 71 STREET, COLUMBUS AVENUE between WEST 75 STREET and WEST 72 STREET, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,10023
+662860,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 11:00:00 PM,07/19/2022 05:06:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+662850,Shooting Permit,07/22/2022 08:00:00 AM,07/22/2022 10:00:00 PM,07/19/2022 04:51:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between EAST 21 STREET and FLATBUSH AVENUE, FLATBUSH AVENUE between CHURCH AVENUE and SNYDER AVENUE, EAST 21 STREET between CHURCH AVENUE and KENMORE TERRACE",Brooklyn,14,70,Film,Feature,United States of America,11226
+662834,Shooting Permit,07/22/2022 07:00:00 PM,07/23/2022 09:00:00 AM,07/19/2022 04:26:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BANK STREET between WEST 4 STREET and BLEECKER STREET, WEST 12 STREET between HUDSON STREET and 8 AVENUE, HUDSON STREET between PERRY STREET and BANK STREET, WEST 11 STREET between BLEECKER STREET and HUDSON STREET, WEST 12 STREET between 8 AVENUE and WEST 4 STREET",Manhattan,2,6,Television,Pilot,United States of America,10014
+662823,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 10:00:00 PM,07/19/2022 04:02:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 16 STREET and WEST 19 STREET, 9 AVENUE between WEST 18 STREET and WEST 19 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+662806,Shooting Permit,07/20/2022 05:00:00 AM,07/20/2022 11:00:00 AM,07/19/2022 03:17:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+662779,Shooting Permit,07/28/2022 11:30:00 AM,07/28/2022 11:00:00 PM,07/19/2022 01:51:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+662756,Shooting Permit,07/22/2022 12:00:00 PM,07/23/2022 12:00:00 AM,07/19/2022 12:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+662747,Shooting Permit,07/25/2022 07:00:00 AM,07/25/2022 09:00:00 PM,07/19/2022 12:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 113 STREET and WEST 114 STREET, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 112 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 113 STREET and WEST 111 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 113 STREET, WEST 52 STREET between 9 AVENUE and 8 AVENUE, WEST 52 STREET between 9 AVENUE and 10 AVENUE, WEST 53 STREET between 9 AVENUE and 8 AVENUE, WEST 56 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 56 STREET and WEST 59 STREET, BROADWAY between WEST 113 STREET and WEST 112 STREET",Manhattan,"4, 7, 9","18, 24, 26",Television,Cable-episodic,United States of America,"10019, 10025"
+662741,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 09:00:00 PM,07/19/2022 12:02:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, CALYER STREET between MCGUINNESS BOULEVARD and NEWEL STREET, CALYER STREET between NEWEL STREET and JEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+662739,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 09:00:00 PM,07/19/2022 11:58:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 4 STREET between JANE STREET and WEST 12 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+662737,Shooting Permit,07/25/2022 06:00:00 PM,07/25/2022 07:00:00 PM,07/19/2022 11:48:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 76 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 76 STREET and WEST 77 STREET, CENTRAL PARK NORTH between DUKE ELLINGTON CIRCLE and LENOX AVENUE, CENTRAL PARK NORTH between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between CENTRAL PARK NORTH and WEST 111 STREET, LENOX AVENUE between WEST 111 STREET and WEST 112 STREET, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS CIRCLE, ADAM CLAYTON POWELL JR BOULEVARD between CENTRAL PARK NORTH and WEST 111 STREET, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,"10, 64, 7","20, 22, 28",Television,Episodic series,United States of America,"10023, 10024, 10025, 10026"
+662734,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 08:00:00 PM,07/19/2022 11:41:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between PINEAPPLE WALK and TILLARY STREET, COURT STREET between 3 PLACE and 4 PLACE",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,"11201, 11231"
+662732,Shooting Permit,07/22/2022 06:00:00 AM,07/22/2022 10:00:00 PM,07/19/2022 11:37:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+662731,Shooting Permit,07/21/2022 06:00:00 AM,07/21/2022 10:00:00 PM,07/19/2022 11:37:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+662730,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 09:00:00 PM,07/19/2022 11:33:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+662723,Shooting Permit,07/23/2022 08:00:00 AM,07/23/2022 11:00:00 PM,07/19/2022 10:53:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 155 STREET and WEST 151 STREET",Manhattan,"12, 9","30, 33",Television,Cable-other,United States of America,"10031, 10032"
+662719,Shooting Permit,07/22/2022 08:00:00 AM,07/22/2022 10:00:00 PM,07/19/2022 10:42:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 155 STREET and WEST 151 STREET",Manhattan,"12, 9","30, 33",Television,Cable-other,United States of America,"10031, 10032"
+662708,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 11:59:00 PM,07/19/2022 09:59:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+662701,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 10:00:00 PM,07/19/2022 09:33:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662692,Shooting Permit,07/21/2022 04:00:00 PM,07/22/2022 06:00:00 AM,07/19/2022 08:59:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 54 STREET, LEXINGTON AVENUE between EAST 51 STREET and EAST 52 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10022, 10152, 10154"
+662691,Shooting Permit,07/22/2022 10:00:00 AM,07/23/2022 01:00:00 AM,07/19/2022 08:30:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+662679,Shooting Permit,07/21/2022 11:00:00 AM,07/22/2022 01:00:00 AM,07/18/2022 10:26:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+662642,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 11:00:00 PM,07/18/2022 05:34:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, NORMAN STREET between JEWEL STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662641,Shooting Permit,07/21/2022 07:00:00 PM,07/22/2022 06:00:00 AM,07/18/2022 05:30:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between PERRY STREET and WEST 10 STREET, WEST 4 STREET between CHARLES STREET and WEST 10 STREET, 7 AVENUE SOUTH between PERRY STREET and WEST 10 STREET, HUDSON STREET between CHARLES STREET and WEST 10 STREET",Manhattan,2,6,Television,Pilot,United States of America,10014
+662638,Shooting Permit,07/21/2022 07:00:00 AM,07/22/2022 12:00:00 AM,07/18/2022 04:44:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between BARNETT AVENUE and SKILLMAN AVENUE, 43 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 43 STREET and 42 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Film,Feature,United States of America,11104
+662636,Shooting Permit,07/21/2022 06:00:00 AM,07/21/2022 09:00:00 PM,07/18/2022 04:36:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 5 AVENUE and 6 AVENUE, EAST 53 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,18,Documentary,Not Applicable,United States of America,"10019, 10022, 10103"
+662626,Shooting Permit,07/22/2022 06:00:00 AM,07/22/2022 08:00:00 PM,07/18/2022 04:10:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRATFORD ROAD between CHURCH AVENUE and ALBERMARLE ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11218
+662615,Shooting Permit,07/21/2022 09:00:00 AM,07/22/2022 01:00:00 AM,07/18/2022 03:36:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,24,Film,Feature,United States of America,10024
+662607,Shooting Permit,07/22/2022 10:00:00 AM,07/23/2022 01:00:00 AM,07/18/2022 03:21:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 56 STREET between 3 AVENUE and 2 AVENUE, EAST 55 STREET between 1 AVENUE and 2 AVENUE, EAST 56 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 56 STREET and EAST 55 STREET, EAST 54 STREET between 3 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 1 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 53 STREET, 3 AVENUE between EAST 53 STREET and EAST 52 STREET, 3 AVENUE between EAST 52 STREET and EAST 51 STREET",Manhattan,6,17,Television,Episodic series,United States of America,10022
+662604,Shooting Permit,07/27/2022 03:00:00 AM,07/27/2022 10:00:00 PM,07/18/2022 03:17:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",JANE STREET between WASHINGTON STREET and HUDSON STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10011, 10014"
+662599,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 07:30:00 PM,07/18/2022 03:08:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 68 STREET and WEST 69 STREET, WEST 69 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 69 STREET and WEST 70 STREET, WEST 73 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 72 STREET and WEST 73 STREET",Manhattan,7,20,Film,Feature,United States of America,10023
+662598,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 10:00:00 PM,07/18/2022 03:05:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE between 101ST ST and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+662596,Shooting Permit,07/21/2022 12:00:00 PM,07/22/2022 12:00:00 AM,07/18/2022 03:02:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",MELBOURNE AVENUE between 150 STREET and 152 STREET,Queens,8,107,Film,Feature,United States of America,11367
+662595,Shooting Permit,07/21/2022 06:00:00 AM,07/21/2022 10:00:00 PM,07/18/2022 03:01:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+662589,Shooting Permit,07/19/2022 09:00:00 AM,07/19/2022 11:00:00 PM,07/18/2022 02:45:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 52 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 52 STREET between THIRD AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"1, 5, 6","17, 18, 40",Television,Episodic series,United States of America,"10022, 10152, 10154, 10454"
+662583,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 09:00:00 PM,07/18/2022 02:26:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEWART ROAD between 219 STREET and GRAND CENTRAL PARKWAY, 219 STREET between STEWART ROAD and PECK AVENUE, GRAND CENTRAL PARKWAY between STEWART ROAD and PECK AVENUE, HARTLAND AVENUE between GRAND CENTRAL PARKWAY and 221 STREET, PECK AVENUE between 218 STREET and GRAND CENTRAL PARKWAY, BELL BOULEVARD between UNION TURNPIKE and PECK AVENUE, UNION TURNPIKE between 215 STREET and HARTLAND AVENUE, STEWART ROAD between UNION TURNPIKE and 219 STREET, HARTLAND AVENUE between UNION TURNPIKE and 221 STREET",Queens,11,111,Television,Cable-episodic,United States of America,"11364, 11427"
+662569,Shooting Permit,07/21/2022 01:00:00 AM,07/21/2022 10:00:00 PM,07/18/2022 01:31:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLES STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between CHRISTOPHER STREET and PERRY STREET, WASHINGTON STREET between PERRY STREET and BARROW STREET, WASHINGTON STREET between PERRY STREET and CHARLES STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 16 STREET and WEST 19 STREET, 9 AVENUE between WEST 18 STREET and WEST 19 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+662567,Shooting Permit,07/20/2022 12:00:00 AM,07/20/2022 09:00:00 PM,07/18/2022 01:31:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHARLES STREET between WASHINGTON STREET and GREENWICH STREET, WEST 14 STREET between WASHINGTON STREET and HUDSON STREET, WEST 14 STREET between HUDSON STREET and 8 AVENUE, GREENWICH STREET between PERRY STREET and CHRISTOPHER STREET, WASHINGTON STREET between CHARLES STREET and BARROW STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between PERRY STREET and CHARLES STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+662562,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 10:00:00 PM,07/18/2022 01:22:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+662560,Shooting Permit,07/21/2022 12:00:00 PM,07/21/2022 11:59:00 PM,07/18/2022 01:21:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 26 STREET and EAST 29 STREET, EAST 31 STREET between 2 AVENUE and 3 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 30 STREET between 2 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, 3 AVENUE between EAST 29 STREET and EAST 30 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+662549,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 09:00:00 PM,07/18/2022 01:04:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between GRAND STREET and BROOME STREET, CENTRE STREET between GRAND STREET and HESTER STREET, GRAND STREET between LAFAYETTE STREET and CENTRE STREET, GRAND STREET between CROSBY STREET and LAFAYETTE STREET, GRAND STREET between CROSBY STREET and BROADWAY, LAFAYETTE STREET between GRAND STREET and BROOME STREET, CENTRE MARKET PLACE between GRAND STREET and BROOME STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET, BOWERY between KENMARE STREET and SPRING STREET, BOWERY between SPRING STREET and PRINCE STREET, BOWERY between PRINCE STREET and EAST HOUSTON STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+662546,DCAS Prep/Shoot/Wrap Permit,07/20/2022 07:00:00 AM,07/20/2022 09:00:00 PM,07/18/2022 12:57:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between DUANE STREET and WORTH STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between ELK STREET and LAFAYETTE STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY, WORTH STREET between CENTRE STREET and BAXTER STREET, CENTRE STREET between DUANE STREET and WORTH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+662545,Theater Load in and Load Outs,07/29/2022 12:01:00 AM,07/30/2022 06:00:00 AM,07/18/2022 12:53:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+662543,Theater Load in and Load Outs,07/28/2022 12:01:00 AM,07/28/2022 11:59:00 PM,07/18/2022 12:51:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+662539,Shooting Permit,07/21/2022 12:00:00 PM,07/22/2022 12:00:00 AM,07/18/2022 12:45:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+662537,Shooting Permit,07/21/2022 08:00:00 AM,07/21/2022 11:00:00 PM,07/18/2022 12:39:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+662532,Shooting Permit,07/21/2022 11:30:00 AM,07/22/2022 02:30:00 AM,07/18/2022 12:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK WEST, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, GRAMERCY PARK NORTH between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between GRAMERCY PARK NORTH and EAST 22 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 27 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010, 10016"
+662518,Shooting Permit,07/22/2022 10:00:00 AM,07/23/2022 03:00:00 AM,07/18/2022 10:55:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between COOK STREET and VARET STREET, COOK STREET between GRAHAM AVENUE and MANHATTAN AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+662517,Shooting Permit,07/26/2022 07:00:00 AM,07/26/2022 09:00:00 PM,07/18/2022 10:51:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBERMARLE ROAD and CHURCH AVENUE, MARLBOROUGH ROAD between ALBERMARLE ROAD and BEVERLY ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+662516,Shooting Permit,07/21/2022 08:00:00 AM,07/22/2022 03:00:00 AM,07/18/2022 10:49:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between COOK STREET and VARET STREET, COOK STREET between GRAHAM AVENUE and MANHATTAN AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+662513,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 09:00:00 PM,07/18/2022 10:33:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBERMARLE ROAD and CHURCH AVENUE, MARLBOROUGH ROAD between ALBERMARLE ROAD and BEVERLY ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+662506,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 11:00:00 PM,07/18/2022 10:18:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662504,Shooting Permit,07/24/2022 06:00:00 AM,07/24/2022 09:00:00 PM,07/18/2022 10:16:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between UNION STREET and DEGRAW STREET, UNION STREET between HOYT STREET and BOND STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,"11217, 11231"
+662500,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 09:00:00 PM,07/18/2022 09:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between SPRING STREET and BROOME STREET,Manhattan,2,1,Commercial,Commercial,United States of America,"10012, 10013"
+662499,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 08:00:00 PM,07/18/2022 09:58:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKOVEN COURT between DEAD END and RUGBY ROAD, RUGBY ROAD between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between RUGBY ROAD and MARLBOROUGH COURT",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+662497,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 10:00:00 PM,07/18/2022 09:51:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662495,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 08:00:00 PM,07/18/2022 09:49:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKOVEN COURT between RUGBY ROAD and DEAD END, RUGBY ROAD between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between RUGBY ROAD and MARLBOROUGH COURT",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+662490,Shooting Permit,07/27/2022 06:00:00 AM,07/27/2022 11:00:00 PM,07/18/2022 09:37:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DRIGGS AVENUE and WYTHE AVENUE, SOUTH 6 STREET between BERRY STREET and KENT AVENUE, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET, KENT AVENUE between BROADWAY and SOUTH 5 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+662489,Shooting Permit,07/20/2022 10:00:00 AM,07/20/2022 08:00:00 PM,07/18/2022 09:36:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKOVEN COURT between DEAD END and RUGBY ROAD, RUGBY ROAD between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between RUGBY ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+662488,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 11:00:00 PM,07/18/2022 09:36:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DRIGGS AVENUE and WYTHE AVENUE, SOUTH 6 STREET between BEDFORD AVENUE and KENT AVENUE, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET, KENT AVENUE between BROADWAY and SOUTH 5 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+662487,Shooting Permit,07/25/2022 06:00:00 AM,07/25/2022 11:00:00 PM,07/18/2022 09:36:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DRIGGS AVENUE and WYTHE AVENUE, SOUTH 6 STREET between BEDFORD AVENUE and KENT AVENUE, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET, KENT AVENUE between BROADWAY and SOUTH 5 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+662481,Shooting Permit,07/19/2022 08:00:00 AM,07/19/2022 10:00:00 PM,07/18/2022 09:15:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+662470,Theater Load in and Load Outs,07/29/2022 12:01:00 AM,07/29/2022 11:59:00 PM,07/18/2022 08:48:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,28,Theater,Theater,United States of America,10027
+662469,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 09:00:00 PM,07/18/2022 08:42:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between LAUREL HILL BOULEVARD and 37 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+662467,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 11:00:00 PM,07/18/2022 08:32:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+662465,Shooting Permit,07/21/2022 10:00:00 AM,07/21/2022 10:00:00 PM,07/18/2022 08:08:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+662463,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 08:00:00 PM,07/18/2022 07:37:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between RUTGERS SLIP and MARKET SLIP,Manhattan,"0, 3","1, 5, 7, 9",Still Photography,Not Applicable,United States of America,"10002, 10038"
+662453,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 07:00:00 PM,07/17/2022 09:54:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between WEST 8 STREET and WEST 9 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10003, 10011, 10012"
+662423,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 10:00:00 PM,07/17/2022 02:42:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+662408,Shooting Permit,07/20/2022 08:00:00 AM,07/20/2022 10:00:00 PM,07/17/2022 12:38:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 100 STREET and WEST 98 STREET, WEST 95 STREET between RIVERSIDE DRIVE and WEST END AVENUE",Manhattan,"7, 9","24, 30",Film,Feature,United States of America,"10024, 10025, 10032"
+662385,Shooting Permit,07/20/2022 08:00:00 AM,07/20/2022 11:00:00 PM,07/17/2022 10:05:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+662303,Shooting Permit,07/20/2022 09:00:00 AM,07/20/2022 11:00:00 PM,07/15/2022 10:36:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 44 STREET and EAST 45 STREET, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036"
+662289,Shooting Permit,07/20/2022 12:00:00 PM,07/21/2022 01:00:00 AM,07/15/2022 07:50:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between KNICKERBOCKER AVENUE and VANDERVOORT PLACE, NOLL STREET between FLUSHING AVENUE and WILSON AVENUE, FLUSHING AVENUE between VANDERVOORT PLACE and WILSON AVENUE, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, FLUSHING AVENUE between FORREST STREET and WILSON AVENUE, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+662283,Shooting Permit,07/20/2022 03:00:00 AM,07/20/2022 11:00:00 PM,07/15/2022 06:35:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, 10 STREET between 44 ROAD and 44 DRIVE, 45 AVENUE between 10 STREET and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 44 DRIVE between 5 STREET and VERNON BOULEVARD, VERNON BLVD between 44 DRIVE and 45TH AVE, 44 ROAD between 9 STREET and 10 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+662282,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 11:00:00 PM,07/15/2022 06:27:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+662280,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 11:00:00 PM,07/15/2022 05:58:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+662268,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 08:30:00 PM,07/15/2022 04:55:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 11 STREET and NORTH 12 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, NORTH 12 STREET between BEDFORD AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between NORTH HENRY STREET and MONITOR STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+662266,Theater Load in and Load Outs,07/20/2022 05:30:00 AM,07/25/2022 11:59:00 PM,07/15/2022 04:50:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+662259,Shooting Permit,07/20/2022 05:00:00 PM,07/21/2022 07:00:00 AM,07/15/2022 04:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","JONES STREET between WEST 4 STREET and BLEECKER STREET, 6 AVENUE between WEST 4 STREET and CARMINE STREET",Manhattan,2,6,Television,Pilot,United States of America,10014
+662247,Shooting Permit,07/29/2022 07:00:00 AM,07/29/2022 10:00:00 PM,07/15/2022 03:56:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 38 STREET and EAST 39 STREET, MADISON AVENUE between EAST 39 STREET and EAST 40 STREET",Manhattan,"5, 6","14, 17",Film,Feature,United States of America,10016
+662244,Shooting Permit,07/23/2022 06:00:00 AM,07/23/2022 11:59:00 PM,07/15/2022 03:55:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,WEB,Not Applicable,United States of America,10016
+662238,Shooting Permit,07/22/2022 06:00:00 AM,07/22/2022 11:59:00 PM,07/15/2022 03:42:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,WEB,Not Applicable,United States of America,10016
+662217,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 10:00:00 PM,07/15/2022 02:44:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between WEST END AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 62 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 59 STREET and WEST 60 STREET, BROADWAY between WEST 66 STREET and WEST 70 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+662206,Shooting Permit,08/01/2022 06:00:00 AM,08/01/2022 06:00:00 PM,07/15/2022 02:20:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between 42 STREET and 43 STREET, 1 AVE between 43 ST and 47 ST, 3 AVENUE between 43 STREET and 44 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+662190,Shooting Permit,07/23/2022 06:00:00 AM,07/23/2022 06:00:00 PM,07/15/2022 01:35:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 46 STREET between VANDERBILT AVENUE and MADISON AVENUE, EAST 46 STREET between VANDERBILT AVENUE and PARK AVENUE, VANDERBILT AVENUE between EAST 46 STREET and EAST 45 STREET, MADISON AVENUE between EAST 45 STREET and EAST 46 STREET, MADISON AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE between EAST 46 STREET and EAST 47 STREET, PARK AVENUE between EAST 48 STREET and EAST 53 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10167, 10171, 10177"
+662184,Theater Load in and Load Outs,07/23/2022 12:01:00 AM,07/23/2022 11:59:00 PM,07/15/2022 01:23:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+662166,Shooting Permit,07/20/2022 09:00:00 AM,07/21/2022 02:00:00 AM,07/15/2022 12:46:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCDONALD AVENUE between 18 AVENUE and WEBSTER AVENUE,Brooklyn,"12, 14","66, 70",Film,Feature,United States of America,11230
+662152,Theater Load in and Load Outs,07/19/2022 12:01:00 AM,07/21/2022 11:59:00 PM,07/15/2022 12:09:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between UNION SQUARE EAST and IRVING PLACE",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+662148,Shooting Permit,07/19/2022 12:00:00 PM,07/20/2022 02:00:00 AM,07/15/2022 12:00:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WYTHE AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, NORTH 1 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 1 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,"11211, 11249"
+662145,Shooting Permit,07/20/2022 09:00:00 AM,07/20/2022 09:00:00 PM,07/15/2022 11:55:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, EAGLE STREET between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and GREEN STREET",Brooklyn,1,94,Film,Short,United States of America,11222
+662117,Shooting Permit,07/21/2022 02:00:00 PM,07/22/2022 05:00:00 AM,07/15/2022 10:54:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","VESTRY STREET between WASHINGTON STREET and HUDSON STREET, GREENWICH STREET between DESBROSSES STREET and LAIGHT STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET, HARRISON STREET between WEST STREET and GREENWICH STREET, WARREN STREET between WEST STREET and GREENWICH STREET, WEST STREET between WARREN STREET and MURRAY STREET, RIVER TERRACE between MURRAY STREET and CHAMBERS STREET, WARREN STREET between RIVER TERRACE and NORTH END AVENUE, NORTH END AVENUE between WARREN STREET and MURRAY STREET, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+662110,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,07/15/2022 10:37:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between DEAD END and GREENPOINT AVE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+662106,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 10:00:00 PM,07/15/2022 10:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 12 STREET and EAST 11 STREET, 5 AVENUE between WEST 13 STREET and WEST 12 STREET",Manhattan,2,6,Film,Feature,United States of America,"10003, 10011"
+662096,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 11:00:00 PM,07/15/2022 10:18:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+662087,Shooting Permit,07/19/2022 08:00:00 AM,07/20/2022 02:00:00 AM,07/15/2022 09:45:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 178 STREET and EAST 179 STREET,Bronx,"3, 6","42, 48",Film,Feature,United States of America,"10457, 10460"
+662085,Shooting Permit,07/20/2022 10:00:00 AM,07/21/2022 01:00:00 AM,07/15/2022 09:29:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,11,23,Television,Cable-episodic,United States of America,10029
+662083,Shooting Permit,07/19/2022 08:30:00 AM,07/19/2022 11:30:00 PM,07/15/2022 09:27:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, 7 AVENUE between WEST 56 STREET and WEST 57 STREET, WEST 59 STREET between 6 AVENUE and 7 AVENUE, WEST 59 STREET between 7 AVENUE and COLUMBUS CIRCLE, BROADWAY between WEST 56 STREET and WEST 58 STREET, 1 AVENUE between EAST 99 STREET and EAST 102 STREET, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, 2 AVENUE between EAST 99 STREET and EAST 100 STREET, 2 AVENUE between EAST 100 STREET and EAST 101 STREET, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"11, 5, 64","18, 22, 23",Television,Cable-episodic,United States of America,"10019, 10029, 10106"
+662079,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 11:00:00 PM,07/15/2022 09:21:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 3 STREET and EAST 4 STREET, AVENUE B between EAST 3 STREET and EAST 4 STREET",Manhattan,3,9,Film,Feature,United States of America,10009
+662078,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 10:00:00 PM,07/15/2022 09:16:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662074,Shooting Permit,07/21/2022 10:00:00 AM,07/22/2022 02:00:00 AM,07/15/2022 08:44:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","PLAZA STREET WEST between ST JOHNS PLACE and BERKLEY PLACE, EIGHTH AVENUE between ST JOHNS PLACE and UNION STREET, LINCOLN PLACE between PLAZA STREET WEST and SEVENTH AVENUE, FLATBUSH AVENUE between PLAZA STREET WEST and EMPIRE BOULEVARD",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,"11217, 11238"
+662073,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 08:00:00 PM,07/15/2022 08:32:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","29 STREET between 47 AVENUE and 49 AVENUE, 30 STREET between 47 AVENUE and 49 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+662038,Shooting Permit,07/26/2022 12:00:00 PM,07/27/2022 11:59:00 PM,07/14/2022 08:17:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,5,14,Television,Not Applicable,United States of America,10017
+662032,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 09:00:00 PM,07/14/2022 06:52:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between BAY PARKWAY and AVENUE M, AVENUE M between EAST 2 STREET and EAST 3 STREET",Brooklyn,12,66,Commercial,Commercial,United States of America,11230
+662014,Shooting Permit,07/19/2022 08:00:00 AM,07/19/2022 09:00:00 PM,07/14/2022 05:38:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 50 STREET, WEST 50 STREET between 10 AVENUE and 11 AVENUE, WEST 50 STREET between 9 AVENUE and 10 AVENUE, WOLCOTT STREET between FERRIS STREET and DEAD END, FERRIS STREET between DIKEMAN STREET and WOLCOTT STREET, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Manhattan,"4, 6","18, 76",Television,Episodic series,United States of America,"10019, 11231"
+661994,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 08:00:00 PM,07/14/2022 04:31:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 39 STREET and 40 STREET, 40 STREET between 2 AVENUE and 3 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+661987,Shooting Permit,07/19/2022 03:00:00 PM,07/20/2022 02:00:00 AM,07/14/2022 03:59:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST END AVENUE between EAST 84 STREET and EAST 86 STREET, GRACIE SQUARE between EAST END AVENUE and DEAD END",Manhattan,8,19,Commercial,Commercial,United States of America,10028
+661954,Shooting Permit,07/18/2022 08:00:00 AM,07/18/2022 10:00:00 PM,07/14/2022 02:42:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WYTHE AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, NORTH 1 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 1 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,"11211, 11249"
+661945,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 11:00:00 PM,07/14/2022 02:14:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 3 STREET and EAST 4 STREET, AVENUE B between EAST 3 STREET and EAST 4 STREET",Manhattan,3,9,Film,Feature,United States of America,10009
+661932,Shooting Permit,07/15/2022 01:00:00 PM,07/16/2022 03:00:00 AM,07/14/2022 01:49:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between JOHN STREET and FULTON STREET, SOUTH STREET between BEEKMAN STREET and PECK SLIP, BEEKMAN STREET between SOUTH STREET and FRONT STREET, MAIDEN LANE between PEARL STREET and WILLIAM STREET, BEEKMAN STREET between FRONT STREET and WATER STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, MAIDEN LANE between FRONT STREET and WATER STREET, WATER STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between WATER STREET and PEARL STREET, WATER STREET between JOHN STREET and FLETCHER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+661929,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 10:00:00 PM,07/14/2022 01:39:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH END AVENUE between ALBANY STREET and DEAD END, ALBANY STREET between SOUTH END AVENUE and WEST STREET, WATER STREET between JOHN STREET and PINE STREET, JOHN STREET between FRONT STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and FRONT STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10280, 10281, 10282"
+661927,Shooting Permit,07/17/2022 04:00:00 AM,07/17/2022 12:00:00 PM,07/14/2022 01:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+661925,Shooting Permit,07/16/2022 05:00:00 AM,07/16/2022 06:00:00 PM,07/14/2022 01:18:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+661919,Shooting Permit,07/20/2022 04:00:00 AM,07/20/2022 10:00:00 AM,07/14/2022 12:58:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+661918,Shooting Permit,07/19/2022 01:00:00 PM,07/19/2022 09:00:00 PM,07/14/2022 12:58:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",ALBEMARLE ROAD between MARLBOROUGH ROAD and BUCKINGHAM ROAD,Brooklyn,14,70,Television,Episodic series,United States of America,11226
+661897,Shooting Permit,07/21/2022 08:00:00 AM,07/21/2022 11:00:00 PM,07/14/2022 11:57:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 9 STREET and WEST 10 STREET, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 12 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 41 STREET and WEST 42 STREET, 7 AVENUE between WEST 40 STREET and WEST 41 STREET, BROADWAY between WEST 41 STREET and WEST 40 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET",Manhattan,"2, 3, 5","14, 6, 9",Television,Cable-episodic,United States of America,"10003, 10011, 10018, 10036"
+661895,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,07/14/2022 11:55:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between 2 AVENUE and 3 AVENUE, EAST 48 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 45 STREET and EAST 46 STREET, 3 AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10017
+661889,Shooting Permit,07/19/2022 05:00:00 PM,07/20/2022 05:00:00 AM,07/14/2022 11:40:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between 8 STREET and 9 STREET, 8 STREET between 6 AVENUE and 7 AVENUE, 8 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between 5 STREET and 8 STREET",Brooklyn,6,78,Film,Short,United States of America,11215
+661883,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 10:00:00 PM,07/14/2022 11:06:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+661871,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 09:00:00 PM,07/14/2022 10:38:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between JOHN STREET and MAIDEN LANE, NASSAU STREET between MAIDEN LANE and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and BROADWAY, JOHN STREET between WATER STREET and PEARL STREET, NASSAU STREET between LIBERTY STREET and CEDAR STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between GOLD STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and WATER STREET, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+661847,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 09:00:00 PM,07/14/2022 09:42:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+661843,Shooting Permit,07/21/2022 06:00:00 AM,07/21/2022 11:59:00 PM,07/14/2022 09:32:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+661829,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 09:00:00 PM,07/14/2022 08:37:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+661815,Shooting Permit,07/18/2022 08:30:00 AM,07/18/2022 09:30:00 PM,07/13/2022 11:40:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 155 STREET and WEST 156 STREET, BROADWAY between WEST 153 STREET and WEST 155 STREET, WEST 155 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 152 STREET and WEST 153 STREET, RIVERSIDE DRIVE between WEST 146 STREET and WEST 147 STREET, RIVERSIDE DRIVE between WEST 147 STREET and WEST 148 STREET, RIVERSIDE DRIVE between WEST 148 STREET and WEST 149 STREET, RIVERSIDE DRIVE between WEST 149 STREET and WEST 150 STREET, RIVERSIDE DRIVE between WEST 150 STREET and WEST 151 STREET, RIVERSIDE DRIVE between WEST 151 STREET and WEST 152 STREET, WASHINGTON STREET between WEST 10 STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between WEEHAWKEN STREET and WASHINGTON STREET, CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CHRISTOPHER STREET and BARROW STREET, WASHINGTON STREET between BARROW STREET and MORTON STREET, GREENWICH STREET between WEST 10 STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between HUDSON STREET and BEDFORD STREET, HUDSON STREET between CHRISTOPHER STREET and GROVE STREET, BEDFORD STREET between CHRISTOPHER STREET and GROVE STREET, HUDSON STREET between GROVE STREET and BARROW STREET, BARROW STREET between HUDSON STREET and COMMERCE STREET, GROVE STREET between HUDSON STREET and BEDFORD STREET",Manhattan,"12, 2, 9","30, 33, 6",Television,Episodic series,United States of America,"10014, 10031, 10032"
+661802,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 11:00:00 PM,07/13/2022 09:31:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+661793,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 10:00:00 PM,07/13/2022 07:35:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+661792,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 10:00:00 PM,07/13/2022 07:32:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+661790,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 10:00:00 PM,07/13/2022 07:30:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+661782,Shooting Permit,07/17/2022 06:00:00 AM,07/17/2022 10:00:00 PM,07/13/2022 07:02:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUINCY STREET between NOSTRAND AVENUE and BEDFORD AVENUE, QUINCY STREET between BEDFORD AVENUE and FRANKLIN AVENUE, CLIFTON PLACE between BEDFORD AVENUE and NOSTRAND AVENUE, WOODWARD AVENUE between BLEECKER STREET and MENAHAN STREET, BLEECKER STREET between WOODWARD AVENUE and ONDERDONK AVENUE",Brooklyn,"3, 5","104, 79",Commercial,Commercial,United States of America,"11216, 11385"
+661765,Theater Load in and Load Outs,07/20/2022 12:01:00 AM,07/21/2022 06:00:00 AM,07/13/2022 05:37:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+661758,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 04:00:00 PM,07/13/2022 05:24:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUANE STREET between BROADWAY and CHURCH STREET, CHURCH STREET between CHAMBERS STREET and THOMAS STREET, DUANE STREET between CHURCH STREET and WEST BROADWAY, READE STREET between BROADWAY and CHURCH STREET, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, WALKER STREET between 6 AVENUE and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013, 10038"
+661756,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 11:00:00 PM,07/13/2022 05:15:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between JACKSON STREET and METROPOLITAN AVENUE, MANHATTAN AVENUE between JACKSON STREET and CONSELYEA STREET, CONSELYEA STREET between LEONARD STREET and MANHATTAN AVENUE, LEONARD STREET between WITHERS STREET and JACKSON STREET, LEONARD STREET between SKILLMAN AVENUE and CONSELYEA STREET, SKILLMAN AVENUE between LORIMER STREET and MANHATTAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+661738,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 09:00:00 PM,07/13/2022 04:05:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 154 STREET and WEST 155 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, AMSTERDAM AVENUE between WEST 153 STREET and WEST 154 STREET",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+661720,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 09:00:00 PM,07/13/2022 03:27:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between 5 AVENUE and 6 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 4 AVENUE between EAST 13 STREET and EAST 10 STREET, 5 AVENUE between WEST 12 STREET and WEST 11 STREET, REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, EAST 12 STREET between 4 AVENUE and BROADWAY, BROADWAY between EAST 12 STREET and EAST 13 STREET, EAST 13 STREET between UNIVERSITY PLACE and BROADWAY, EAST 13 STREET between BROADWAY and 4 AVENUE, 4 AVENUE between EAST 14 STREET and EAST 13 STREET, BROADWAY between EAST 10 STREET and EAST 11 STREET, BROADWAY between EAST 12 STREET and EAST 11 STREET",Manhattan,"2, 3","108, 6, 9",Television,Cable-episodic,United States of America,"10003, 10011, 11101"
+661717,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 11:59:00 PM,07/13/2022 03:07:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 30 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+661716,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 09:00:00 PM,07/13/2022 03:02:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661698,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 11:00:00 PM,07/13/2022 02:18:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARVIN ROAD between SHARON LANE and ALYSIA COURT, ALYSIA COURT between MARVIN ROAD and BLOOMINGDALE ROAD, BLOOMINGDALE ROAD between PEMBROOK LOOP and MANDY COURT, BLOOMINGDALE ROAD between SHARROTTS ROAD and MARISA CIRCLE, SHARROTTS ROAD between BLOOMINGDALE ROAD and JESSICA LANE, HERVEY STREET between ARTHUR KILL ROAD and ST LUKE'S AVENUE, ST LUKES AVENUE between ARTHUR KILL ROAD and HERVEY STREET, ARTHUR KILL ROAD between HERVEY STREET and ENGERT STREET",Staten Island,3,123,Television,Episodic series,United States of America,10309
+661697,Theater Load in and Load Outs,07/26/2022 12:01:00 AM,07/27/2022 06:00:00 AM,07/13/2022 02:09:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+661694,Shooting Permit,07/20/2022 08:00:00 AM,07/20/2022 11:00:00 PM,07/13/2022 01:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661693,Shooting Permit,07/19/2022 08:00:00 AM,07/19/2022 11:00:00 PM,07/13/2022 01:50:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661691,Shooting Permit,07/15/2022 12:00:00 PM,07/16/2022 03:00:00 AM,07/13/2022 01:43:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTCHESTER AVENUE between STRATFORD AVENUE and MORRISON AVENUE, THIRD AVENUE between EAST 179 STREET and EAST 178 STREET",Bronx,"3, 6, 9","43, 48, 81",Film,Feature,United States of America,"10457, 10472, 11206"
+661689,Theater Load in and Load Outs,07/23/2022 12:01:00 AM,07/25/2022 06:00:00 AM,07/13/2022 01:41:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+661676,Shooting Permit,07/18/2022 10:00:00 AM,07/19/2022 01:00:00 AM,07/13/2022 01:13:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661672,Theater Load in and Load Outs,07/22/2022 12:01:00 AM,07/22/2022 11:59:00 PM,07/13/2022 01:07:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+661665,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 10:00:00 PM,07/13/2022 12:52:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, BOWERY between EAST HOUSTON STREET and DELANCY STREET, ELIZABETH STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between BOWERY and MULBERRY STREET, MULBERRY STREET between EAST HOUSTON STREET and JERSEY STREET",Manhattan,"2, 3",5,Television,Cable-other,United States of America,"10002, 10012"
+661654,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 11:00:00 PM,07/13/2022 12:25:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661653,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 11:00:00 PM,07/13/2022 12:24:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661652,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 11:00:00 PM,07/13/2022 12:24:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661651,Shooting Permit,07/18/2022 05:00:00 PM,07/19/2022 07:00:00 AM,07/13/2022 12:23:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORNELIA STREET between BLEECKER STREET and WEST 4 STREET, 6 AVENUE between CARMINE STREET and WEST 4 STREET, BARROW STREET between BLEECKER STREET and WEST 4 STREET",Manhattan,2,6,Television,Pilot,United States of America,10014
+661643,Shooting Permit,07/20/2022 01:00:00 PM,07/21/2022 04:00:00 AM,07/13/2022 12:09:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between FORT GREENE PLACE and WASHINGTON PARK, WASHINGTON PARK between WILLOUGHBY AVENUE and DEKALB AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, SOUTH OXFORD STREET between LAFAYETTE AVENUE and FULTON STREET, MYRTLE AVENUE between ST EDWARDS STREET and WASHINGTON PARK, WILLOUGHBY AVENUE between WASHINGTON PARK and CARLTON AVENUE, WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+661640,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,07/13/2022 11:49:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between CANAL STREET and WATTS STREET,Manhattan,"1, 2","1, 6",Still Photography,Not Applicable,United States of America,"10013, 10014"
+661620,Shooting Permit,07/18/2022 09:00:00 AM,07/18/2022 09:00:00 PM,07/13/2022 10:54:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ADELPHI STREET and VANDERBILT AVENUE, GREENE AVENUE between CLERMONT AVENUE and CLINTON AVENUE, VANDERBILT AVENUE between LAFAYETTE AVENUE and DEKALB AVENUE, VANDERBILT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Film,Short,United States of America,"11205, 11238"
+661617,Shooting Permit,07/22/2022 07:00:00 AM,07/22/2022 09:00:00 PM,07/13/2022 10:48:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between STERLING PLACE and ST JOHNS PLACE,Brooklyn,6,78,WEB,Not Applicable,United States of America,11217
+661616,Shooting Permit,07/21/2022 07:00:00 AM,07/21/2022 09:00:00 PM,07/13/2022 10:46:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between STERLING PLACE and ST JOHN PLACE,Brooklyn,6,78,WEB,Not Applicable,United States of America,11217
+661612,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 10:00:00 PM,07/13/2022 10:42:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+661610,Shooting Permit,07/15/2022 10:00:00 AM,07/16/2022 01:00:00 AM,07/13/2022 10:40:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661609,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 10:00:00 PM,07/13/2022 10:39:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+661603,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 10:00:00 PM,07/13/2022 10:35:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+661591,Shooting Permit,07/18/2022 08:30:00 AM,07/18/2022 09:00:00 PM,07/13/2022 10:04:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 94 STREET between 5 AVENUE and MADISON AVENUE, EAST 95 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 90 STREET and EAST 96 STREET, MADISON AVENUE between EAST 93 STREET and EAST 96 STREET, EAST 96 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,10128
+661590,Shooting Permit,07/15/2022 07:00:00 PM,07/15/2022 11:59:00 PM,07/13/2022 10:01:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between BLEECKER STREET and MINETTA LANE,Manhattan,2,6,Television,Episodic series,United States of America,"10012, 10014"
+661582,Shooting Permit,07/15/2022 06:00:00 AM,07/15/2022 09:00:00 PM,07/13/2022 09:31:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",SHORE FRONT PARKWAY between BEACH 73 STREET and BEACH 77 STREET,Queens,14,"100, 101",Commercial,Commercial,United States of America,"11691, 11692, 11693, 11694"
+661572,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 10:00:00 PM,07/13/2022 07:53:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 17 STREET and EAST 15 STREET, EAST 17 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, 1 AVENUE between EAST 17 STREET and EAST 16 STREET, WEST 19 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 19 STREET and WEST 18 STREET, WASHINGTON SQUARE NORTH between 5 AVENUE and UNIVERSITY PLACE, EAST 8 STREET between 5 AVENUE and UNIVERSITY PLACE, 4 AVENUE between EAST 13 STREET and EAST 11 STREET",Manhattan,"2, 3, 4, 6","10, 13, 6, 9",Television,Cable-episodic,United States of America,"10003, 10009, 10011"
+661571,Shooting Permit,07/15/2022 07:00:00 PM,07/16/2022 07:00:00 AM,07/13/2022 07:49:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 19 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, WEST 17 STREET between 6 AVENUE and 7 AVENUE, WEST 19 STREET between 6 AVENUE and 7 AVENUE",Manhattan,4,"10, 13",Television,Cable-episodic,United States of America,10011
+661567,Shooting Permit,07/23/2022 06:00:00 AM,07/23/2022 11:00:00 PM,07/13/2022 05:46:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 47 STREET and EAST 46 STREET, EAST 46 STREET between THIRD AVENUE and LEXINGTON AVENUE, EAST 47 STREET between THIRD AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Still Photography,Not Applicable,United States of America,10017
+661564,Shooting Permit,07/22/2022 06:00:00 AM,07/22/2022 11:00:00 PM,07/13/2022 05:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 47 STREET and EAST 46 STREET, LEXINGTON AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 47 STREET between THIRD AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Still Photography,Not Applicable,United States of America,10017
+661563,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 11:00:00 PM,07/13/2022 05:23:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 47 STREET between THIRD AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 46 STREET and EAST 45 STREET",Manhattan,"5, 6","17, 18",Still Photography,Not Applicable,United States of America,10017
+661548,Shooting Permit,07/15/2022 08:00:00 AM,07/15/2022 10:00:00 PM,07/12/2022 11:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 116 STREET and WEST 117 STREET, AMSTERDAM AVENUE between WEST 111 STREET and WEST 112 STREET, BROADWAY between WEST 113 STREET and WEST 114 STREET, BROADWAY between WEST 114 STREET and WEST 115 STREET, RIVERSIDE DRIVE between WEST 114 STREET and WEST 115 STREET, RIVERSIDE DRIVE between WEST 115 STREET and WEST 116 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, BROADWAY between WEST 118 STREET and WEST 119 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,9,26,Television,Episodic series,United States of America,"10025, 10027"
+661504,Shooting Permit,07/15/2022 07:00:00 AM,07/15/2022 11:00:00 PM,07/12/2022 06:46:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+661499,Shooting Permit,07/15/2022 10:00:00 AM,07/16/2022 12:00:00 AM,07/12/2022 06:11:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CARROLL PLACE between WESTERVELT AVENUE and NICHOLAS STREET, ST MARKS PLACE between WESTERVELT AVENUE and HAMILTON AVENUE",Staten Island,1,120,Film,Feature,United States of America,10301
+661489,Theater Load in and Load Outs,07/26/2022 12:01:00 AM,07/26/2022 11:59:00 PM,07/12/2022 05:08:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+661485,Theater Load in and Load Outs,07/23/2022 12:01:00 AM,07/24/2022 06:00:00 AM,07/12/2022 04:47:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+661480,Shooting Permit,07/15/2022 06:00:00 AM,07/16/2022 12:00:00 AM,07/12/2022 04:37:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between AVENUE A and AVENUE B, EAST 4 STREET between AVENUE A and AVENUE B",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+661476,Theater Load in and Load Outs,07/20/2022 12:01:00 AM,07/21/2022 06:00:00 AM,07/12/2022 04:28:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+661471,Theater Load in and Load Outs,07/19/2022 12:01:00 AM,07/20/2022 05:00:00 AM,07/12/2022 04:06:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+661467,Shooting Permit,07/18/2022 06:30:00 AM,07/18/2022 09:00:00 PM,07/12/2022 03:53:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 46 STREET and EAST 47 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between 2 AVENUE and 3 AVENUE, EAST 48 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+661451,Shooting Permit,07/15/2022 10:00:00 AM,07/16/2022 12:00:00 AM,07/12/2022 03:28:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+661448,Shooting Permit,07/15/2022 11:00:00 AM,07/15/2022 10:00:00 PM,07/12/2022 03:25:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between WEST 188 STREET and WEST FORDHAM ROAD, JEROME AVENUE between WEST 192 STREET and EAST 193 STREET, WEST 192 STREET between JEROME AVENUE and DAVIDSON AVENUE",Bronx,7,52,Commercial,Promo,United States of America,10468
+661431,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 11:00:00 PM,07/12/2022 02:47:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between 1 AVENUE and 3 AVENUE, 2 AVENUE between EAST 17 STREET and EAST 15 STREET, EAST 17 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, EAST 12 STREET between 4 AVENUE and BROADWAY, BROADWAY between EAST 12 STREET and EAST 13 STREET, EAST 13 STREET between UNIVERSITY PLACE and BROADWAY, EAST 13 STREET between BROADWAY and 4 AVENUE, 4 AVENUE between EAST 14 STREET and EAST 13 STREET, 4 AVENUE between EAST 13 STREET and EAST 12 STREET",Manhattan,"2, 3, 6","13, 6, 9",Television,Cable-episodic,United States of America,"10003, 10009"
+661418,Shooting Permit,07/15/2022 01:00:00 PM,07/16/2022 02:00:00 AM,07/12/2022 02:18:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 15 STREET and WEST 22 STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+661410,Shooting Permit,07/24/2022 07:00:00 AM,07/24/2022 11:00:00 PM,07/12/2022 01:56:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 41 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 43 STREET",Manhattan,5,14,Television,Cable-other,United States of America,"10017, 10036, 10173"
+661394,Shooting Permit,07/19/2022 06:00:00 AM,07/19/2022 11:59:00 PM,07/12/2022 01:14:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 50 STREET and WEST 49 STREET, WEST 51 STREET between 8 AVENUE and 9 AVENUE, WEST 51 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+661392,Shooting Permit,07/15/2022 07:00:00 AM,07/15/2022 09:00:00 PM,07/12/2022 01:04:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 30 STREET between 10 AVENUE and 11 AVENUE, WEST 47 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"2, 4","10, 18, 6",Television,Not Applicable,United States of America,"10001, 10036"
+661388,Shooting Permit,07/16/2022 04:00:00 PM,07/17/2022 07:00:00 AM,07/12/2022 12:58:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WESTCHESTER AVENUE between STRATFORD AVENUE and MORRISON AVENUE,Bronx,9,43,Film,Feature,United States of America,10472
+661383,Shooting Permit,07/15/2022 03:30:00 PM,07/16/2022 04:00:00 AM,07/12/2022 12:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between PERRY STREET and WEST 12 STREET, WASHINGTON STREET between BETHUNE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and JANE STREET, WEST 14 STREET between 7 AVENUE and 8 AVENUE, WEST 14 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+661360,Shooting Permit,07/15/2022 09:00:00 AM,07/15/2022 09:00:00 PM,07/12/2022 12:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 5 AVENUE and 6 AVENUE, WEST 37 STREET between BROADWAY and 7 AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Film,Short,United States of America,10018
+661327,Shooting Permit,07/14/2022 10:30:00 AM,07/14/2022 03:00:00 PM,07/12/2022 10:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVENUE between MCGUINNESS BOULEVARD and PROVOST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661323,Shooting Permit,07/14/2022 10:00:00 AM,07/14/2022 11:59:00 PM,07/12/2022 10:46:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAVA STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between INDIA STREET and GREENPOINT AVENUE, GREENPOINT AVENUE between MCGUINNESS BOULEVARD and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between MCGUINNESS BOULEVARD and JEWEL STREET, KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, PROVOST STREET between EAGLE STREET and PAIDGE AVENUE, PAIDGE AVENUE between PROVOST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661321,Shooting Permit,07/22/2022 12:00:00 AM,07/22/2022 03:00:00 PM,07/12/2022 10:42:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+661319,Shooting Permit,07/21/2022 05:00:00 AM,07/21/2022 11:59:00 PM,07/12/2022 10:37:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+661309,Shooting Permit,07/15/2022 07:00:00 AM,07/15/2022 09:00:00 PM,07/12/2022 09:50:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661308,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 09:00:00 PM,07/12/2022 09:50:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661291,Shooting Permit,07/14/2022 09:00:00 AM,07/14/2022 10:00:00 PM,07/12/2022 07:42:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between HAVEMEYER STREET and MARCY AVENUE, HAVEMEYER STREET between GRAND STREET and SOUTH 1 STREET, HAVEMEYER STREET between HOPE STREET and GRAND STREET, SOUTH 3 STREET between MARCY AVENUE and RODNEY STREET, RODNEY STREET between AINSLIE STREET and HOPE STREET, RODNEY STREET between METROPOLITAN AVENUE and AINSLIE STREET",Brooklyn,1,90,Film,Feature,United States of America,11211
+661268,Shooting Permit,07/14/2022 05:00:00 PM,07/15/2022 07:00:00 AM,07/11/2022 09:26:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 19 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, WEST 17 STREET between 6 AVENUE and 7 AVENUE, WEST 19 STREET between 6 AVENUE and 7 AVENUE",Manhattan,4,"10, 13",Television,Cable-episodic,United States of America,10011
+661257,Shooting Permit,07/19/2022 08:00:00 PM,07/19/2022 10:00:00 PM,07/11/2022 08:01:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",CORBIN COURT between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Film,Short,United States of America,11230
+661239,Shooting Permit,07/14/2022 09:00:00 AM,07/14/2022 10:00:00 PM,07/11/2022 06:14:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between AVENUE A and AVENUE B, EAST 3 STREET between AVENUE A and AVENUE B, EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 3 STREET and EAST 4 STREET, AVENUE B between EAST 3 STREET and EAST 4 STREET",Manhattan,3,9,Film,Feature,United States of America,10009
+661236,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 11:00:00 PM,07/11/2022 06:07:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 42 STREET between 12 AVENUE and 11 AVENUE, WEST 43 STREET between 12 AVENUE and 11 AVENUE, WEST 45 STREET between 10 AVENUE and 9 AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 62 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, BROADWAY between WEST 66 STREET and WEST 70 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"4, 7","10, 18, 20",Television,Episodic series,United States of America,"10019, 10023, 10036"
+661219,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 09:00:00 PM,07/11/2022 04:47:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+661217,Shooting Permit,07/14/2022 04:00:00 PM,07/15/2022 04:30:00 AM,07/11/2022 04:27:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 9 AVENUE and 10 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 28 STREET, WEST 24 STREET between 7 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+661193,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 10:00:00 PM,07/11/2022 03:48:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+661190,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 10:00:00 PM,07/11/2022 03:37:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+661183,Rigging Permit,07/16/2022 10:00:00 AM,07/17/2022 02:00:00 AM,07/11/2022 03:10:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661179,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 09:00:00 PM,07/11/2022 03:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE BOULEVARD between WEST 66 STREET and WEST 67 STREET, RIVERSIDE DRIVE between WEST 107 STREET and WEST 108 STREET",Manhattan,"7, 9","20, 24",Still Photography,Not Applicable,United States of America,"10024, 10025, 10069"
+661136,Shooting Permit,07/19/2022 09:00:00 AM,07/20/2022 01:00:00 AM,07/11/2022 01:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661123,Shooting Permit,07/13/2022 06:00:00 AM,07/13/2022 08:00:00 PM,07/11/2022 01:20:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between BROAD STREET and STATE STREET, BROAD STREET between SOUTH STREET and WATER STREET, FRONT STREET between JOHN STREET and MAIDEN LANE",Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10004, 10005, 10038"
+661120,Shooting Permit,07/18/2022 07:00:00 AM,07/18/2022 11:00:00 PM,07/11/2022 01:19:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+661113,Shooting Permit,07/14/2022 08:00:00 AM,07/14/2022 10:00:00 PM,07/11/2022 12:52:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DAM STREET between 47 AVENUE and THOMSON AVENUE, THOMSON AVENUE between VAN DAM STREET and 31 STREET, THOMSON AVENUE between 31 STREET and 30 PLACE, 31 STREET between THOMSON AVENUE and 47 AVENUE, 47 AVENUE between VAN DAM STREET and 31 STREET, REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+661107,Shooting Permit,07/15/2022 10:00:00 AM,07/16/2022 01:00:00 AM,07/11/2022 12:47:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDS STREET between VERONA STREET and PIONEER STREET, VERONA STREET between RICHARDS STREET and DWIGHT STREET, VAN BRUNT STREET between SUMMIT STREET and BOWNE STREET, HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, BOWNE STREET between VAN BRUNT STREET and HAMILTON AVENUE, VERONA STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between BOWNE STREET and SEABRING STREET, SEABRING STREET between RICHARDS STREET and COLUMBIA STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+661098,Shooting Permit,07/13/2022 10:00:00 AM,07/14/2022 01:00:00 AM,07/11/2022 12:27:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between COMMERCIAL STREET and DEAD END, BOX STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, ASH STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between DUPONT STREET and CLAY STREET",Brooklyn,"1, 82","102, 94",Television,Cable-episodic,United States of America,"11222, 11385"
+661086,Shooting Permit,07/14/2022 07:00:00 PM,07/15/2022 03:00:00 AM,07/11/2022 11:54:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST TREMONT AVENUE between WEBSTER AVENUE and PARK AVENUE, PARK AVENUE between EAST TREMONT AVENUE and EAST 178 STREET, PARK AVENUE between EAST TREMONT AVENUE and EAST 176 STREET, WEBSTER AVENUE between EAST TREMONT AVENUE and EAST 176 STREET, WEBSTER AVENUE between EAST 176 STREET and EAST 175 STREET, EAST 176 STREET between WEBSTER AVENUE and PARK AVENUE, VALENTINE AVENUE between E. TREMONT AVE and E. BURNSIDE AVE, EAST 178 STREET between VALENTINE AVENUE and WEBSTER AVENUE, WEBSTER AVENUE between EAST TREMONT AVENUE and EAST 180 STREET, PARK AVENUE between EAST TREMONT AVENUE and EAST 178 STREET",Bronx,"5, 6","46, 48",Television,Episodic series,United States of America,10457
+661082,Shooting Permit,07/13/2022 08:00:00 AM,07/13/2022 11:00:00 PM,07/11/2022 11:28:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between 74 STREET and 79 STREET, GRAND AVENUE between 79 STREET and 80 STREET, 52 DRIVE between 73 STREET and 74 STREET, 73 STREET between 52 DRIVE and 52 ROAD, 79 STREET between ANKENER AVENUE and GRAND AVENUE, 74 STREET between 52 COURT and 52 AVENUE, 52 COURT between 73 STREET and 74 STREET, 73 STREET between 52 COURT and 52 DRIVE, 52 ROAD between 73 STREET and 74 STREET, 73 STREET between 52 ROAD and 52 AVENUE, GRAND AVENUE between 73 PLACE and 74 STREET, 57 AVENUE between 73 PLACE and 74 STREET, 57 AVENUE between 74 STREET and 80 STREET",Queens,"4, 5","104, 110",Television,Episodic series,United States of America,"11373, 11378"
+661078,Shooting Permit,07/15/2022 07:00:00 AM,07/15/2022 06:00:00 PM,07/11/2022 11:23:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 56 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,5,"14, 18",Still Photography,Not Applicable,United States of America,"10017, 10022"
+661057,Theater Load in and Load Outs,08/01/2022 12:01:00 AM,08/08/2022 11:59:00 PM,07/11/2022 10:23:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+661056,Shooting Permit,07/14/2022 10:00:00 AM,07/15/2022 12:00:00 AM,07/11/2022 10:19:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between CLINTON STREET and RIDGE STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and BANKER STREET",Manhattan,"1, 3","1, 7, 9, 94",WEB,Not Applicable,United States of America,"10002, 10009, 10013, 11222"
+661053,Shooting Permit,07/15/2022 01:00:00 PM,07/16/2022 03:00:00 AM,07/11/2022 10:11:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+661042,Theater Load in and Load Outs,07/22/2022 12:01:00 AM,07/23/2022 06:00:00 AM,07/11/2022 09:27:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+661040,Shooting Permit,07/13/2022 10:30:00 AM,07/14/2022 12:00:00 AM,07/11/2022 09:24:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between PEARL STREET and SOUTH WILLIAM STREET, GREENWICH STREET between LAIGHT STREET and HUBERT STREET, HUBERT STREET between GREENWICH STREET and HUDSON STREET",Manhattan,1,1,WEB,Not Applicable,United States of America,"10004, 10005, 10013"
+661037,Shooting Permit,07/14/2022 06:00:00 AM,07/14/2022 11:00:00 PM,07/11/2022 09:09:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET,Brooklyn,1,94,Film,Feature,United States of America,11211
+660995,Shooting Permit,07/16/2022 01:00:00 AM,07/16/2022 10:00:00 PM,07/10/2022 08:48:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 6 AVENUE and BROADWAY,Manhattan,"11, 5","13, 23",Television,Not Applicable,United States of America,"10001, 10029"
+660988,Shooting Permit,07/13/2022 06:00:00 PM,07/14/2022 08:00:00 AM,07/10/2022 07:44:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 32 STREET between 5 AVENUE and BROADWAY, WEST 31 STREET between 5 AVENUE and BROADWAY, 5 AVENUE between WEST 31 STREET and WEST 32 STREET, BROADWAY between WEST 32 STREET and WEST 31 STREET, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET",Manhattan,5,14,Television,Cable-episodic,United States of America,"10001, 10016"
+660985,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 10:00:00 PM,07/10/2022 07:20:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 2 AVENUE and 1 AVENUE, ST MARKS PLACE between 2 AVENUE and 1 AVENUE",Manhattan,"2, 3",9,Film,Feature,United States of America,10003
+660979,Shooting Permit,07/13/2022 09:00:00 AM,07/13/2022 10:00:00 PM,07/10/2022 06:07:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","104 STREET between 41 AVENUE and 42 AVENUE, 2 AVENUE between 35 STREET and 36 STREET",Queens,"2, 4, 7","110, 72, 84",Television,Not Applicable,United States of America,"11201, 11232, 11368"
+660954,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 09:00:00 PM,07/10/2022 12:38:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, AMSTERDAM AVENUE between WEST 150 STREET and WEST 151 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+660949,Shooting Permit,07/13/2022 10:00:00 AM,07/13/2022 11:00:00 PM,07/10/2022 11:41:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","32 AVENUE between UNION STREET and PARSONS BOULEVARD, UNION STREET between 32 AVENUE and 34TH AVENUE, COLLEGE POINT BOULEVARD between 36 AVENUE and 39 AVENUE, 39 AVENUE between COLLEGE POINT BOULEVARD and PRINCE STREET",Queens,7,109,Film,Feature,United States of America,"11354, 11355"
+660896,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 11:00:00 PM,07/09/2022 02:25:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and DEAD END, FERRIS STREET between COFFEY STREET and VAN DYKE STREET, FERRIS STREET between COFFEY STREET and WOLCOTT STREET, FERRIS STREET between WOLCOTT STREET and SULLIVAN STREET, DIKEMAN STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, COFFEY STREET between FERRIS STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+660810,Shooting Permit,07/17/2022 03:00:00 PM,07/17/2022 06:00:00 PM,07/08/2022 04:14:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Film,Short,United States of America,11230
+660796,Shooting Permit,08/04/2022 10:00:00 AM,08/04/2022 11:00:00 PM,07/08/2022 03:38:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 67 STREET and WEST 68 STREET,Manhattan,7,20,Television,Cable-other,United States of America,10023
+660793,Shooting Permit,07/21/2022 10:00:00 AM,07/21/2022 11:00:00 PM,07/08/2022 03:36:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 67 STREET and WEST 68 STREET,Manhattan,7,20,Television,Cable-other,United States of America,10023
+660791,Shooting Permit,07/14/2022 11:00:00 AM,07/14/2022 11:59:00 PM,07/08/2022 03:27:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660787,Shooting Permit,08/03/2022 05:30:00 PM,08/04/2022 06:00:00 AM,07/08/2022 03:20:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY AVENUE between EASTERN PARKWAY and UNION STREET, ALBANY AVENUE between UNION STREET and PRESIDENT STREET",Brooklyn,9,71,Film,Feature,United States of America,11213
+660785,Shooting Permit,07/14/2022 09:00:00 AM,07/14/2022 11:59:00 PM,07/08/2022 03:20:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, RIVER STREET between GRAND STREET and METROPOLITAN AVENUE, NORTH 1 STREET between RIVER STREET and KENT AVENUE",Manhattan,"1, 2","9, 90",Commercial,Commercial,United States of America,"10003, 11249"
+660777,Shooting Permit,07/21/2022 07:30:00 AM,07/28/2022 07:00:00 PM,07/08/2022 03:05:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 106 STREET and EAST 107 STREET,Manhattan,11,23,Television,Cable-other,United States of America,10029
+660767,Theater Load in and Load Outs,07/22/2022 12:01:00 AM,07/23/2022 11:59:00 PM,07/08/2022 02:23:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+660757,Shooting Permit,09/20/2022 12:00:00 AM,10/03/2022 11:00:00 PM,07/08/2022 01:56:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ST FELIX STREET and ASHLAND PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE",Brooklyn,2,88,Theater,Theater,United States of America,11217
+660744,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,07/08/2022 01:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE AVENUE between LEONARD STREET and MANHATTAN AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+660718,Shooting Permit,07/15/2022 12:00:00 AM,07/15/2022 03:00:00 PM,07/08/2022 12:06:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+660717,Shooting Permit,07/13/2022 11:00:00 AM,07/14/2022 01:00:00 AM,07/08/2022 12:03:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660715,Shooting Permit,07/14/2022 05:00:00 AM,07/14/2022 11:59:00 PM,07/08/2022 11:58:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+660714,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 10:00:00 PM,07/08/2022 11:56:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+660713,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 06:00:00 PM,07/08/2022 11:54:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",STARR STREET between WYCKOFF AVENUE and IRVING AVENUE,Brooklyn,4,83,WEB,Not Applicable,United States of America,11237
+660712,Shooting Permit,07/13/2022 08:00:00 AM,07/13/2022 09:00:00 PM,07/08/2022 11:54:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",COVERT STREET between BUSHWICK AVENUE and BROADWAY,Brooklyn,4,83,WEB,Not Applicable,United States of America,11207
+660707,Shooting Permit,07/21/2022 06:00:00 AM,07/21/2022 10:00:00 PM,07/08/2022 11:45:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 59 STREET between 6 AVENUE and 7 AVENUE,Manhattan,"5, 64","18, 22",Still Photography,Not Applicable,United States of America,"10019, 10023"
+660706,Shooting Permit,07/20/2022 06:00:00 AM,07/20/2022 10:00:00 PM,07/08/2022 11:41:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 59 STREET between 6 AVENUE and 7 AVENUE,Manhattan,"5, 64","18, 22",Still Photography,Not Applicable,United States of America,"10019, 10023"
+660700,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 11:59:00 PM,07/08/2022 11:20:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660690,Shooting Permit,07/13/2022 09:00:00 AM,07/14/2022 12:00:00 AM,07/08/2022 10:57:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DAM STREET between 47 AVENUE and THOMSON AVENUE, THOMSON AVENUE between VAN DAM STREET and 31 STREET, THOMSON AVENUE between 31 STREET and 30 PLACE, 31 STREET between THOMSON AVENUE and 47 AVENUE, 47 AVENUE between VAN DAM STREET and 31 STREET, 47 AVENUE between VAN DAM STREET and 32 PLACE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+660688,Shooting Permit,07/13/2022 08:00:00 PM,07/13/2022 11:59:00 PM,07/08/2022 10:43:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 141 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+660687,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 09:00:00 PM,07/08/2022 10:41:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 5 AVENUE and 6 AVENUE, EAST 40 STREET between 5 AVENUE and MADISON AVENUE, EAST 41 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, 6 AVENUE between WEST 39 STREET and WEST 38 STREET, EAST 43 STREET between VANDERBILT AVENUE and MADISON AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Manhattan,"1, 5","14, 40",Television,Episodic series,United States of America,"10016, 10017, 10018, 10454"
+660664,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 10:00:00 PM,07/08/2022 09:47:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANSION AVENUE between WHITMAN AVENUE and HILLSIDE TERRACE, MANSION AVENUE between HILLSIDE TERRACE and MCKEE AVENUE",Staten Island,3,122,Television,Episodic series,United States of America,10308
+660656,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 10:30:00 PM,07/08/2022 09:26:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between SEVENTH AVENUE and SIXTH AVENUE, WEST 51 STREET between SEVENTH AVENUE and SIXTH AVENUE",Manhattan,5,18,Still Photography,Not Applicable,United States of America,"10019, 10020"
+660647,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 10:00:00 PM,07/08/2022 08:46:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 5 AVENUE and 6 AVENUE, WEST 36 STREET between 6 AVENUE and BROADWAY, WEST 36 STREET between BROADWAY and 7 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE, BROADWAY between WEST 35 STREET and WEST 36 STREET, BROADWAY between WEST 36 STREET and WEST 37 STREET, WEST 24 STREET between 7 AVENUE and 9 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,"10001, 10011, 10018"
+660646,Shooting Permit,07/11/2022 07:00:00 AM,07/11/2022 09:00:00 PM,07/08/2022 08:46:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, DELANCEY STREET between CHRYSTIE STREET and FORSYTH STREET, BOWERY between BROOME STREET and DELANCEY STREET, BOWERY between KENMARE STREET and SPRING STREET, BOWERY between SPRING STREET and PRINCE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, LEROY STREET between BEDFORD STREET and BLEECKER STREET, 6 AVENUE between MINETTA LANE and MINETTA STREET, 6 AVENUE between WEST 3 STREET and WEST 9 STREET, 6 AVENUE between BEDFORD STREET and DOWNING STREET, 6 AVENUE between MINETTA LANE and WEST 3 STREET, CARMINE STREET between 6 AVENUE and BEDFORD STREET, ELDRIDGE STREET between DELANCEY STREET and RIVINGTON STREET",Manhattan,"2, 3","5, 6",Television,Cable-episodic,United States of America,"10002, 10011, 10012, 10014"
+660626,Shooting Permit,07/12/2022 09:00:00 AM,07/12/2022 06:00:00 PM,07/08/2022 07:15:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",HUBERT STREET between COLLISTER STREET and GREENWICH STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+660624,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 09:00:00 PM,07/08/2022 07:03:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 154 STREET and WEST 152 STREET, AMSTERDAM AVENUE between WEST 150 STREET and WEST 151 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+660593,Shooting Permit,07/12/2022 06:00:00 PM,07/13/2022 09:00:00 AM,07/07/2022 09:19:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 52 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, PARK AVENUE between EAST 49 STREET and EAST 52 STREET, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10022, 10152, 10154"
+660577,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 08:00:00 PM,07/07/2022 07:10:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 1 STREET between BERRY STREET and BEDFORD AVENUE, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, NORTH 3 STREET between KENT AVENUE and BERRY STREET",Brooklyn,1,"90, 94",Film,Feature,United States of America,"11211, 11249"
+660576,Shooting Permit,07/13/2022 06:00:00 AM,07/13/2022 09:00:00 PM,07/07/2022 06:55:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUANE STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between DUANE STREET and READE STREET, HUDSON STREET between DUANE STREET and JAY STREET, CENTER BLVD between 47 AVENUE and N BASIN ROAD, VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA",Manhattan,"1, 2","1, 108, 114",Commercial,Commercial,United States of America,"10013, 11101, 11109"
+660558,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 07:00:00 PM,07/07/2022 05:26:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",DESBROSSES STREET between HUDSON STREET and GREENWICH STREET,Manhattan,"1, 2",1,Still Photography,Not Applicable,United States of America,10013
+660559,Shooting Permit,07/14/2022 01:00:00 AM,07/14/2022 07:00:00 PM,07/07/2022 05:26:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",DESBROSSES STREET between HUDSON STREET and GREENWICH STREET,Manhattan,"1, 2",1,Still Photography,Not Applicable,United States of America,10013
+660533,Shooting Permit,07/15/2022 02:00:00 PM,07/16/2022 02:00:00 AM,07/07/2022 04:13:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DYCKMAN STREET and WEST 204 STREET, WEST 207 STREET between COOPER STREET and VERMILYEA AVENUE, SHERMAN AVE. between BROADWAY and THAYER STREET, BEAK STREET between PAYSON AVENUE and SEAMAN AVENUE, BROADWAY between WEST 204 STREET and WEST 207 STREET, BROADWAY between WEST 207 STREET and ISHAM STREET",Manhattan,12,34,Television,Cable-episodic,United States of America,"10034, 10040"
+660528,Shooting Permit,07/19/2022 04:00:00 PM,07/20/2022 06:00:00 AM,07/07/2022 03:48:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 9 AVENUE and 8 AVENUE, WEST 49 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,18,Television,Pilot,United States of America,10019
+660525,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 08:00:00 PM,07/07/2022 03:39:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between FLUSHING AVENUE and PARK AVENUE, FLUSHING AVENUE between CLINTON AVENUE and HALL STREET, HALL STREET between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+660517,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 09:00:00 PM,07/07/2022 03:14:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between HOWARD STREET and GRAND STREET,Manhattan,2,"1, 5",WEB,Not Applicable,United States of America,10013
+660508,Shooting Permit,07/18/2022 06:00:00 AM,07/18/2022 11:59:00 PM,07/07/2022 03:03:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660507,Shooting Permit,07/15/2022 06:00:00 AM,07/15/2022 11:59:00 PM,07/07/2022 03:02:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 44 ROAD and 44 DRIVE, 21 STREET between 44 DRIVE and 45 AVENUE, 21 STREET between 46 AVENUE and 46 ROAD, 46 ROAD between 21 STREET and 11 STREET, 21ST STREET between 46 ROAD and 47TH AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660503,Shooting Permit,07/20/2022 07:00:00 AM,07/20/2022 09:00:00 PM,07/07/2022 02:58:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660500,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,07/07/2022 02:53:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660497,Shooting Permit,07/14/2022 06:00:00 AM,07/14/2022 11:59:00 PM,07/07/2022 02:52:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660496,Shooting Permit,07/13/2022 06:00:00 AM,07/13/2022 11:59:00 PM,07/07/2022 02:52:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660494,Shooting Permit,07/14/2022 07:00:00 AM,07/14/2022 09:00:00 PM,07/07/2022 02:43:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660493,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 09:00:00 PM,07/07/2022 02:42:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660472,Shooting Permit,07/09/2022 08:00:00 AM,07/09/2022 04:00:00 PM,07/07/2022 01:43:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 11 AVENUE and 10 AVENUE",Manhattan,"1, 4, 5","1, 10, 14, 18",Television,Episodic series,United States of America,"10001, 10007, 10011, 10019, 10036, 10280"
+660465,Shooting Permit,07/14/2022 09:00:00 AM,07/14/2022 11:00:00 PM,07/07/2022 01:28:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 135 STREET and WEST 139 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET, ST NICHOLAS AVENUE between WEST 134 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET",Manhattan,"10, 9","26, 30, 32",Television,Episodic series,United States of America,10030
+660464,Shooting Permit,07/13/2022 08:00:00 AM,07/13/2022 11:00:00 PM,07/07/2022 01:27:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660461,Shooting Permit,07/11/2022 07:00:00 AM,07/11/2022 09:00:00 PM,07/07/2022 01:18:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 154 STREET and WEST 152 STREET, AMSTERDAM AVENUE between WEST 150 STREET and WEST 151 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE",Manhattan,9,30,Film,Feature,United States of America,"10031, 10032"
+660456,Shooting Permit,07/12/2022 09:00:00 AM,07/12/2022 11:00:00 PM,07/07/2022 01:08:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between GRAND STREET and 6 AVENUE, THOMPSON STREET between WATTS STREET and GRAND STREET",Manhattan,2,1,Documentary,Not Applicable,United States of America,10013
+660455,Shooting Permit,07/13/2022 10:00:00 AM,07/14/2022 12:00:00 AM,07/07/2022 01:08:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 178 STREET and EAST 179 STREET,Bronx,"3, 6","42, 48",Film,Feature,United States of America,"10457, 10460"
+660454,Shooting Permit,07/26/2022 06:00:00 AM,07/26/2022 07:00:00 PM,07/07/2022 01:07:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCCLELLAN STREET between WALTON AVENUE and GRAND CONCOURSE,Bronx,4,44,Film,Feature,United States of America,10452
+660444,Shooting Permit,07/12/2022 07:00:00 AM,07/13/2022 03:00:00 AM,07/07/2022 12:55:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 179 STREET and EAST 178 STREET, HOME STREET between WESTCHESTER AVENUE and WEST FARMS ROAD, WESTCHESTER AVENUE between HOME STREET and WHITLOCK AVENUE",Bronx,"2, 3, 6","41, 42, 48",Film,Feature,United States of America,"10457, 10459"
+660441,Shooting Permit,07/17/2022 07:00:00 AM,07/17/2022 08:00:00 PM,07/07/2022 12:50:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 61 STREET, EAST 63 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,10065
+660440,Shooting Permit,07/16/2022 07:00:00 AM,07/16/2022 08:00:00 PM,07/07/2022 12:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 61 STREET, EAST 63 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,10065
+660426,Shooting Permit,07/15/2022 07:00:00 AM,07/15/2022 08:00:00 PM,07/07/2022 12:37:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 61 STREET, EAST 63 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,10065
+660418,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 07:00:00 PM,07/07/2022 12:25:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 10 AVENUE and 11 AVENUE, 30TH ST between 10 AVENUE and 11 AVENUE",Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,10001
+660417,Shooting Permit,07/14/2022 06:00:00 AM,07/14/2022 10:00:00 PM,07/07/2022 12:24:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+660413,Shooting Permit,07/10/2022 05:00:00 AM,07/10/2022 11:00:00 AM,07/07/2022 12:06:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+660386,Shooting Permit,07/09/2022 04:00:00 AM,07/09/2022 11:00:00 AM,07/07/2022 10:55:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+660379,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 09:00:00 PM,07/07/2022 10:37:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660378,Shooting Permit,07/11/2022 07:00:00 AM,07/11/2022 09:00:00 PM,07/07/2022 10:34:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+660366,Shooting Permit,07/13/2022 09:00:00 AM,07/13/2022 11:00:00 PM,07/07/2022 09:48:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+660365,Shooting Permit,07/12/2022 08:00:00 AM,07/12/2022 10:00:00 PM,07/07/2022 09:48:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+660359,Shooting Permit,07/11/2022 01:00:00 PM,07/11/2022 03:00:00 PM,07/07/2022 09:29:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",CRESCENT STREET between QUEENS PLAZA SOUTH and 42 ROAD,Queens,2,108,Television,Episodic series,United States of America,11101
+660348,Shooting Permit,07/11/2022 06:00:00 AM,07/11/2022 08:00:00 PM,07/07/2022 08:42:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between HERBERT STREET and RICHARDSON STREET, MEEKER AVENUE between NORTH HENRY STREET and MONITOR STREET, MEEKER AVENUE between GRAHAM AVENUE and MONITOR STREET",Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222"
+660346,Shooting Permit,07/11/2022 03:00:00 PM,07/11/2022 11:59:00 PM,07/07/2022 08:19:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between 1 AVENUE and AVENUE A, AVENUE A between EAST 6 STREET and EAST 7 STREET, EAST 6 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 6 STREET and EAST 5 STREET, AVENUE A between EAST 7 STREET and EAST 8 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 4 STREET between 1 AVENUE and AVENUE A, 1 AVENUE between EAST 3 STREET and EAST 4 STREET, 1 AVENUE between EAST 4 STREET and EAST 6 STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, MONTAGUE STREET between MONTAGUE TERRACE and HICKS STREET",Brooklyn,"2, 3","84, 9",Television,Episodic series,United States of America,"10003, 10009, 11201"
+660322,Shooting Permit,07/13/2022 12:00:00 PM,07/13/2022 09:30:00 PM,07/06/2022 10:20:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 133 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE,Manhattan,"10, 9","26, 30, 32",Film,Feature,United States of America,"10030, 10031"
+660315,Shooting Permit,07/11/2022 02:00:00 PM,07/12/2022 04:00:00 AM,07/06/2022 09:29:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 49 STREET, WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10019, 10020, 10119, 10171, 10172"
+660296,Shooting Permit,07/11/2022 08:00:00 AM,07/11/2022 10:00:00 PM,07/06/2022 07:15:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+660271,Shooting Permit,07/11/2022 12:00:00 PM,07/12/2022 02:00:00 AM,07/06/2022 05:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between LIBERTY PLACE and BROADWAY, NASSAU STREET between PINE STREET and CEDAR STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, CEDAR STREET between BROADWAY and NASSAU STREET, MAIDEN LANE between PEARL STREET and WATER STREET, PINE STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038, 10045"
+660270,Shooting Permit,07/11/2022 12:00:00 PM,07/12/2022 02:00:00 AM,07/06/2022 05:08:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET",Manhattan,1,1,Television,Episodic series,United States of America,10005
+660260,Shooting Permit,08/01/2022 12:00:00 PM,08/01/2022 06:00:00 PM,07/06/2022 04:44:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEACH 4 STREET between SEAGIRT AVENUE and DEAD END,Queens,14,101,Film,Short,United States of America,11691
+660257,Shooting Permit,07/12/2022 08:00:00 AM,07/12/2022 09:00:00 PM,07/06/2022 04:41:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between 7 AVENUE SOUTH and BEDFORD STREET, 7 AVENUE SOUTH between CLARKSON STREET and BARROW STREET, BLEECKER STREET between CHRISTOPHER STREET and BARROW STREET, BLEECKER STREET between MORTON STREET and CARMINE STREET, 6 AVENUE between WEST 4 STREET and WEST WASHINGTON PLACE, 6 AVENUE between W HOUSTON ST and MINETTA LANE, BLEECKER STREET between 6 AVENUE and MACDOUGAL STREET, LA GUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, BLEECKER ST between LA GUARDIA PLACE and WOOSTER ST, MACDOUGAL STREET between BLEECKER STREET and MINETTA LANE",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+660228,Shooting Permit,07/13/2022 06:00:00 AM,07/13/2022 10:00:00 PM,07/06/2022 03:20:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+660225,Shooting Permit,07/11/2022 06:00:00 AM,07/11/2022 10:00:00 PM,07/06/2022 03:16:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+660186,Shooting Permit,07/08/2022 11:00:00 AM,07/09/2022 01:00:00 AM,07/06/2022 01:39:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 56 STREET between SUTTON PLACE SOUTH and DEAD END, SUTTON PLACE SOUTH between EAST 55 STREET and EAST 57 STREET, EAST 55 STREET between SUTTON PLACE SOUTH and 1 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 55 STREET, WEST 55 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 60 STREET",Manhattan,"5, 6, 64, 8","17, 18, 19, 22",Television,Cable-episodic,United States of America,"10017, 10019, 10022, 10023, 10152, 10171"
+660144,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 10:00:00 PM,07/06/2022 11:51:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STEWART ROAD between 219 STREET and GRAND CENTRAL PARKWAY, 219 STREET between STEWART ROAD and PECK AVENUE, PECK AVENUE between 218 STREET and 219 STREET, GRAND CENTRAL PARKWAY between 82 AVENUE and STEWART ROAD, GRAND CENTRAL PARKWAY between UNION TURNPIKE and SPRINGFIELD BLVD, SPRINGFIELD BLVD between UNION TURNPIKE and GRAND CENTRAL PARKWAY",Queens,11,111,Television,Episodic series,United States of America,11427
+660134,Shooting Permit,07/14/2022 09:00:00 AM,07/14/2022 11:00:00 PM,07/06/2022 11:30:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between HICKS STREET and HENRY STREET, REMSEN STREET between CLINTON STREET and COURT STREET, MONTAGUE STREET between MONTAGUE TERRACE and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and JOHNSON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+660130,Shooting Permit,07/08/2022 10:00:00 AM,07/09/2022 02:30:00 AM,07/06/2022 11:18:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and WILSON AVENUE, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE, WILSON AVENUE between NOLL STREET and GEORGE STREET, WILSON AVENUE between GEORGE STREET and MELROSE STREET, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET, FLUSHING AVENUE between IRVING AVENUE and STEWART AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+660116,Shooting Permit,07/11/2022 06:00:00 AM,07/11/2022 09:00:00 PM,07/06/2022 11:02:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET",Manhattan,7,24,Film,Feature,United States of America,10024
+660094,Theater Load in and Load Outs,07/13/2022 12:01:00 AM,07/13/2022 11:59:00 PM,07/06/2022 09:58:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+660092,Shooting Permit,07/08/2022 07:00:00 AM,07/08/2022 11:00:00 PM,07/06/2022 09:56:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 55 STREET and WEST 58 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between BROADWAY and 8 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,"10019, 10106"
+660088,Shooting Permit,07/11/2022 07:00:00 AM,07/11/2022 11:00:00 PM,07/06/2022 09:52:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43RD AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660078,Shooting Permit,07/08/2022 08:00:00 AM,07/08/2022 11:59:00 PM,07/06/2022 09:37:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43RD AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+660076,Shooting Permit,07/11/2022 08:00:00 AM,07/12/2022 02:00:00 AM,07/06/2022 09:35:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 178 STREET and EAST 179 STREET,Manhattan,"12, 6","33, 48",Film,Feature,United States of America,"10032, 10457"
+660075,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 11:59:00 PM,07/06/2022 09:31:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+660073,Shooting Permit,07/13/2022 11:00:00 AM,07/14/2022 12:00:00 AM,07/06/2022 09:13:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",MELROSE STREET between IRVING AVENUE and KNICKERBOCKER AVENUE,Brooklyn,4,83,Television,Reality,United States of America,11237
+660064,Shooting Permit,07/08/2022 08:00:00 AM,07/08/2022 10:00:00 PM,07/06/2022 08:48:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+660063,Shooting Permit,07/09/2022 07:00:00 AM,07/09/2022 11:00:00 PM,07/06/2022 08:35:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between LIBERTY PLACE and BROADWAY, NASSAU STREET between PINE STREET and CEDAR STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, CEDAR STREET between BROADWAY and NASSAU STREET, MAIDEN LANE between PEARL STREET and WATER STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, LIBERTY STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038, 10045"
+660058,Shooting Permit,07/09/2022 06:00:00 AM,07/09/2022 08:00:00 PM,07/06/2022 07:10:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 210 STREET between ROCHAMBEAU AVENUE and KOSSUTH AVENUE, STEUBEN AVENUE between EAST 210 STREET and EAST 208 STREET, Morris Park Ave between Eastchester Rd and Newport Ave, Eastchester Rd between Morris Park Ave and Wilkinson Ave",Bronx,"11, 7","49, 52",Commercial,Commercial,United States of America,"10461, 10467"
+659984,Shooting Permit,07/08/2022 06:00:00 AM,07/08/2022 10:00:00 PM,07/05/2022 05:00:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+659959,Shooting Permit,07/07/2022 06:00:00 AM,07/07/2022 09:00:00 PM,07/05/2022 03:53:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAINBRIDGE AVENUE between EAST GUNHILL ROAD and EAST 211 STREET, EAST GUNHILL ROAD between WAYNE AVENUE and TRYON AVENUE, EAST GUN HILL ROAD between TRYON AVENUE and KINGS COLLEGE PLACE, EAST 210 STREET between BAINBRIDGE AVENUE and STEUBEN AVENUE, MORRIS PARK AVENUE between EASTCHESTER ROAD and NEWPORT AVENUE, Eastchester Rd between WILKINSON AVENUE and Morris Park Ave",Bronx,"11, 7","49, 52",Commercial,Commercial,United States of America,"10461, 10467"
+659958,Shooting Permit,07/13/2022 07:00:00 AM,07/13/2022 11:00:00 PM,07/05/2022 03:48:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FREEDOM PLACE SOUTH between WEST 64 STREET and WEST 59 STREET, AMSTERDAM AVENUE between WEST 59 STREET and WEST 62 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, BROADWAY between WEST 66 STREET and WEST 70 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Television,Episodic series,United States of America,"10019, 10023, 10069"
+659950,Shooting Permit,07/12/2022 07:00:00 AM,07/12/2022 09:00:00 PM,07/05/2022 03:33:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, IRVING PLACE between EAST 20 STREET and EAST 19 STREET, IRVING PLACE between EAST 19 STREET and EAST 18 STREET, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 25 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+659948,Shooting Permit,07/08/2022 12:00:00 PM,07/09/2022 02:00:00 AM,07/05/2022 03:32:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 54 STREET and WEST 55 STREET,Manhattan,5,18,Television,Cable-episodic,United States of America,10019
+659938,Shooting Permit,07/08/2022 08:00:00 AM,07/08/2022 11:59:00 PM,07/05/2022 03:15:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","SULLIVAN STREET between WATTS STREET and BROOME STREET, GRAND STREET between 6 AVENUE and VARICK STREET, WATTS STREET between VARICK STREET and HUDSON STREET, VARICK STREET between GRAND STREET and CANAL STREET, VARICK STREET between GRAND STREET and WATTS STREET, WEST STREET between NORTH MOORE STREET and HUBERT STREET, HUBERT STREET between WEST STREET and GREENWICH STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+659928,Shooting Permit,07/08/2022 11:00:00 AM,07/09/2022 02:00:00 AM,07/05/2022 02:41:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659922,Shooting Permit,07/08/2022 11:00:00 AM,07/08/2022 11:59:00 PM,07/05/2022 02:19:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, JOHN STREET between PEARL STREET and SOUTH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+659895,Shooting Permit,07/12/2022 10:00:00 AM,07/13/2022 01:00:00 AM,07/05/2022 12:39:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, UNION AVENUE between FROST STREET and MEEKER AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11211
+659891,Shooting Permit,07/12/2022 08:00:00 AM,07/12/2022 11:00:00 PM,07/05/2022 12:35:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","FREDERICK DOUGLAS BOULEVARD between WEST 135 STREET and WEST 141 STREET, WEST 140 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 139 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 138 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 138 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 141 STREET between ST NICHOLAS AVENUE and HAMILTON TERRACE, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET",Manhattan,"10, 9","26, 30, 32",Television,Cable-episodic,United States of America,"10030, 10031"
+659877,Shooting Permit,07/11/2022 08:00:00 AM,07/11/2022 11:00:00 PM,07/05/2022 12:00:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between STARR AVENUE and BRADLEY AVENUE, BRADLEY AVENUE between 35 STREET and GREENPOINT AVENUE, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 35 STREET and 29 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+659874,Shooting Permit,07/08/2022 10:00:00 AM,07/08/2022 07:00:00 PM,07/05/2022 11:54:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 80 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 80 STREET and EAST 81 STREET, EAST 74 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10028, 10075"
+659866,Shooting Permit,07/08/2022 08:00:00 AM,07/08/2022 11:00:00 PM,07/05/2022 11:27:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, BROADWAY between WEST 90 STREET and WEST 91 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET, AMSTERDAM AVENUE between WEST 90 STREET and WEST 91 STREET, WEST 89 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,24,Film,Feature,United States of America,10024
+659863,Shooting Permit,07/08/2022 08:00:00 PM,07/09/2022 02:00:00 AM,07/05/2022 11:15:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between FRONT STREET and YORK STREET, FRONT STREET between PEARL STREET and JAY STREET, PEARL STREET between YORK STREET and PROSPECT STREET, YORK STREET between JAY STREET and ADAMS STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+659859,Shooting Permit,07/14/2022 06:00:00 AM,07/14/2022 11:59:00 PM,07/05/2022 11:11:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WHYTE AVENUE,Brooklyn,1,94,Television,Special/Awards Show,United States of America,11249
+659860,Shooting Permit,07/15/2022 06:00:00 AM,07/15/2022 11:59:00 PM,07/05/2022 11:11:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Television,Special/Awards Show,United States of America,11249
+659850,Shooting Permit,07/07/2022 07:00:00 AM,07/07/2022 01:00:00 PM,07/05/2022 10:55:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and VAN DAM STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+659849,Shooting Permit,07/07/2022 11:00:00 AM,07/08/2022 02:00:00 AM,07/05/2022 10:49:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DEAD END and COMMERCIAL STREET, BOX STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, ASH STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between COMMERCIAL STREET and CLAY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+659842,Shooting Permit,07/07/2022 08:00:00 AM,07/07/2022 11:00:00 PM,07/05/2022 10:19:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659836,Shooting Permit,07/08/2022 03:00:00 PM,07/09/2022 05:00:00 AM,07/05/2022 09:45:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 74 STREET and EAST 75 STREET, 5 AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 75 STREET and EAST 80 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10075"
+659832,Theater Load in and Load Outs,07/09/2022 12:01:00 AM,07/09/2022 11:59:00 PM,07/05/2022 09:39:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+659818,Shooting Permit,07/07/2022 08:00:00 AM,07/07/2022 10:00:00 PM,07/05/2022 06:35:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+659807,Shooting Permit,07/07/2022 06:00:00 AM,07/07/2022 10:00:00 PM,07/04/2022 10:27:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BUSHWICK AVENUE between MYRTLE AVENUE and TROUTMAN STREET, BUSHWICK AVENUE between TROUTMAN STREET and STANWIX STREET, MYRTLE AVENUE between BUSHWICK AVENUE and CHARLES PLACE, WILLOUGHBY AVENUE between MYRTLE AVENUE and EVERGREEN AVENUE, MYRTLE AVENUE between WILLOUGHBY AVENUE and EVERGREEN AVENUE, TROUTMAN STREET between BUSHWICK AVENUE and MYRTLE AVENUE",Brooklyn,4,83,Film,Feature,United States of America,"11206, 11221"
+659572,Theater Load in and Load Outs,07/08/2022 06:00:00 AM,08/08/2022 11:00:00 PM,07/01/2022 05:54:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 8 AVENUE and BROADWAY,Manhattan,5,18,Theater,Theater,United States of America,10036
+659547,Shooting Permit,07/13/2022 06:00:00 AM,07/13/2022 11:59:00 PM,07/01/2022 04:14:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET, BROADWAY between WEST 174 STREET and WEST 175 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+659542,Shooting Permit,07/08/2022 12:00:00 PM,07/09/2022 03:00:00 AM,07/01/2022 04:05:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, FRANKLIN STREET between EAGLE STREET and FREEMAN STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MCGUINESS BLVD. between EAGLE ST. and GREEN ST., MANHATTAN AVENUE between DUPONT STREET and HURON STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+659541,Shooting Permit,07/11/2022 08:00:00 AM,07/12/2022 11:00:00 PM,07/01/2022 04:05:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","56 STREET between ANDREWS AVENUE and 62 AVENUE, ANDREWS AVENUE between 56 STREET and 55 STREET, 55 STREET between NURGE AVENUE and ARNOLD AVENUE, ARNOLD AVENUE between 56 STREET and 55 STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+659536,Shooting Permit,07/12/2022 06:00:00 AM,07/12/2022 11:59:00 PM,07/01/2022 03:51:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+659535,Shooting Permit,07/06/2022 12:00:00 PM,07/07/2022 02:00:00 AM,07/01/2022 03:49:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 147 STREET and WEST 148 STREET, WEST 149 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 145 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 145 STREET and WEST 146 STREET, WEST 148 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 148 STREET and WEST 151 STREET",Manhattan,9,30,Television,Episodic series,United States of America,10031
+659530,Theater Load in and Load Outs,07/17/2022 12:01:00 AM,07/31/2022 11:59:00 PM,07/01/2022 03:37:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+659525,Shooting Permit,07/07/2022 03:00:00 PM,07/08/2022 03:00:00 AM,07/01/2022 03:25:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 118 STREET between 1 AVENUE and PLEASANT AVENUE, EAST 118 STREET between PLEASANT AVENUE and DEAD END, PLEASANT AVENUE between EAST 117 STREET and EAST 118 STREET, EAST 117 STREET between 1 AVENUE and PLEASANT AVENUE, EAST 118 STREET between 1 AVENUE and 2 AVENUE, EAST 119 STREET between 1 AVENUE and PLEASANT AVENUE, 1 AVENUE between EAST 120 STREET and EAST 116 STREET, 1 AVENUE between EAST 120 STREET and EAST 124 STREET, EAST 116 STREET between 3 AVENUE and PLEASANT AVENUE",Manhattan,11,25,Television,Cable-episodic,United States of America,"10029, 10035"
+659524,Shooting Permit,07/11/2022 06:00:00 AM,07/11/2022 11:59:00 PM,07/01/2022 03:25:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+659514,Shooting Permit,07/10/2022 06:00:00 AM,07/10/2022 11:59:00 PM,07/01/2022 02:58:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+659508,Shooting Permit,07/07/2022 12:00:00 AM,07/08/2022 01:00:00 AM,07/01/2022 02:35:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, VANDERBILT AVENUE between WILLOUGHBY AVENUE and MYRTLE AVENUE, CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+659503,Theater Load in and Load Outs,07/07/2022 12:01:00 AM,07/10/2022 11:59:00 PM,07/01/2022 02:19:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+659502,Shooting Permit,07/09/2022 06:00:00 AM,07/09/2022 11:59:00 PM,07/01/2022 02:17:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+659482,Shooting Permit,07/07/2022 12:00:00 PM,07/08/2022 03:00:00 AM,07/01/2022 01:15:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659478,Shooting Permit,07/07/2022 09:00:00 AM,07/07/2022 11:59:00 PM,07/01/2022 01:06:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 105 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 106 STREET and EAST 104 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 102 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, CENTRAL PARK NORTH between DUKE ELLINGTON CIRCLE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 11, 64","22, 23, 28",Television,Episodic series,United States of America,"10026, 10029"
+659464,DCAS Prep/Shoot/Wrap Permit,07/11/2022 05:00:00 AM,07/11/2022 02:00:00 PM,07/01/2022 12:31:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, MONTAGUE STREET between COURT STREET and HENRY STREET",Brooklyn,2,84,Television,Cable-other,United States of America,11201
+659451,Shooting Permit,07/07/2022 08:00:00 AM,07/07/2022 08:00:00 PM,07/01/2022 12:01:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+659429,Shooting Permit,07/06/2022 08:00:00 AM,07/06/2022 10:00:00 PM,07/01/2022 10:36:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659383,Shooting Permit,07/06/2022 03:00:00 PM,07/07/2022 06:00:00 AM,06/30/2022 08:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between BROADWAY and CHURCH STREET, CHAMBERS STREET between BROADWAY and ELK STREET, BROADWAY between WARREN STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between MURRAY STREET and WARREN STREET, BROADWAY between CHAMBERS STREET and READE STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, 6 AVENUE between LISPENARD STREET and CHURCH STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, WALKER STREET between CHURCH STREET and BROADWAY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+659377,Shooting Permit,07/06/2022 07:00:00 AM,07/06/2022 11:00:00 PM,06/30/2022 07:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 48 STREET and WEST 49 STREET, WEST 50 STREET between 9 AVENUE and 10 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 51 STREET, WEST 50 STREET between 10 AVENUE and 11 AVENUE, WEST 49 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,10019
+659358,Shooting Permit,07/07/2022 04:00:00 PM,07/08/2022 04:00:00 AM,06/30/2022 05:43:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+659355,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 10:00:00 PM,06/30/2022 05:35:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between ATLANTIC AVENUE and LIBERTY AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, LIBERTY AVENUE between ALABAMA AVENUE and MARY WARREN PLACE, GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and PITKIN AVENUE, BELMONT AVENUE between GEORGIA AVENUE and MARY WARREN PLACE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+659325,Shooting Permit,07/21/2022 09:00:00 AM,07/21/2022 10:00:00 PM,06/30/2022 04:17:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLEVELAND PLACE between KENMARE STREET and BROOME STREET, KENMARE STREET between CLEVELAND PLACE and MULBERRY STREET, KENMARE STREET between MULBERRY STREET and MOTT STREET, KENMARE STREET between MOTT STREET and ELIZABETH STREET, MULBERRY STREET between KENMARE STREET and BROOME STREET, BROOME STREET between CLEVELAND PLACE and MULBERRY STREET",Manhattan,2,5,Commercial,Promo,United States of America,"10012, 10013"
+659322,Shooting Permit,07/20/2022 09:00:00 AM,07/20/2022 10:00:00 PM,06/30/2022 04:15:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLEVELAND PLACE between KENMARE STREET and BROOME STREET, KENMARE STREET between CLEVELAND PLACE and MULBERRY STREET, KENMARE STREET between MULBERRY STREET and MOTT STREET, KENMARE STREET between MOTT STREET and ELIZABETH STREET, BROOME STREET between CLEVELAND PLACE and MULBERRY STREET, MULBERRY STREET between KENMARE STREET and BROOME STREET",Manhattan,2,5,Commercial,Promo,United States of America,"10012, 10013"
+659321,Shooting Permit,07/19/2022 07:00:00 AM,07/19/2022 09:00:00 PM,06/30/2022 04:15:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between CLEVELAND PLACE and MULBERRY STREET, KENMARE STREET between MULBERRY STREET and MOTT STREET, BROOME STREET between MULBERRY STREET and CLEVELAND PLACE",Manhattan,2,5,Commercial,Promo,United States of America,"10012, 10013"
+659315,Theater Load in and Load Outs,07/07/2022 12:01:00 AM,07/08/2022 06:00:00 AM,06/30/2022 04:00:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+659309,Theater Load in and Load Outs,07/08/2022 12:01:00 AM,07/09/2022 06:00:00 AM,06/30/2022 03:42:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+659303,Shooting Permit,07/08/2022 01:00:00 PM,07/08/2022 11:30:00 PM,06/30/2022 03:32:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10097"
+659300,Shooting Permit,07/07/2022 08:00:00 AM,07/08/2022 02:00:00 AM,06/30/2022 03:25:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+659292,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 11:00:00 PM,06/30/2022 03:18:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659291,Shooting Permit,07/05/2022 06:00:00 AM,07/05/2022 11:00:00 PM,06/30/2022 03:18:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, STARR AVENUE between VAN DAM STREET and 34 STREET, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659258,Shooting Permit,07/06/2022 08:00:00 AM,07/06/2022 09:00:00 PM,06/30/2022 02:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE, WEST 49 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10036, 10103, 10105, 10112"
+659257,Shooting Permit,07/06/2022 08:00:00 AM,07/06/2022 10:00:00 PM,06/30/2022 02:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORSYTH STREET between EAST BROADWAY and HENRY STREET, HENRY STREET between PIKE STREET and FORSYTH STREET, HENRY STREET between FORSYTH STREET and MECHANICS ALLEY, HENRY STREET between MECHANICS ALLEY and MARKET STREET, MECHANICS ALLEY between HENRY STREET and MADISON STREET, MARKET STREET between MADISON STREET and MONROE STREET, MONROE STREET between MARKET STREET and CATHERINE STREET, MONROE STREET between MARKET STREET and PIKE STREET, CHERRY STREET between CATHERINE STREET and MARKET STREET, CHERRY STREET between MARKET STREET and PIKE STREET, MARKET SLIP between CHERRY STREET and SOUTH STREET, PIKE STREET between MADISON STREET and MONROE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and FORSYTH STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+659245,Shooting Permit,07/08/2022 06:00:00 AM,07/08/2022 09:00:00 PM,06/30/2022 02:20:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST GUN HILL ROAD between ROCHAMBEAU AVENUE and WAYNE AVENUE, EAST 210 STREET between BAINBRIDGE AVENUE and ROCHAMBEAU AVENUE",Bronx,"11, 7","49, 52",Commercial,Commercial,United States of America,"10461, 10467"
+659193,Shooting Permit,07/08/2022 12:00:00 AM,07/08/2022 02:00:00 PM,06/30/2022 12:44:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+659192,Shooting Permit,07/07/2022 07:00:00 AM,07/07/2022 11:59:00 PM,06/30/2022 12:40:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+659183,Shooting Permit,07/05/2022 08:00:00 AM,07/05/2022 11:59:00 PM,06/30/2022 12:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 9 AVENUE and 10 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 28 STREET, WEST 24 STREET between 7 AVENUE and 9 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+659174,Shooting Permit,07/06/2022 08:00:00 AM,07/06/2022 09:00:00 PM,06/30/2022 11:47:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+659152,Shooting Permit,07/05/2022 07:00:00 AM,07/05/2022 09:00:00 PM,06/30/2022 09:49:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 141 STREET between LOCUST AVENUE and WALNUT AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+659146,Shooting Permit,07/05/2022 08:00:00 AM,07/05/2022 11:00:00 PM,06/30/2022 09:06:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+659140,Shooting Permit,07/05/2022 08:00:00 AM,07/05/2022 08:00:00 PM,06/30/2022 08:39:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between REVIEW AVENUE and VAN DAM STREET, REVIEW AVENUE between 35 STREET and GREENPOINT AVENUE, STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+659115,Shooting Permit,07/05/2022 08:00:00 AM,07/05/2022 08:00:00 PM,06/29/2022 11:57:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10036, 10103, 10105, 10112"
+659096,Shooting Permit,07/06/2022 10:00:00 AM,07/07/2022 01:00:00 AM,06/29/2022 09:37:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+659095,Shooting Permit,07/06/2022 07:00:00 PM,07/06/2022 11:59:00 PM,06/29/2022 09:28:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",EDGEWATER STREET between CLIFTON AVENUE and HYLAN BOULEVARD,Staten Island,1,120,Television,Cable-episodic,United States of America,10305
+659094,Shooting Permit,07/01/2022 12:00:00 PM,07/02/2022 02:30:00 AM,06/29/2022 09:27:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIERREPONT STREET between CLINTON STREET and HENRY STREET, PIERREPONT STREET between HENRY STREET and HICKS STREET, HENRY STREET between LOVE LANE and PIERREPONT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, EAST 9 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 9 STREET and EAST 12 STREET, 2 AVENUE between EAST 9 STREET and EAST 12 STREET, AVENUE A between EAST 7 STREET and EAST 10 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 7 STREET, CLINTON STREET between PIERREPONT STREET and JORALEMON STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,"2, 3","84, 9",Television,Cable-episodic,United States of America,"10003, 10009, 11201"
+659084,Shooting Permit,07/12/2022 10:00:00 AM,07/12/2022 03:00:00 PM,06/29/2022 08:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between BROADWAY and 8 AVENUE,Manhattan,5,"14, 18",WEB,Not Applicable,United States of America,10036
+659080,Shooting Permit,07/05/2022 02:00:00 PM,07/06/2022 09:00:00 PM,06/29/2022 07:27:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 81 STREET between 5 AVENUE and MADISON AVENUE, EAST 82 STREET between MADISON AVENUE and PARK AVENUE, EAST 83 STREET between 5 AVENUE and MADISON AVENUE, EAST 84 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 81 STREET and EAST 82 STREET, MADISON AVENUE between EAST 83 STREET and EAST 85 STREET, MADISON AVENUE between EAST 82 STREET and EAST 83 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, MADISON AVENUE between EAST 78 STREET and EAST 79 STREET, MADISON AVENUE between EAST 81 STREET and EAST 82 STREET",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+659079,Shooting Permit,07/08/2022 07:00:00 AM,07/08/2022 10:00:00 PM,06/29/2022 07:21:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHESTER STREET between MICKLE AVENUE and KINGSLAND AVENUE,Bronx,12,47,Film,Feature,United States of America,10469
+659078,Shooting Permit,07/07/2022 07:00:00 AM,07/07/2022 10:00:00 PM,06/29/2022 07:18:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHESTER STREET between MICKLE AVENUE and KINGSLAND AVENUE,Bronx,12,47,Film,Feature,United States of America,10469
+659076,Shooting Permit,07/06/2022 07:00:00 AM,07/06/2022 10:00:00 PM,06/29/2022 07:13:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHESTER STREET between MICKLE AVENUE and KINGSLAND AVENUE,Bronx,12,47,Film,Feature,United States of America,10469
+659053,Shooting Permit,07/12/2022 08:00:00 AM,07/12/2022 10:00:00 PM,06/29/2022 05:19:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 5 AVENUE and 6 AVENUE, STANHOPE STREET between SAINT NICHOLAS AVENUE and CYPRESS AVENUE",Brooklyn,"4, 5","14, 83",Television,Not Applicable,United States of America,"10018, 11237"
+659050,Theater Load in and Load Outs,07/09/2022 12:01:00 AM,07/10/2022 06:00:00 AM,06/29/2022 05:12:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+659043,Shooting Permit,07/05/2022 06:30:00 AM,07/05/2022 08:00:00 PM,06/29/2022 04:47:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, JACKSON STREET between MANHATTAN AVENUE and GRAHAM AVENUE, GRAHAM AVENUE between WITHERS STREET and FROST STREET, GRAHAM AVENUE between SKILLMAN AVENUE and CONSELYEA STREET, GRAHAM AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET, LEONARD STREET between CONSELYEA STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between LEONARD STREET and LORIMER STREET, MANHATTAN AVENUE between JACKSON STREET and CONSELYEA STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+659031,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 09:00:00 PM,06/29/2022 04:01:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",1 AVENUE between EAST 70 STREET and EAST 69 STREET,Manhattan,8,19,Film,Feature,United States of America,10021
+659024,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 10:00:00 PM,06/29/2022 03:39:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+659021,Shooting Permit,07/05/2022 06:00:00 AM,07/05/2022 10:00:00 PM,06/29/2022 03:34:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+659015,Shooting Permit,07/07/2022 07:00:00 AM,07/07/2022 11:00:00 PM,06/29/2022 03:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 54 STREET and WEST 57 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between BROADWAY and 8 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,"10019, 10106"
+659014,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 10:00:00 PM,06/29/2022 03:24:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 54 STREET and WEST 57 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between BROADWAY and 8 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,"10019, 10106"
+659012,Shooting Permit,07/05/2022 06:00:00 AM,07/05/2022 10:00:00 PM,06/29/2022 03:23:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 100 STREET and WEST 105 STREET, WEST 103 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 108 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, MANHATTAN AVENUE between WEST 106 STREET and WEST 109 STREET, COLUMBUS AVENUE between WEST 100 STREET and WEST 106 STREET, WEST 110 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 107 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE",Manhattan,"64, 7, 9","22, 24, 26",Film,Feature,United States of America,10025
+658906,Shooting Permit,06/30/2022 11:30:00 AM,07/01/2022 02:00:00 AM,06/29/2022 10:50:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 9 AVENUE and 10 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 8 AVENUE and 9 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 28 STREET, 8 AVENUE between WEST 26 STREET and WEST 28 STREET, 8 AVENUE between WEST 28 STREET and WEST 29 STREET, 8 AVENUE between WEST 29 STREET and WEST 30 STREET, WEST 30 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14, 18",Television,Cable-episodic,United States of America,"10001, 10036"
+658883,Shooting Permit,07/01/2022 08:00:00 AM,07/01/2022 11:00:00 PM,06/29/2022 09:28:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658877,Shooting Permit,07/05/2022 07:00:00 AM,07/05/2022 10:00:00 PM,06/29/2022 08:56:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+658872,Shooting Permit,07/01/2022 05:00:00 AM,07/01/2022 02:00:00 PM,06/29/2022 07:19:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+658871,Shooting Permit,06/30/2022 05:00:00 AM,06/30/2022 01:00:00 PM,06/29/2022 07:11:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+658845,Shooting Permit,06/30/2022 05:00:00 PM,06/30/2022 11:59:00 PM,06/28/2022 09:40:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between JANE STREET and HORATIO STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+658798,Shooting Permit,06/30/2022 06:00:00 AM,06/30/2022 10:00:00 PM,06/28/2022 04:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, FERRIS STREET between VAN DYKE STREET and COFFEY STREET, FERRIS STREET between SULLIVAN STREET and KING STREET, SULLIVAN STREET between CONOVER STREET and FERRIS STREET, WOLCOTT STREET between FERRIS STREET and DEAD END, COFFEY STREET between CONOVER STREET and FERRIS STREET, COFFEY STREET between FERRIS STREET and DEAD END, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+658792,Shooting Permit,07/01/2022 11:00:00 AM,07/01/2022 11:00:00 PM,06/28/2022 04:19:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 75 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 78 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10075"
+658790,Shooting Permit,07/04/2022 04:00:00 AM,07/04/2022 10:00:00 AM,06/28/2022 04:17:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+658783,Theater Load in and Load Outs,07/02/2022 12:01:00 AM,07/04/2022 06:00:00 AM,06/28/2022 04:05:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+658771,Shooting Permit,07/01/2022 07:00:00 AM,07/01/2022 07:30:00 PM,06/28/2022 03:29:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and PARK AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 90 STREET and EAST 91 STREET, MADISON AVENUE between EAST 93 STREET and EAST 96 STREET, 5 AVENUE between EAST 105 STREET and EAST 107 STREET",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10029, 10128"
+658746,Shooting Permit,07/01/2022 10:00:00 AM,07/02/2022 02:00:00 AM,06/28/2022 02:26:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 17 STREET and MARLBOROUGH ROAD, DORCHESTER ROAD between RUGBY ROAD and MARLBOROUGH ROAD, EAST 16 STREET between DORCHESTER ROAD and CORTELYOU ROAD, CORTELYOU ROAD between EAST 18 STREET and RUGBY ROAD, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, CATON AVENUE between MARLBOROUGH ROAD and STRATFORD ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+658678,Shooting Permit,06/30/2022 07:00:00 PM,07/01/2022 01:00:00 AM,06/28/2022 12:06:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between FRONT STREET and YORK STREET, FRONT STREET between PEARL STREET and JAY STREET, PEARL STREET between YORK STREET and PROSPECT STREET, YORK STREET between JAY STREET and ADAMS STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+658669,Shooting Permit,07/01/2022 12:00:00 PM,07/02/2022 04:00:00 AM,06/28/2022 11:54:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+658647,Shooting Permit,07/07/2022 06:00:00 AM,07/07/2022 11:59:00 PM,06/28/2022 11:06:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658644,Shooting Permit,07/06/2022 06:00:00 AM,07/06/2022 11:59:00 PM,06/28/2022 11:00:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658639,Shooting Permit,07/05/2022 06:00:00 AM,07/05/2022 11:59:00 PM,06/28/2022 10:51:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658637,Shooting Permit,07/01/2022 07:00:00 AM,07/01/2022 11:00:00 PM,06/28/2022 10:36:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 69 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 69 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+658629,Shooting Permit,06/30/2022 07:00:00 AM,06/30/2022 10:00:00 PM,06/28/2022 09:53:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658610,Shooting Permit,06/29/2022 02:00:00 AM,06/29/2022 07:00:00 PM,06/28/2022 08:13:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 27 STREET and WEST 28 STREET, PARK AVENUE between EAST 71 STREET and EAST 72 STREET",Manhattan,"5, 64, 8","10, 13, 19, 22",Still Photography,Not Applicable,United States of America,"10001, 10021, 10065"
+658585,Shooting Permit,07/01/2022 01:00:00 PM,07/02/2022 03:00:00 AM,06/27/2022 10:05:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 47 STREET between PARK AVENUE and 5 AVENUE, WESTCHESTER AVENUE between MORRISON AVENUE and STRATFORD AVENUE",Bronx,"1, 12, 5, 9","18, 40, 43, 47",Film,Feature,United States of America,"10017, 10455, 10470, 10472"
+658565,Shooting Permit,07/01/2022 08:00:00 AM,07/01/2022 07:00:00 PM,06/27/2022 09:01:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE D between EAST 7 STREET and EAST 8 STREET, SOUTH STREET between PIKE SLIP and RUTGERS SLIP",Manhattan,"3, 6","17, 7, 9",Commercial,Industrial/Corporate,United States of America,"10002, 10009, 10016"
+658548,Shooting Permit,06/30/2022 06:00:00 AM,06/30/2022 08:00:00 PM,06/27/2022 06:51:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Film,Feature,United States of America,10019
+658523,Shooting Permit,07/01/2022 11:00:00 AM,07/02/2022 01:30:00 AM,06/27/2022 04:37:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, WOODWARD AVENUE between STARR STREET and DEKALB AVENUE, METROPOLITAN AVENUE between GRANDVIEW AVENUE and WOODWARD AVENUE, TROUTMAN STREET between WOODWARD AVENUE and FLUSHING AVENUE, FLUSHING AVE. between WOODWARD AVENUE and METROPOLITAN AVENUE, FLUSHING AVE. between METROPOLITAN AVENUE and 53 STREET",Queens,5,104,Television,Cable-episodic,United States of America,"11378, 11385"
+658506,Shooting Permit,07/05/2022 07:00:00 AM,07/05/2022 09:00:00 PM,06/27/2022 03:37:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+658504,Shooting Permit,07/01/2022 09:00:00 AM,07/01/2022 11:30:00 PM,06/27/2022 03:28:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",19 STREET between DITMARS BOULEVARD and 23 ROAD,Queens,1,114,Television,Cable-episodic,United States of America,11105
+658503,Shooting Permit,06/30/2022 11:00:00 AM,07/01/2022 02:30:00 AM,06/27/2022 03:27:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, LAFAYETTE STREET between BLEECKER STREET and EAST HOUSTON STREET, MULBERRY STREET between EAST HOUSTON STREET and BLEECKER STREET, LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between MULBERRY STREET and ELIZABETH STREET, LAFAYETTE STREET between BLEECKER STREET and EAST FOURTH STREET, GREAT JONES STREET between LAFAYETTE STREET and BOWERY",Manhattan,"2, 4","10, 5, 9",Television,Cable-episodic,United States of America,"10001, 10003, 10011, 10012"
+658486,Shooting Permit,06/30/2022 07:00:00 AM,06/30/2022 11:00:00 PM,06/27/2022 02:48:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 69 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 70 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 69 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+658476,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 10:00:00 PM,06/27/2022 02:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between HESTER STREET and RIVINGTON STREET, ELIZABETH STREET between KENMARE STREET and GRAND STREET, DELANCEY STREET between BOWERY and ALLEN STREET, BROOME STREET between ELIZABETH STREET and BOWERY, GRAND STREET between ELIZABETH STREET and BOWERY, BROADWAY between BROOME STREET and GRAND STREET, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,"2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10012, 10013"
+658418,Shooting Permit,06/30/2022 08:00:00 AM,06/30/2022 11:00:00 PM,06/27/2022 11:34:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET, COURT STREET between JORALEMON STREET and STATE STREET, BOERUM PLACE between LIVINGSTON STREET and STATE STREET, SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, ATLANTIC AVENUE between CLINTON STREET and BOERUM PLACE, 37 STREET between FT HAMILTON PARKWAY and 7 AVENUE, 8 AVENUE between 41 STREET and 42 STREET, 2 AVENUE between 44 STREET and 46 STREET",Brooklyn,"12, 2, 6, 7","66, 72, 76, 84",Television,Episodic series,United States of America,"11201, 11219, 11232"
+658402,Shooting Permit,06/30/2022 08:00:00 AM,06/30/2022 09:00:00 PM,06/27/2022 11:01:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 86 STREET and WEST 83 STREET, CENTRAL PARK WEST between WEST 87 STREET and WEST 86 STREET, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22, 24",Still Photography,Not Applicable,United States of America,10024
+658395,Shooting Permit,06/30/2022 08:00:00 AM,06/30/2022 11:00:00 PM,06/27/2022 10:53:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+658385,Shooting Permit,06/29/2022 06:00:00 AM,06/29/2022 09:00:00 PM,06/27/2022 10:34:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between AVENUE OF THE AMERICAS and 5 AVENUE,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10011
+658380,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 09:00:00 PM,06/27/2022 10:07:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 121 STREET between MOUNT MORRIS PARK WEST and LENOX AVENUE, WEST 122 STREET between MOUNT MORRIS PARK WEST and LENOX AVENUE, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, WEST 123 STREET between MOUNT MORRIS PARK WEST and LENOX AVENUE, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 124 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 122 STREET and WEST 125 STREET, LENOX AVENUE between WEST 125 STREET and WEST 126 STREET, WEST 125 STREET between LENOX AVENUE and 5 AVENUE",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,10027
+658377,Shooting Permit,06/30/2022 06:00:00 AM,06/30/2022 08:30:00 PM,06/27/2022 09:57:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and VAN BRUNT STREET, WEST 38 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 6","10, 76",Still Photography,Not Applicable,United States of America,"10018, 11231"
+658373,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 07:00:00 PM,06/27/2022 09:30:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Film,Feature,United States of America,10019
+658371,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 07:00:00 PM,06/27/2022 09:19:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 6 AVENUE and 7 AVENUE, WEST 17 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 17 STREET and WEST 18 STREET, 6 AVENUE between WEST 16 STREET and WEST 17 STREET, WEST 18 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 18 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10003, 10011"
+658354,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 08:00:00 PM,06/26/2022 11:33:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between LEONARD STREET and WORTH STREET, LEONARD STREET between HUDSON STREET and WEST BROADWAY",Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+658348,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 11:30:00 PM,06/26/2022 09:59:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 91 STREET between HOLLAND AVENUE and ROCKAWAY BEACH BOULEVARD, BEACH 90 STREET between SHORE FRONT PARKWAY and HOLLAND AVENUE",Queens,14,100,Film,Feature,United States of America,11693
+658308,Shooting Permit,06/30/2022 06:00:00 AM,06/30/2022 08:00:00 PM,06/26/2022 02:37:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 70 STREET and EAST 68 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065"
+658306,Shooting Permit,06/30/2022 01:00:00 PM,07/01/2022 02:00:00 AM,06/26/2022 02:02:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 109 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,"7, 9","24, 26",Film,Feature,United States of America,10025
+658294,Shooting Permit,06/30/2022 08:00:00 AM,06/30/2022 07:00:00 PM,06/26/2022 11:05:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, UNIVERSITY PLACE between WASHINGTON SQUARE NORTH and WASHINGTON MEWS",Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,"10003, 10011, 10014"
+658249,Shooting Permit,06/30/2022 09:00:00 AM,06/30/2022 10:00:00 PM,06/25/2022 03:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCCLELLAN STREET between RIVER AVENUE and CROMWELL AVENUE,Bronx,4,44,Commercial,Industrial/Corporate,United States of America,"10451, 10452"
+658198,Shooting Permit,06/29/2022 06:00:00 AM,06/29/2022 08:00:00 PM,06/24/2022 07:17:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 51 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 52 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 50 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+658192,Shooting Permit,07/01/2022 06:00:00 AM,07/01/2022 11:59:00 PM,06/24/2022 06:27:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+658191,Shooting Permit,06/30/2022 12:00:00 PM,07/01/2022 05:00:00 AM,06/24/2022 06:27:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, SAINT MARK'S PLACE between 1 AVENUE and 2 AVENUE, 2 AVENUE between SAINT MARK'S PLACE and EAST 7 STREET, 1 AVENUE between SAINT MARK'S PLACE and EAST 7 STREET, 2 AVENUE between EAST 7 STREET and EAST 6 STREET, 1 AVENUE between EAST 7 STREET and EAST 6 STREET, EAST 6 STREET between 1 AVENUE and AVENUE A, SAINT MARK'S PLACE between 2 AVENUE and 3 AVENUE, EAST 6TH STREET between 2 AVENUE and 3RD AVENUE, EAST 6 STREET between 1 AVENUE and 2 AVENUE, 3RD AVENUE between SAINT MARK'S PLACE and EAST 7TH STREET, 3RD AVENUE between EAST 7TH STREET and EAST 6TH STREET, EAST 7TH STREET between 2 AVENUE and 3RD AVENUE",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+658158,Shooting Permit,06/26/2022 04:00:00 AM,06/26/2022 11:00:00 AM,06/24/2022 03:53:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+658156,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 09:00:00 PM,06/24/2022 03:47:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between SACKETT STREET and DEGRAW STREET, COURT STREET between SACKETT STREET and UNION STREET, COURT STREET between PRESIDENT STREET and CARROLL STREET, PRESIDENT STREET between COURT STREET and CLINTON STREET, PRESIDENT STREET between COURT STREET and SMITH STREET, COURT STREET between DEGRAW STREET and DOUGLASS STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+658155,Shooting Permit,06/30/2022 07:00:00 AM,06/30/2022 09:00:00 PM,06/24/2022 03:47:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 164 STREET between JEROME AVENUE and RIVER AVENUE, RIVER AVENUE between EAST 165 STREET and EAST 164 STREET, RIVER AVENUE between EAST 164 STREET and EAST 161 STREET",Bronx,4,44,Commercial,Commercial,United States of America,10452
+658148,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 08:00:00 PM,06/24/2022 03:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",FAIRVIEW AVENUE between BROADWAY TERRACE and WADSWORTH TERRACE,Manhattan,12,34,Film,Feature,United States of America,10040
+658142,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 07:00:00 PM,06/24/2022 02:55:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON SQUARE NORTH between 5 AVENUE and MACDOUGAL STREET,Manhattan,"1, 2","1, 6",Still Photography,Not Applicable,United States of America,"10003, 10011, 10013, 10014"
+658141,Shooting Permit,06/29/2022 07:00:00 PM,06/30/2022 04:00:00 AM,06/24/2022 02:55:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between 21 STREET and 11 STREET, BORDEN AVENUE between 11 STREET and VERNON BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+658134,Shooting Permit,06/30/2022 06:00:00 AM,06/30/2022 08:00:00 PM,06/24/2022 02:40:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between SCHENECTADY AVENUE and UTICA AVENUE, SCHENECTADY AVENUE between EASTERN PARKWAY and CARROLL STREET, UNION STREET between TROY AVENUE and UTICA AVENUE, BUFFALO AVENUE between EASTERN PARKWAY and EAST NEW YORK AVENUE",Brooklyn,"8, 9","71, 77",Television,Cable-episodic,United States of America,11213
+658133,Shooting Permit,06/28/2022 10:00:00 AM,06/28/2022 09:00:00 PM,06/24/2022 02:39:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",KENT STREET between EAST RIVER and WEST STREET,Brooklyn,1,94,Commercial,Industrial/Corporate,United States of America,11222
+658131,Shooting Permit,06/29/2022 01:00:00 PM,06/30/2022 02:00:00 AM,06/24/2022 02:38:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 109 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,"7, 9","24, 26",Film,Feature,United States of America,10025
+658115,Shooting Permit,07/01/2022 11:00:00 AM,07/02/2022 01:00:00 AM,06/24/2022 02:01:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 43 ROAD, 44 AVENUE between 10 STREET and 9 STREET, 43 ROAD between 10 STREET and 9 STREET, 9 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE, 43 AVENUE between 10 STREET and 9 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+658111,Shooting Permit,06/27/2022 02:00:00 AM,06/27/2022 11:00:00 AM,06/24/2022 01:56:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+658103,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 11:00:00 PM,06/24/2022 01:41:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 38 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10018
+658070,Theater Load in and Load Outs,06/28/2022 12:01:00 AM,07/01/2022 05:00:00 AM,06/24/2022 12:33:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+658068,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 09:00:00 PM,06/24/2022 12:25:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+658062,Shooting Permit,06/28/2022 12:00:00 PM,06/29/2022 02:00:00 AM,06/24/2022 12:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 109 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,24,Film,Feature,United States of America,10025
+658061,Shooting Permit,06/28/2022 09:00:00 AM,06/28/2022 11:59:00 PM,06/24/2022 12:04:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+658058,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 08:00:00 PM,06/24/2022 11:51:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and PARK AVENUE, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+658041,Shooting Permit,06/27/2022 10:00:00 AM,06/28/2022 12:00:00 PM,06/24/2022 11:09:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 18 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 16 STREET and WEST 17 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10003, 10011"
+658025,Shooting Permit,06/30/2022 01:00:00 PM,07/01/2022 04:00:00 AM,06/24/2022 10:08:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 53 STREET, EAST 53 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 52 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+658010,Shooting Permit,07/16/2022 07:00:00 AM,07/16/2022 07:00:00 PM,06/24/2022 09:22:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 41 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10017
+658004,Shooting Permit,06/30/2022 09:00:00 AM,06/30/2022 11:00:00 PM,06/24/2022 09:04:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, 35 STREET between VAN DAM STREET and REVIEW AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+657991,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 11:00:00 PM,06/24/2022 08:11:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, 3 AVENUE between 84 STREET and 86 STREET, VAN BRUNT STREET between COMMERCE STREET and BOWNE STREET, CONOVER STREET between REED STREET and BEARD STREET, CONOVER STREET between REED STREET and DEAD END, CONOVER STREET between BEARD STREET and VAN DYKE STREET",Brooklyn,"10, 6","68, 76",Commercial,Commercial,United States of America,"11209, 11231"
+657989,Shooting Permit,06/29/2022 05:00:00 PM,06/30/2022 02:00:00 AM,06/24/2022 07:46:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 141 STREET between LOCUST AVENUE and WALNUT AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+657982,Shooting Permit,06/29/2022 11:00:00 AM,06/30/2022 02:00:00 AM,06/24/2022 04:36:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 66 STREET and 65 STREET,Brooklyn,10,68,Television,Episodic series,United States of America,11220
+657969,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 08:00:00 PM,06/23/2022 11:01:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 53 STREET and EAST 51 STREET,Manhattan,"5, 6","14, 17, 18",WEB,Not Applicable,United States of America,"10017, 10022, 10036, 10152"
+657968,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 07:00:00 PM,06/23/2022 10:45:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 9 STREET",Queens,2,108,WEB,Not Applicable,United States of America,11101
+657947,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 09:00:00 PM,06/23/2022 08:51:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+657946,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 09:00:00 PM,06/23/2022 08:50:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+657935,Theater Load in and Load Outs,07/24/2022 12:01:00 AM,07/26/2022 06:00:00 AM,06/23/2022 07:14:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+657934,Shooting Permit,06/28/2022 02:00:00 AM,06/28/2022 08:30:00 PM,06/23/2022 06:54:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBUS AVENUE between WEST 92 STREET and WEST 88 STREET, COLUMBUS AVENUE between WEST 88 STREET and WEST 85 STREET, WEST 87 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 86 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 89 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 88 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 51 STREET between 5 AVENUE and 7 AVENUE, WEST 50 STREET between ROCKEFELLER PLAZA and MADISON AVENUE, WEST 49 STREET between ROCKEFELLER CENTER and 5 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 7","18, 20, 24",Television,Episodic series,United States of America,"10017, 10019, 10020, 10022, 10024, 10025, 10036"
+657930,Shooting Permit,06/29/2022 01:00:00 PM,06/30/2022 04:00:00 AM,06/23/2022 05:40:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+657925,Shooting Permit,06/28/2022 10:00:00 AM,06/28/2022 11:59:00 PM,06/23/2022 05:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETT AVE between FOREST AVENUE and DECKER AVENUE,Staten Island,1,121,Television,Cable-episodic,United States of America,10302
+657921,Theater Load in and Load Outs,06/30/2022 12:01:00 AM,07/01/2022 06:00:00 AM,06/23/2022 04:57:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+657892,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 09:00:00 PM,06/23/2022 03:33:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between STATE STREET and WHITEHALL STREET, STATE STREET between PEARL STREET and BRIDGE STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET",Manhattan,1,1,Television,Not Applicable,United States of America,10004
+657887,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 07:00:00 PM,06/23/2022 03:12:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 75 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"00083, 10021, 10023"
+657877,Shooting Permit,06/29/2022 11:00:00 AM,06/30/2022 02:00:00 AM,06/23/2022 02:56:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","JACKSON STREET between MANHATTAN AVENUE and GRAHAM AVENUE, WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between WITHERS STREET and FROST STREET, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between SKILLMAN AVENUE and CONSELYEA STREET, GRAHAM AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE, CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET, CONSELYEA STREET between GRAHAM AVENUE and HUMBOLDT STREET, LEONARD STREET between CONSELYEA STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, MANHATTAN AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+657875,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 09:00:00 PM,06/23/2022 02:51:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 16 STREET and WEST 18 STREET, WEST 18 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 18 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10003, 10011"
+657867,Shooting Permit,06/25/2022 06:00:00 AM,06/26/2022 01:00:00 AM,06/23/2022 02:46:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 65 STREET and EAST 66 STREET, EAST 66 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 67 STREET and EAST 68 STREET",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,"10021, 10065"
+657866,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 11:00:00 PM,06/23/2022 02:40:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+657864,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 11:00:00 PM,06/23/2022 02:36:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+657857,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 09:00:00 PM,06/23/2022 02:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+657855,Shooting Permit,06/28/2022 09:00:00 AM,06/28/2022 03:00:00 PM,06/23/2022 02:19:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10036
+657854,Rigging Permit,06/29/2022 06:00:00 AM,06/29/2022 08:00:00 PM,06/23/2022 02:17:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 7 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Television,Episodic series,United States of America,10003
+657817,Shooting Permit,06/27/2022 08:00:00 AM,06/27/2022 06:00:00 PM,06/23/2022 12:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEBEVOISE AVENUE between JACKSON STREET and MASPETH AVENUE, MASPETH AVENUE between KINGSLAND AVENUE and OLIVE STREET, MASPETH AVENUE between OLIVE STREET and DEBEVOISE AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,11211
+657806,Shooting Permit,07/14/2022 06:00:00 AM,07/14/2022 09:00:00 PM,06/23/2022 12:19:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, BROADWAY between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 177 STREET and WEST 176 STREET",Manhattan,12,33,Television,Special/Awards Show,United States of America,10033
+657801,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 11:00:00 PM,06/23/2022 12:12:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+657798,Shooting Permit,06/25/2022 06:00:00 AM,06/25/2022 11:00:00 PM,06/23/2022 12:09:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",FENIMORE STREET between NOSTRAND AVENUE and ROGERS AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11225
+657797,Shooting Permit,07/04/2022 06:00:00 AM,07/04/2022 11:59:00 PM,06/23/2022 12:09:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 56 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 56 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 55 AVENUE and 56 AVENUE",Queens,2,108,Television,News,United States of America,11101
+657796,Shooting Permit,07/03/2022 06:00:00 AM,07/03/2022 11:59:00 PM,06/23/2022 12:08:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 56 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 56 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 56 AVENUE and 57 AVENUE",Queens,2,108,Television,News,United States of America,11101
+657794,Shooting Permit,07/02/2022 06:00:00 AM,07/02/2022 11:59:00 PM,06/23/2022 12:06:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 56 AVENUE, 2 STREET between 56 AVENUE and 57 AVENUE, 56 AVENUE between 2 STREET and CENTER BOULEVARD, 55 AVENUE between CENTER BOULEVARD and 2 STREET",Queens,2,108,Television,News,United States of America,11101
+657792,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 08:00:00 PM,06/23/2022 11:59:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 133 STREET between FREDRICK DOUGLAS BOULEVARD and ST NICHLAS AVENUE, WEST 132 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, FREDRICK DOUGLAS BOULEVARD between WEST 133 STREET and WEST 131 STREET",Manhattan,10,32,Commercial,Commercial,United States of America,"10027, 10030"
+657788,Shooting Permit,07/01/2022 06:00:00 AM,07/01/2022 09:00:00 PM,06/23/2022 11:53:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between CHEMICAL LANE and INDUSTRIAL LOOP EAST,Staten Island,3,123,Film,Feature,United States of America,10309
+657752,Shooting Permit,06/26/2022 06:00:00 AM,06/26/2022 07:00:00 PM,06/23/2022 10:29:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between EAST 4 STREET and EAST 2 STREET,Manhattan,"2, 3","5, 9",Still Photography,Not Applicable,United States of America,"10003, 10012, 10013"
+657733,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 08:00:00 PM,06/23/2022 09:11:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and PARK AVENUE, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+657723,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 09:00:00 PM,06/23/2022 07:54:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 21 STREET and 11 STREET, 21 STREET between 44 DRIVE and 44 ROAD, 21 STREET between 44 ROAD and 44 AVENUE",Queens,"2, 6","108, 112",Still Photography,Not Applicable,United States of America,"11101, 11375"
+657706,Shooting Permit,06/26/2022 03:30:00 AM,06/26/2022 08:00:00 PM,06/23/2022 02:24:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,9,"20, 26",Still Photography,Not Applicable,United States of America,"10024, 10027, 10115"
+657705,Shooting Permit,06/29/2022 06:00:00 AM,06/29/2022 07:00:00 PM,06/23/2022 01:18:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","ROGERS AVENUE between CLARKSON AVENUE and LENOX ROAD, LENOX ROAD between BEDFORD AVENUE and ROGERS AVENUE",Brooklyn,17,67,Still Photography,Not Applicable,United States of America,11226
+657676,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 09:00:00 PM,06/22/2022 06:51:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",FENIMORE STREET between ROGERS AVENUE and NOSTRAND AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11225
+657664,Shooting Permit,06/27/2022 09:00:00 AM,06/27/2022 11:00:00 PM,06/22/2022 06:24:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 109 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,24,Film,Feature,United States of America,10025
+657643,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 09:00:00 PM,06/22/2022 05:19:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 82 STREET and EAST 84 STREET, EAST 84 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,"10022, 10028"
+657628,Shooting Permit,06/27/2022 10:00:00 AM,06/28/2022 01:00:00 AM,06/22/2022 04:51:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between WHITE STREET and BOGART STREET, BOGART STREET between MOORE STREET and SEIGEL STREET, COOK STREET between WHITE STREET and BUSHWICK AVENUE, VARET STREET between BOGART STREET and WHITE STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+657606,Shooting Permit,06/28/2022 01:00:00 PM,06/29/2022 04:00:00 AM,06/22/2022 03:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 6 AVENUE and UNIVERSITY PLACE, EAST 13 STREET between 5 AVENUE and BROADWAY, UNIVERSITY PLACE between EAST 12 STREET and EAST 13 STREET, EAST 9 STREET between UNIVERSITY PLACE and BROADWAY, UNIVERSITY PLACE between EAST 8 STREET and EAST 9 STREET, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, UNIVERSITY PLACE between EAST 9 STREET and EAST 10 STREET",Manhattan,"2, 5","13, 6",Television,Episodic series,United States of America,"10003, 10011"
+657589,Shooting Permit,06/27/2022 06:30:00 AM,06/27/2022 09:00:00 PM,06/22/2022 03:26:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONEY ISLAND AVENUE between DORCHESTER ROAD and AVENUE C, CORTELYOU ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, CONEY ISLAND AVENUE between AVENUE C and BEVERLEY ROAD, EAST 9 STREET between AVENUE C and BEVERLEY ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,"12, 14","66, 70",Television,Cable-episodic,United States of America,"11218, 11226"
+657556,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 08:00:00 PM,06/22/2022 02:13:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+657555,Theater Load in and Load Outs,06/30/2022 12:01:00 AM,07/01/2022 06:00:00 AM,06/22/2022 02:10:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,28,Theater,Theater,United States of America,10027
+657553,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 11:00:00 PM,06/22/2022 02:08:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 91 STREET between HOLLAND AVENUE and ROCKAWAY BEACH BOULEVARD, SHAD CREEK ROAD between WEST 20 ROAD and WEST 22 ROAD",Queens,14,100,Film,Feature,United States of America,11693
+657523,Shooting Permit,06/27/2022 08:00:00 AM,06/27/2022 10:00:00 PM,06/22/2022 01:15:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between VANDAM STREET and SPRING STREET, VANDAM STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between SPRING STREET and CANAL STREET, RENWICK STREET between SPRING STREET and CANAL STREET, WASHINGTON STREET between SPRING STREET and CANAL STREET, SPRING STREET between WASHINGTON STREET and WEST STREET, CANAL STREET between WEST STREET and WASHINGTON STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and NORTH MOORE STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, WEST STREET between LAIGHT STREET and HUBERT STREET, DEBROSSES STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,"10013, 10014"
+657464,Shooting Permit,06/25/2022 02:00:00 AM,06/25/2022 01:00:00 PM,06/22/2022 11:36:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+657455,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 11:00:00 PM,06/22/2022 11:08:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between SUFFOLK STREET and NORFOLK STREET, NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, ESSEX STREET between EAST HOUSTON STREET and STANTON STREET, ESSEX STREET between STANTON STREET and RIVINGTON STREET, ESSEX STREET between RIVINGTON STREET and DELANCEY STREET, DELANCEY STREET between LUDLOW STREET and ESSEX STREET, RIVINGTON STREET between ESSEX STREET and NORFOLK STREET, RIVINGTON STREET between NORFOLK STREET and SUFFOLK STREET, RIVINGTON STREET between SUFFOLK STREET and CLINTON STREET, STANTON STREET between ESSEX STREET and NORFOLK STREET, SUFFOLK STREET between EAST HOUSTON STREET and STANTON STREET, SUFFOLK STREET between STANTON STREET and RIVINGTON STREET, STANTON STREET between SUFFOLK STREET and CLINTON STREET, STANTON STREET between CLINTON STREET and ATTORNEY STREET, STANTON STREET between ATTORNEY STREET and RIDGE STREET, CLINTON STREET between EAST HOUSTON STREET and STANTON STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+657443,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 10:00:00 PM,06/22/2022 10:36:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between HESTER STREET and RIVINGTON STREET, ELIZABETH STREET between KENMARE STREET and GRAND STREET, DELANCEY STREET between BOWERY and ALLEN STREET, BROOME STREET between ELIZABETH STREET and BOWERY, GRAND STREET between ELIZABETH STREET and BOWERY, BROADWAY between BROOME STREET and GRAND STREET, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,"2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10012, 10013"
+657429,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 08:00:00 PM,06/22/2022 09:55:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 45 AVENUE and 44 DRIVE, 21 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Commercial,PSA,United States of America,11101
+657406,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 09:00:00 PM,06/22/2022 08:15:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+657405,Shooting Permit,06/24/2022 03:00:00 PM,06/25/2022 05:00:00 AM,06/22/2022 08:09:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+657404,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 09:00:00 PM,06/22/2022 07:56:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+657400,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 09:00:00 PM,06/22/2022 07:45:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+657397,Theater Load in and Load Outs,06/27/2022 12:01:00 AM,06/28/2022 06:00:00 AM,06/22/2022 02:32:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+657396,Theater Load in and Load Outs,06/26/2022 12:01:00 AM,06/26/2022 11:59:00 PM,06/22/2022 01:09:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+657395,Shooting Permit,06/24/2022 11:00:00 AM,06/24/2022 11:00:00 PM,06/22/2022 01:08:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD N.,Brooklyn,15,61,Television,Episodic series,United States of America,11223
+657394,Theater Load in and Load Outs,06/25/2022 12:01:00 AM,06/25/2022 11:59:00 PM,06/22/2022 12:59:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+657393,Theater Load in and Load Outs,06/24/2022 12:01:00 AM,06/24/2022 11:59:00 PM,06/22/2022 12:51:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+657392,Theater Load in and Load Outs,06/29/2022 12:01:00 AM,06/30/2022 06:00:00 AM,06/22/2022 12:41:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657376,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 08:30:00 PM,06/21/2022 09:08:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, JACKSON STREET between MANHATTAN AVENUE and GRAHAM AVENUE, JACKSON STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between WITHERS STREET and JACKSON STREET, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between SKILLMAN AVENUE and CONSELYEA STREET, GRAHAM AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, GRAHAM AVENUE between WITHERS STREET and FROST STREET, CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+657373,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 07:00:00 PM,06/21/2022 08:42:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, JACKSON STREET between MANHATTAN AVENUE and GRAHAM AVENUE, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between SKILLMAN AVENUE and CONSELYEA STREET, GRAHAM AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, GRAHAM AVENUE between WITHERS STREET and FROST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+657365,Theater Load in and Load Outs,06/28/2022 12:01:00 AM,06/28/2022 11:59:00 PM,06/21/2022 07:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657362,Theater Load in and Load Outs,06/26/2022 12:01:00 AM,06/27/2022 06:00:00 AM,06/21/2022 07:36:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657360,Theater Load in and Load Outs,06/25/2022 12:01:00 AM,06/25/2022 11:59:00 PM,06/21/2022 07:25:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657355,Theater Load in and Load Outs,06/24/2022 12:01:00 AM,06/24/2022 11:59:00 PM,06/21/2022 06:58:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657350,Shooting Permit,06/26/2022 11:00:00 AM,06/26/2022 08:00:00 PM,06/21/2022 06:47:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+657348,Shooting Permit,06/29/2022 06:00:00 AM,06/29/2022 11:00:00 PM,06/21/2022 06:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+657347,Shooting Permit,06/28/2022 06:00:00 AM,06/28/2022 11:00:00 PM,06/21/2022 06:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 AVENUE, 9 STREET between 44 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+657346,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 11:00:00 PM,06/21/2022 06:29:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 AVENUE, 9 STREET between 44 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+657343,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 09:00:00 PM,06/21/2022 06:02:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+657331,Shooting Permit,07/07/2022 12:00:00 PM,07/07/2022 11:00:00 PM,06/21/2022 04:44:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+657309,Theater Load in and Load Outs,06/23/2022 12:01:00 AM,06/23/2022 01:00:00 PM,06/21/2022 04:02:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+657299,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 07:00:00 PM,06/21/2022 03:48:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between DESBROSSES STREET and VESTRY STREET, GREENWICH STREET between JAY STREET and DUANE STREET",Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+657294,Shooting Permit,06/24/2022 11:00:00 AM,06/25/2022 03:00:00 AM,06/21/2022 03:42:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 55 STREET, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, LEXINGTON AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 69 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10017, 10019, 10021, 10022, 10152, 10171"
+657288,Shooting Permit,06/24/2022 10:00:00 AM,06/25/2022 12:00:00 AM,06/21/2022 03:33:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERONA STREET between VAN BRUNT STREET and RICHARDS STREET, VISITATION PLACE between VAN BRUNT STREET and RICHARDS STREET, FOURTH PLACE between HENRY STREET and CLINTON STREET, HENRY STREET between FOURTH PLACE and SECOND PLACE, COURT STREET between FIRST PLACE and SECOND PLACE, COURT STREET between SECOND PLACE and THIRD PLACE, COURT STREET between THIRD PLACE and FOURTH PLACE, COURT STREET between FOURTH PLACE and LUQUER STREET, CARROLL STREET between HICKS STREET and HENRY STREET, BAY STREET between COURT STREET and HENRY STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+657287,Shooting Permit,06/25/2022 04:00:00 PM,06/26/2022 11:00:00 PM,06/21/2022 03:28:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 11 STREET between 5 AVENUE and 6 AVENUE,Manhattan,2,6,Television,News,United States of America,10011
+657284,Shooting Permit,06/23/2022 07:00:00 AM,06/23/2022 08:00:00 PM,06/21/2022 03:21:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 3 STREET and WEST 8 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, 7 AVENUE SOUTH between PERRY STREET and WEST 11 STREET, BLEEKER STREET between CHARLES STREET and WEST 11 STREET, PERRY STREET between BLEEKER STREET and WAVERLY PLACE, CHARLES STREET between BLEEKER STREET and 7 AVENUE SOUTH, GREENWICH AVENUE between BANK STREET and WEST 11 STREET, WEST 11 STREET between WAVERLY PLACE and GREENWICH AVENUE, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, 7 AVENUE SOUTH between WEST 10 STREET and CHRISTOPHER STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+657277,Shooting Permit,06/24/2022 07:00:00 AM,06/24/2022 09:00:00 PM,06/21/2022 02:52:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+657276,Shooting Permit,06/23/2022 09:00:00 AM,06/24/2022 12:00:00 AM,06/21/2022 02:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+657272,Shooting Permit,06/24/2022 11:00:00 AM,06/25/2022 04:00:00 AM,06/21/2022 02:33:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+657271,Shooting Permit,06/23/2022 11:00:00 AM,06/24/2022 03:00:00 AM,06/21/2022 02:33:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+657255,Shooting Permit,06/24/2022 02:00:00 PM,06/25/2022 02:00:00 AM,06/21/2022 01:47:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 81 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 79 STREET and WEST 85 STREET, WEST 79 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 80 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 72 STREET between AMSTERDAM AVENUE and CENTRAL PARK WEST, WEST 71 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,"10023, 10024"
+657247,Shooting Permit,06/29/2022 08:00:00 AM,06/30/2022 12:00:00 AM,06/21/2022 01:20:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 61 STREET and WEST 60 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, 9 AVENUE between WEST 58 STREET and WEST 59 STREET",Manhattan,"4, 5, 64, 7","18, 20, 22",Film,Feature,United States of America,"10019, 10023"
+657245,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 11:00:00 PM,06/21/2022 01:17:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 61 STREET and WEST 60 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, 9 AVENUE between WEST 58 STREET and WEST 59 STREET",Manhattan,"4, 5, 64, 7","18, 20, 22",Film,Feature,United States of America,"10019, 10023"
+657243,Shooting Permit,06/22/2022 11:00:00 AM,06/22/2022 11:59:00 PM,06/21/2022 01:16:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+657231,Shooting Permit,06/26/2022 06:00:00 AM,06/26/2022 11:59:00 PM,06/21/2022 12:45:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",DECATUR STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE,Brooklyn,3,81,Film,Feature,United States of America,11233
+657224,Shooting Permit,06/24/2022 09:00:00 AM,06/25/2022 12:00:00 AM,06/21/2022 12:35:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","145 PLACE between 13 AVENUE and 14 AVENUE, 14 AVENUE between PARSONS BOULEVARD and 146 PLACE, 13 AVENUE between 145 PLACE and 146 STREET, 144 PLACE between 14 AVENUE and 145 PLACE, 13 ROAD between PARSONS BOULEVARD and 145 PLACE",Queens,7,109,Television,Cable-episodic,United States of America,"11357, 11359"
+657206,Shooting Permit,06/27/2022 12:00:00 PM,06/28/2022 04:00:00 AM,06/21/2022 12:08:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between BETHUNE STREET and HORATIO STREET, WEST 12 STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WEST 16 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+657198,Shooting Permit,06/25/2022 06:00:00 AM,06/25/2022 10:00:00 PM,06/21/2022 11:40:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between WITHERS STREET and JACKSON STREET, MANHATTAN AVENUE between JAVA STREET and KENT STREET, KENT STREET between FRANKLIN STREET and MANHATTAN AVENUE",Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222"
+657184,Shooting Permit,06/24/2022 05:00:00 PM,06/25/2022 06:00:00 AM,06/21/2022 10:53:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE STREET between BUSHWICK AVENUE and WATERBURY STREET, MESEROLE STREET between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK PLACE between MESEROLE STREET and MONTROSE AVENUE, BUSHWICK AVENUE between STAGG STREET and SCHOLES STREET, BUSHWICK AVENUE between SCHOLES STREET and MESEROLE STREET, BUSHWICK AVENUE between MESEROLE STREET and MONTROSE AVENUE, MONTROSE AVENUE between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK AVENUE between MONTROSE AVENUE and JOHNSON AVENUE, BUSHWICK AVENUE between JOHNSON AVENUE and BOERUM STREET, BUSHWICK AVENUE between BOERUM STREET and MCKIBBIN STREET, MCKIBBIN STREET between BUSHWICK AVENUE and MCKIBBIN COURT",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+657183,Shooting Permit,06/24/2022 10:00:00 AM,06/25/2022 02:00:00 AM,06/21/2022 10:46:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+657179,Shooting Permit,06/23/2022 07:00:00 AM,06/23/2022 03:00:00 PM,06/21/2022 10:28:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIVISION AVENUE between KENT AVENUE and DEAD END, DIVISION AVENUE between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between DIVISION AVENUE and CLYMER STREET, WYTHE AVENUE between DIVISION AVENUE and SOUTH 11 STREET",Brooklyn,"1, 2","88, 90",Television,Episodic series,United States of America,"11211, 11249"
+657165,Shooting Permit,06/24/2022 09:00:00 AM,06/25/2022 01:00:00 AM,06/21/2022 09:40:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between GRAND CONCOURSE and VALENTINE AVENUE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+657153,Shooting Permit,06/23/2022 08:00:00 AM,06/24/2022 12:00:00 AM,06/21/2022 09:21:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between VALENTINE AVENUE and GRAND CONCOURSE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+657151,Shooting Permit,06/23/2022 12:00:00 PM,06/23/2022 11:59:00 PM,06/21/2022 09:11:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 69 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 70 STREET and WEST 71 STREET, COLUMBUS AVENUE between WEST 69 STREET and WEST 70 STREET, WEST 70 STREET between BROADWAY and CENTRAL PARK WEST, MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 53 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 51 STREET and EAST 54 STREET, WEST 51 STREET between 5 AVENUE and BROADWAY, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, EAST 52 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 7","18, 20",Television,Episodic series,United States of America,"10019, 10020, 10022, 10023, 10103"
+657150,Shooting Permit,06/29/2022 07:00:00 AM,06/29/2022 10:00:00 PM,06/21/2022 09:10:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+657149,Shooting Permit,06/28/2022 07:00:00 AM,06/28/2022 10:00:00 PM,06/21/2022 09:07:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+657144,Shooting Permit,06/22/2022 07:00:00 AM,06/22/2022 10:00:00 PM,06/21/2022 09:00:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+657137,Shooting Permit,06/22/2022 11:00:00 AM,06/23/2022 02:00:00 AM,06/21/2022 08:26:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between MOTT STREET and LAFAYETTE STREET, EAST 6 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 4 STREET and EAST 7 STREET, SPRING STREET between MULBERRY STREET and MOTT STREET, SPRING STREET between LAFAYETTE STREET and MULBERRY STREET, MULBERRY STREET between SPRING STREET and PRINCE STREET, KENMARE STREET between BOWERY and LAFAYETTE STREET, BOWERY between EAST HOUSTON STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012, 10013"
+657131,Shooting Permit,06/23/2022 10:00:00 AM,06/24/2022 01:00:00 AM,06/21/2022 05:34:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","86 STREET between 20 AVENUE and 19 AVENUE, AVENUE P between EAST 4 STREET and EAST 5 STREET",Brooklyn,"11, 12, 15","61, 62, 66",Television,Episodic series,United States of America,"11214, 11223, 11230"
+657128,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 09:00:00 PM,06/21/2022 01:21:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between WEST 10 STREET and CHARLES STREET, WEST STREET between SPRING STREET and WEST HOUSTON STREET",Manhattan,2,"1, 6",Still Photography,Not Applicable,United States of America,"10013, 10014"
+657127,Shooting Permit,06/25/2022 06:00:00 PM,06/26/2022 06:00:00 AM,06/21/2022 12:42:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,2,6,Commercial,Industrial/Corporate,United States of America,10014
+657125,Shooting Permit,06/26/2022 06:00:00 PM,06/27/2022 06:00:00 AM,06/21/2022 12:40:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,2,6,Commercial,Industrial/Corporate,United States of America,10014
+657124,Shooting Permit,06/24/2022 06:00:00 PM,06/25/2022 06:00:00 AM,06/21/2022 12:38:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GREENWICH STREET between HORATIO STREET and GANSEVOORT STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET, GANSEVOORT STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,2,6,Commercial,Industrial/Corporate,United States of America,10014
+657089,Shooting Permit,06/29/2022 06:00:00 AM,06/29/2022 11:00:00 PM,06/20/2022 07:01:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 7 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 5 STREET, EAST 6 STREET between AVENUE A and 1 AVENUE, EAST 6 STREET between 1 AVENUE and 2 AVENUE, EAST 6TH STREET between 2 AVENUE and 3RD AVENUE, 3RD AVENUE between SAINT MARKS PLACE and EAST 7TH STREET, EAST 7TH STREET between 3RD AVENUE and 2ND AVENUE, 3RD AVENUE between EAST 7TH STREET and EAST 6TH STREET",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+657082,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 06:00:00 PM,06/20/2022 06:00:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",Jamaica ave between Linwood st and Cleveland st,Queens,5,75,Still Photography,Not Applicable,United States of America,11208
+657052,Shooting Permit,06/24/2022 07:00:00 AM,06/24/2022 10:00:00 PM,06/20/2022 03:53:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+657044,Theater Load in and Load Outs,06/21/2022 12:01:00 AM,06/24/2022 11:00:00 PM,06/20/2022 03:34:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE, FLATBUSH AVENUE between DEAN STREET and ATLANTIC AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+657022,Shooting Permit,06/24/2022 08:00:00 AM,06/24/2022 11:59:00 PM,06/20/2022 02:33:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 39 STREET and 42 STREET, 2 AVENUE between 32 STREET and 35 STREET, 2 AVENUE between 35 STREET and 36 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+657020,Shooting Permit,06/23/2022 08:00:00 AM,06/24/2022 02:00:00 AM,06/20/2022 02:16:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOORE STREET between BOGART STREET and WHITE STREET, BOGART STREET between SEIGEL STREET and MOORE STREET, COOK STREET between WHITE STREET and BUSHWICK AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+657018,Shooting Permit,06/23/2022 07:00:00 AM,06/23/2022 09:00:00 PM,06/20/2022 02:01:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BROOME STREET and SPRING STREET, BROOME STREET between BROADWAY and CROSBY STREET",Brooklyn,"2, 7","1, 5, 72",Still Photography,Not Applicable,United States of America,"10012, 10013, 11232"
+657004,Shooting Permit,06/24/2022 12:00:00 AM,06/24/2022 03:00:00 PM,06/20/2022 12:28:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+657001,Shooting Permit,06/23/2022 07:00:00 AM,06/23/2022 11:59:00 PM,06/20/2022 12:23:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+656998,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 09:00:00 PM,06/20/2022 12:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET, EAST 58 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 64","18, 22",Film,Feature,United States of America,"10019, 10022"
+656981,Theater Load in and Load Outs,06/27/2022 12:01:00 AM,06/29/2022 06:00:00 AM,06/20/2022 10:58:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+656955,Shooting Permit,06/22/2022 07:00:00 AM,06/22/2022 11:00:00 PM,06/20/2022 06:58:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, JOHNSON AVENUE between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11237
+656951,Shooting Permit,06/23/2022 12:00:00 PM,06/24/2022 01:00:00 AM,06/19/2022 11:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+656952,Shooting Permit,06/24/2022 06:00:00 AM,06/25/2022 01:00:00 AM,06/19/2022 11:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+656790,Theater Load in and Load Outs,06/24/2022 12:01:00 AM,06/27/2022 11:59:00 PM,06/17/2022 06:21:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+656773,Shooting Permit,06/21/2022 11:00:00 AM,06/22/2022 03:00:00 AM,06/17/2022 05:04:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between CHURCH AVENUE and ALBERMARLE ROAD, ARGYLE ROAD between CHURCH AVENUE and ALBERMARLE ROAD, RUGBY ROAD between CHURCH AVENUE and BEVERLEY ROAD, BEVERLEY ROAD between ARGYLE ROAD and MARLBOROUGH ROAD, ALBERMARLE ROAD between ARGYLE ROAD and RUGBY ROAD, PARKSIDE AVENUE between PARK CIRCLE and PARADE PLACE, 14 AVENUE between 36 STREET and 37 STREET, CHURCH AVENUE between WESTMINSTR ROAD and ARGYLE ROAD",Brooklyn,"12, 14, 55, 9","66, 70, 71, 78",Television,Episodic series,United States of America,"11218, 11226"
+656766,Shooting Permit,06/27/2022 07:00:00 AM,06/27/2022 07:00:00 PM,06/17/2022 04:41:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH 5 STREET and SOUTH 4 STREET",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11222, 11249"
+656765,Shooting Permit,06/23/2022 07:00:00 AM,06/23/2022 07:00:00 PM,06/17/2022 04:41:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH 5 STREET and SOUTH 4 STREET",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11222, 11249"
+656760,Shooting Permit,06/22/2022 12:00:00 AM,06/22/2022 08:00:00 PM,06/17/2022 04:26:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHERRY STREET between RUTGERS SLIP and PIKE STREET,Manhattan,"0, 3, 8","1, 114, 7",Still Photography,Not Applicable,United States of America,"10002, 10044"
+656752,Shooting Permit,06/22/2022 09:00:00 AM,06/23/2022 01:00:00 AM,06/17/2022 04:07:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between GRAND CONCOURSE and VALENTINE AVENUE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+656749,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 10:00:00 PM,06/17/2022 03:59:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CHURCH AVENUE and ALBERMARLE ROAD, RUGBY ROAD between CHURCH AVENUE and BEVERLEY ROAD, BEVERLEY ROAD between ARGYLE ROAD and MARLBOROUGH ROAD, ALBERMARLE ROAD between ARGYLE ROAD and RUGBY ROAD, PARKSIDE AVENUE between PARK CIRCLE and PARADE PLACE, WESTMINSTER ROAD between CHURCH AVENUE and CATON AVENUE, LEWIS PLACE between CONEY ISLAND AVENUE and STRATFORD ROAD, CONEY ISLAND AVENUE between BEVERLEY ROAD and AVENUE C, CONEY ISLAND AVENUE between AVENUE C and CORTELYOU ROAD, EAST 9 STREET between BEVERLEY ROAD and AVENUE C, 14 AVENUE between 36 STREET and 37 STREET",Brooklyn,"12, 14, 55, 9","66, 70, 71, 78",Television,Episodic series,United States of America,"11218, 11226"
+656748,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 09:00:00 PM,06/17/2022 03:59:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 3 STREET and WEST 8 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, 7 AVENUE SOUTH between CLARKSON STREET and BARROW STREET, BEDFORD STREET between BARROW STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and HUDSON STREET, COMMERCE STREET between BEDFORD STREET and BARROW STREET, BARROW STREET between HUDSON STREET and COMMERCE STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+656737,Shooting Permit,06/23/2022 06:00:00 PM,06/24/2022 06:00:00 AM,06/17/2022 03:26:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 133 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 133 STREET between WALNUT AVENUE and WILLOW AVENUE, WALNUT AVENUE between EAST 133 STREET and EAST 134 STREET, EAST 134 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 134 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+656727,Shooting Permit,06/22/2022 08:30:00 AM,06/22/2022 10:00:00 PM,06/17/2022 02:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between PIERREPONT STREET and CLARK STREET, HICKS STREET between CLARK STREET and PINEAPPLE STREET, HENRY STREET between CLARK STREET and PIERREPONT STREET, CLARK STREET between HENRY STREET and MONROE PLACE, MONROE PLACE between CLARK STREET and PIERREPONT STREET, CLARK STREET between MONROE PLACE and CADMAN PLAZA WEST, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and BROOKLYN BRIDGE BOULEVARD, HENRY STREET between CLARK STREET and ORANGE STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+656725,Shooting Permit,06/22/2022 07:00:00 AM,06/22/2022 07:00:00 PM,06/17/2022 02:44:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WATER STREET between WALL STREET and HANOVER SQUARE,Manhattan,"1, 2",1,Commercial,Commercial,United States of America,"10004, 10005, 10013"
+656719,Shooting Permit,06/27/2022 06:00:00 AM,06/27/2022 11:00:00 PM,06/17/2022 02:27:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 51 STREET and WEST 50 STREET, WEST 51 STREET between 8 AVENUE and 9 AVENUE, WEST 51 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 53 STREET and WEST 52 STREET, 9 AVENUE between WEST 52 STREET and WEST 51 STREET, 9 AVENUE between WEST 51 STREET and WEST 50 STREET",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+656716,Shooting Permit,06/20/2022 08:00:00 AM,06/20/2022 08:00:00 PM,06/17/2022 02:17:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 117 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 125 STREET, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 118 STREET and WEST 120 STREET",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+656711,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 10:00:00 AM,06/17/2022 02:03:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",1 AVENUE between EAST 35 STREET and EAST 36 STREET,Manhattan,6,17,Commercial,Industrial/Corporate,United States of America,10016
+656702,Shooting Permit,06/21/2022 07:00:00 AM,06/21/2022 08:00:00 PM,06/17/2022 01:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 10 STREET between AVENUE A and AVENUE B,Manhattan,"1, 3","1, 9",Still Photography,Not Applicable,United States of America,"10007, 10009"
+656699,Shooting Permit,06/22/2022 03:00:00 AM,06/22/2022 09:00:00 PM,06/17/2022 01:40:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 44 AVENUE and 43 ROAD, 9 STREET between 43 ROAD and 43 AVENUE, 10 STREET between 43 ROAD and 43 AVENUE, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,"11, 2, 5","104, 108, 111",Television,Cable-episodic,United States of America,"11101, 11361, 11385"
+656697,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 11:00:00 PM,06/17/2022 01:34:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 51 STREET and WEST 50 STREET, WEST 51 STREET between 8 AVENUE and 9 AVENUE, WEST 51 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 53 STREET and WEST 52 STREET, 9 AVENUE between WEST 52 STREET and WEST 51 STREET, 9 AVENUE between WEST 51 STREET and WEST 50 STREET",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+656695,Theater Load in and Load Outs,06/25/2022 12:01:00 AM,06/26/2022 06:00:00 AM,06/17/2022 01:34:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+656686,Theater Load in and Load Outs,06/22/2022 12:01:00 AM,06/24/2022 06:00:00 AM,06/17/2022 01:06:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+656672,Theater Load in and Load Outs,06/21/2022 12:01:00 AM,06/21/2022 11:59:00 PM,06/17/2022 12:54:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+656667,Shooting Permit,06/24/2022 10:00:00 AM,06/25/2022 01:30:00 AM,06/17/2022 12:51:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE L between EAST 94 STREET and ROCKAWAY PARKWAY, EAST 95 STREET between HOLMES LANE and AVENUE L, EAST 95 STREET between AVENUE K and HOLMES LANE",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+656663,Shooting Permit,06/21/2022 01:00:00 PM,06/22/2022 03:00:00 AM,06/17/2022 12:47:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 66 STREET between 2 AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 63 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 64 STREET between LEXINGTON AVENUE and PARK AVENUE, 3 AVENUE between EAST 64 STREET and EAST 67 STREET, EAST 65 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 68 STREET and EAST 69 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+656622,Shooting Permit,06/22/2022 09:00:00 AM,06/23/2022 01:00:00 AM,06/17/2022 11:31:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOERUM PLACE between STATE STREET and SCHERMERHORN STREET, SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, COURT STREET between SCHERMERHORN STREET and LIVINGSTON STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+656617,Theater Load in and Load Outs,06/23/2022 12:01:00 AM,06/26/2022 06:00:00 AM,06/17/2022 11:14:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+656616,Shooting Permit,06/23/2022 09:00:00 AM,06/23/2022 11:00:00 PM,06/17/2022 11:13:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between CHURCH STREET and BROADWAY, CHURCH STREET between WHITE STREET and WORTH STREET, WORTH STREET between WEST BROADWAY and CHURCH STREET, WORTH STREET between CHURCH STREET and BROADWAY, BROADWAY between WHITE STREET and FRANKLIN STREET, BROADWAY between FRANKLIN STREET and LEONARD STREET, FRANKLIN STREET between CHURCH STREET and BROADWAY, WALKER STREET between BROADWAY and CORTLANDT ALLEY, WALKER STREET between LAFAYETTE STREET and CORTLANDT ALLEY",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10013
+656613,Shooting Permit,06/22/2022 07:00:00 AM,06/22/2022 08:00:00 PM,06/17/2022 11:02:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 52 STREET between 10 AVENUE and 11 AVENUE, WEST 51 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,18,Still Photography,Not Applicable,United States of America,10019
+656575,Shooting Permit,06/22/2022 01:00:00 PM,06/23/2022 03:00:00 AM,06/17/2022 09:52:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 63 STREET and WEST 62 STREET, CENTRAL PARK WEST between WEST 63 STREET and WEST 64 STREET, CENTRAL PARK WEST between WEST 64 STREET and WEST 65 STREET, CENTRAL PARK WEST between WEST 65 STREET and WEST 66 STREET",Manhattan,"64, 7","20, 22",Commercial,Promo,United States of America,10023
+656573,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 10:00:00 PM,06/17/2022 09:36:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and COLUMBIA STREET, VAN BRUNT STREET between HAMILTON AVENUE and BOWNE STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+656572,Shooting Permit,06/21/2022 06:00:00 AM,06/21/2022 10:00:00 PM,06/17/2022 09:32:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and COLUMBIA STREET, VAN BRUNT STREET between HAMILTON AVENUE and BOWNE STREET, CENTER BOULEVARD between 54 AVENUE and 56 AVENUE",Brooklyn,"2, 6","108, 76",Commercial,Commercial,United States of America,"11101, 11231"
+656564,Shooting Permit,06/20/2022 12:00:00 PM,06/21/2022 02:00:00 AM,06/17/2022 09:13:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 21 STREET between PARK AVENUE SOUTH and 3 AVENUE, 3 AVENUE between EAST 14 STREET and EAST 15 STREET, 3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 18 STREET and EAST 19 STREET, 3 AVENUE between EAST 17 STREET and EAST 18 STREET, 2 AVENUE between EAST 15 STREET and EAST 17 STREET, EAST 15 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, GRAMERCY PARK WEST between EAST 20 STREET and EAST 21 STREET, IRVING PLACE between EAST 19 STREET and EAST 20 STREET, IRVING PLACE between EAST 18 STREET and EAST 19 STREET, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 20 STREET between IRVING PLACE and GRAMERCY PARK EAST",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+656557,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 11:59:00 PM,06/17/2022 08:47:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between LAIGHT STREET and VESTRY STREET, LAIGHT STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Theater,Theater,United States of America,10013
+656558,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 11:59:00 PM,06/17/2022 08:47:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between LAIGHT STREET and VESTRY STREET, LAIGHT STREET between GREENWICH STREET and HUDSON STREET",Manhattan,1,1,Theater,Theater,United States of America,10013
+656554,Shooting Permit,06/23/2022 12:00:00 PM,06/24/2022 02:30:00 AM,06/17/2022 08:26:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 54 STREET, PARK AVENUE between EAST 48 STREET and EAST 55 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10019, 10022, 10152, 10171"
+656553,Shooting Permit,06/22/2022 11:00:00 AM,06/23/2022 01:00:00 AM,06/17/2022 08:26:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 5 AVENUE and 6 AVENUE, WEST 36 STREET between 6 AVENUE and BROADWAY, WEST 36 STREET between BROADWAY and 7 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE, BROADWAY between WEST 35 STREET and WEST 36 STREET, BROADWAY between WEST 36 STREET and WEST 37 STREET, WEST 39 STREET between 6 AVENUE and 8 AVENUE, WEST 39 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 38 STREET and WEST 40 STREET, WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018"
+656543,Shooting Permit,06/21/2022 11:00:00 AM,06/21/2022 11:59:00 PM,06/17/2022 07:25:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 62 STREET and WEST 63 STREET, WEST 63 STREET between CENTRAL PARK WEST and BROADWAY",Manhattan,"64, 7","20, 22",Still Photography,Not Applicable,United States of America,10023
+656538,Theater Load in and Load Outs,06/22/2022 12:01:00 AM,06/23/2022 07:00:00 AM,06/17/2022 01:32:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+656537,Theater Load in and Load Outs,06/19/2022 12:01:00 AM,06/20/2022 06:00:00 AM,06/17/2022 01:27:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+656536,Theater Load in and Load Outs,06/18/2022 12:01:00 AM,06/18/2022 11:59:00 PM,06/17/2022 01:16:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+656519,Shooting Permit,06/21/2022 06:00:00 AM,06/21/2022 09:00:00 PM,06/16/2022 08:17:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between IRVING AVENUE and WYCKOFF AVENUE, JEFFERSON STREET between ST NICHOLAS AVENUE and WYCKOFF AVENUE",Brooklyn,4,83,Commercial,Promo,United States of America,11237
+656512,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 07:00:00 PM,06/16/2022 07:18:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between DURYEA PLACE and TILDEN AVENUE, EAST 115 STREET between 1 AVENUE and PLEASANT AVENUE, MADISON AVENUE between EAST 138 STREET and EAST 135 STREET",Brooklyn,"11, 14","23, 25, 70",Film,Short,United States of America,"10029, 10037, 11226"
+656496,Shooting Permit,06/22/2022 08:00:00 AM,06/22/2022 11:59:00 PM,06/16/2022 06:01:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 82 STREET and EAST 84 STREET, EAST 84 STREET between 3 AVENUE and PARK AVENUE, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,"10022, 10028"
+656481,Shooting Permit,06/21/2022 08:00:00 AM,06/22/2022 12:00:00 AM,06/16/2022 05:10:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between GRAND CONCOURSE and VALENTINE AVENUE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+656454,Shooting Permit,06/22/2022 03:00:00 PM,06/23/2022 03:00:00 AM,06/16/2022 04:20:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","RODNEY STREET between DIVISION AVENUE and SOUTH 9 STREET, SOUTH 9 STREET between RODNEY STREET and BROADWAY, BROADWAY between SOUTH 9 STREET and KEAP STREET, DIVISION AVENUE between MARCY AVENUE and KEAP STREET, DIVISION AVENUE between KEAP STREET and HARRISON AVENUE, RODNEY STREET between DIVISION AVENUE and MARCY AVENUE, MARCY AVENUE between RODNEY STREET and DIVISION AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE, SOUTH 2 STREET between HAVEMEYER STREET and MARCY AVENUE, MARCY AVENUE between SOUTH 2 STREET and SOUTH 1 STREET, MARCY AVENUE between SOUTH 3 STREET and SOUTH 2 STREET, HAVEMEYER STREET between GRAND STREET and SOUTH 4 STREET, SOUTH 2 STREET between HAVEMEYER STREET and ROEBLING STREET, SOUTH 2 STREET between HAVEMEYER STREET and MARCY AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+656450,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 08:00:00 PM,06/16/2022 04:09:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 13 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United Kingdom,11101
+656445,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 08:00:00 PM,06/16/2022 04:04:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 13 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United Kingdom,11101
+656431,Shooting Permit,06/20/2022 09:00:00 AM,06/21/2022 02:00:00 AM,06/16/2022 03:19:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOORE STREET between BOGART STREET and WHITE STREET, VARET STREET between BOGART STREET and WHITE STREET, BOGART STREET between SEIGEL STREET and MOORE STREET, COOK STREET between WHITE STREET and BUSHWICK AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+656421,Shooting Permit,06/25/2022 06:00:00 AM,06/25/2022 10:00:00 PM,06/16/2022 02:41:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, WEST 9 STREET between HICKS STREET and COLUMBIA STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+656412,Theater Load in and Load Outs,06/20/2022 12:01:00 AM,06/20/2022 11:59:00 PM,06/16/2022 02:20:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+656400,Shooting Permit,06/25/2022 06:00:00 AM,06/25/2022 06:00:00 PM,06/16/2022 01:57:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",ESSEX STREET between RIVINGTON STREET and STANTON STREET,Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+656358,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 08:00:00 PM,06/16/2022 12:22:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 13 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United Kingdom,11101
+656354,Theater Load in and Load Outs,06/19/2022 12:01:00 AM,06/19/2022 11:59:00 PM,06/16/2022 12:15:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+656349,Shooting Permit,06/21/2022 08:00:00 AM,06/21/2022 10:00:00 PM,06/16/2022 11:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","SMITH STREET between HALLECK STREET and BAY STREET, HALLECK STREET between SMITH STREET and COURT STREET, COURT STREET between HALLECK STREET and DEAD END, COURT STREET between HALLECK STREET and CREAMER STREET, BAY STREET between COURT STREET and CLINTON STREET, BAY STREET between CLINTON STREET and HENRY STREET, CLINTON STREET between BAY STREET and HALLECK STREET, 43 AVENUE between 40 STREET and 41 STREET, 43 AVENUE between 39 PLACE and 40 STREET, QUEENS BOULEVARD between 40 STREET and 41 STREET, QUEENS BOULEVARD between 39 PLACE and 40 STREET, QUEENS BOULEVARD between 39 STREET and 39 PLACE, 40 STREET between QUEENS BOULEVARD and 43 AVENUE",Brooklyn,"2, 6","108, 76",Television,Cable-episodic,United States of America,"11104, 11231"
+656345,Shooting Permit,06/18/2022 06:00:00 AM,06/18/2022 03:30:00 PM,06/16/2022 11:42:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 12 AVENUE and 11 AVENUE, 3 AVENUE between EAST 39 STREET and EAST 37 STREET, WEST 20 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5, 6","10, 13, 14, 17, 18",Television,Cable-episodic,United States of America,"10003, 10010, 10011, 10016, 10017, 10019, 10036"
+656328,Shooting Permit,06/21/2022 06:00:00 AM,06/21/2022 11:00:00 PM,06/16/2022 11:01:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Still Photography,Not Applicable,United States of America,10018
+656323,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 11:00:00 PM,06/16/2022 10:52:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Still Photography,Not Applicable,United States of America,10018
+656319,Shooting Permit,06/20/2022 01:00:00 PM,06/21/2022 03:00:00 AM,06/16/2022 10:47:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",WHITE STREET between LAFAYETTE STREET and BROADWAY,Manhattan,1,5,Still Photography,Not Applicable,United States of America,10013
+656314,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 07:00:00 PM,06/16/2022 10:28:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS AVENUE between HALSEY STREET and HANCOCK STREET,Brooklyn,"3, 6","76, 79, 81",Film,Short,United States of America,"11216, 11221, 11231, 11233"
+656308,Shooting Permit,06/21/2022 08:00:00 AM,06/21/2022 11:59:00 PM,06/16/2022 10:23:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+656306,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 10:00:00 PM,06/16/2022 10:20:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+656303,Shooting Permit,06/19/2022 06:00:00 PM,06/20/2022 03:00:00 AM,06/16/2022 10:13:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 30 STREET and WEST 31 STREET, WEST 29 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,"10, 14",Film,Feature,United States of America,10001
+656301,Shooting Permit,06/19/2022 04:00:00 AM,06/19/2022 12:00:00 PM,06/16/2022 10:11:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+656288,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 11:00:00 PM,06/16/2022 09:38:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between VALENTINE AVENUE and GRAND CONCOURSE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+656275,Shooting Permit,06/22/2022 11:00:00 AM,06/22/2022 11:00:00 PM,06/16/2022 08:44:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD N,Brooklyn,15,61,Television,Episodic series,United States of America,11223
+656266,Shooting Permit,06/21/2022 12:00:00 PM,06/22/2022 12:30:00 AM,06/16/2022 07:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between VILLAGE ROAD N. and GRAVESEND NECK ROAD, WEST STREET between AVENUE U and VILLAGE ROAD N, AVENUE P between EAST 4 STREET and EAST 3 STREET",Brooklyn,"12, 15","61, 66",Television,Episodic series,United States of America,"11223, 11230"
+656260,Shooting Permit,06/20/2022 11:00:00 AM,06/20/2022 11:00:00 PM,06/16/2022 06:28:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE X between WEST 2 STREET and WEST 1 STREET,Brooklyn,15,61,Television,Episodic series,United States of America,11223
+656250,Shooting Permit,06/22/2022 08:00:00 AM,06/22/2022 08:00:00 PM,06/15/2022 11:55:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between HUDSON STREET and VARICK STREET,Manhattan,"1, 2, 3","1, 5",Still Photography,Not Applicable,United States of America,"10002, 10013"
+656251,Shooting Permit,06/23/2022 08:00:00 AM,06/23/2022 08:00:00 PM,06/15/2022 11:55:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between VARICK STREET and HUDSON STREET,Manhattan,"1, 2, 3","1, 5",Still Photography,Not Applicable,United States of America,10013
+656252,Shooting Permit,06/24/2022 06:00:00 AM,06/24/2022 06:00:00 PM,06/15/2022 11:55:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Still Photography,Not Applicable,United States of America,"10007, 10038, 10279"
+656239,Shooting Permit,06/19/2022 06:00:00 AM,06/19/2022 11:00:00 PM,06/15/2022 11:15:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between FIFTH AVENUE and 6 AVENUE,Manhattan,5,14,Still Photography,Not Applicable,United States of America,10018
+656206,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 06:00:00 PM,06/15/2022 08:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","STATE STREET between BRIDGE STREET and PEARL STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET, MURRAY STREET between CHURCH STREET and WEST BROADWAY",Manhattan,1,1,Commercial,Promo,United States of America,"10004, 10007"
+656197,Shooting Permit,06/21/2022 06:00:00 AM,06/21/2022 09:00:00 PM,06/15/2022 07:02:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between ALBERMARLE ROAD and BEVERLY ROAD, EASTERN PARKWAY between BEDFORD AVENUE and ROGERS AVENUE, EASTERN PARKWAY between ROGERS AVENUE and NOSTRAND AVENUE",Brooklyn,"14, 8, 9","70, 71, 77",WEB,Not Applicable,United States of America,"11216, 11218, 11225"
+656180,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 08:00:00 PM,06/15/2022 06:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between IRVING AVENUE and WYCKOFF AVENUE, JEFFERSON STREET between ST NICHOLAS AVENUE and WYCKOFF AVENUE",Brooklyn,4,83,Commercial,Promo,United States of America,11237
+656178,Shooting Permit,06/21/2022 02:00:00 AM,06/21/2022 04:00:00 PM,06/15/2022 06:14:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 126 STREET between 5 AVENUE and MADISON AVENUE, MALCOLM X BOULEVARD between WEST 126 STREET and WEST 125 STREET",Manhattan,"10, 11","25, 28",Film,Short,United States of America,"10027, 10035"
+656144,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 10:00:00 PM,06/15/2022 04:54:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DEAD END and CONOVER STREET, COFFEY STREET between DEAD END and CONOVER STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+656143,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 10:00:00 PM,06/15/2022 04:45:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND ST between MORGAN AVENUE and METROPOLITAN AVE,Brooklyn,1,90,Commercial,Commercial,United States of America,"11206, 11211, 11237"
+656139,Shooting Permit,06/20/2022 08:00:00 AM,06/20/2022 11:00:00 PM,06/15/2022 04:41:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 79 STREET and EAST 80 STREET, MADISON AVENUE between EAST 80 STREET and EAST 81 STREET, EAST 80 STREET between MADISON AVENUE and 5 AVENUE, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 8","10, 19",Commercial,Commercial,United States of America,"10018, 10028, 10075"
+656125,Shooting Permit,06/20/2022 12:00:00 AM,06/20/2022 05:00:00 PM,06/15/2022 04:03:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 6 AVENUE and 7 AVENUE, WEST 32 STREET between 6 AVENUE and 7 AVENUE, WEST 33 STREET between 6 AVENUE and 7 AVENUE, MAURICE AVENUE between 53 DRIVE and TYLER AVENUE, 65 PLACE between 53 DRIVE and 53 AVENUE, 65 PLACE between 53 AVENUE and 52 AVENUE, 66 STREET between 53 ROAD and 53 DRIVE, 53 DRIVE between 65 PLACE and 66 STREET, 53 DRIVE between 66 STREET and 67 STREET",Manhattan,"2, 5","104, 108, 14",Television,Cable-episodic,United States of America,"10001, 11378"
+656113,Shooting Permit,06/21/2022 07:00:00 AM,06/21/2022 08:00:00 PM,06/15/2022 03:46:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between VINE STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between DOUGHTY STREET and VINE STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+656105,Shooting Permit,06/22/2022 07:00:00 AM,06/22/2022 09:00:00 PM,06/15/2022 03:26:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE, PARK AVENUE between EAST 49 STREET and EAST 52 STREET",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10036"
+656083,Shooting Permit,06/21/2022 07:30:00 AM,06/21/2022 08:00:00 PM,06/15/2022 02:48:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between CANAL STREET and WALKER STREET, 6 AVENUE between WALKER STREET and FRANKLIN STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, CHURCH STREET between WHITE STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and WALKER STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+656058,Shooting Permit,06/17/2022 10:30:00 AM,06/18/2022 01:00:00 AM,06/15/2022 01:42:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 27 STREET and EAST 29 STREET, EAST 27 STREET between 2 AVENUE and 3 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 28 STREET and EAST 29 STREET, 2 AVENUE between EAST 30 STREET and EAST 33 STREET, 2 AVENUE between EAST 31 STREET and EAST 32 STREET, EAST 30 STREET between 3 AVENUE and 2 AVENUE, EAST 30 STREET between 2 AVENUE and 1 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 29 STREET and EAST 30 STREET, EAST 29 STREET between 3 AVENUE and 2 AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10010, 10016"
+656032,Shooting Permit,06/21/2022 07:00:00 AM,06/21/2022 08:00:00 PM,06/15/2022 12:58:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, BEDFORD AVENUE between NORTH 10 STREET and NORTH 11 STREET, NORTH 11 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+656026,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 03:00:00 PM,06/15/2022 12:51:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between BROOME STREET and GRAND STREET,Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+656023,Shooting Permit,06/29/2022 12:00:00 AM,06/29/2022 12:00:00 PM,06/15/2022 12:42:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+656021,Shooting Permit,06/28/2022 09:00:00 AM,06/28/2022 11:59:00 PM,06/15/2022 12:37:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+656005,Shooting Permit,06/20/2022 04:00:00 PM,06/21/2022 01:00:00 AM,06/15/2022 11:59:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 85 STREET and WEST 86 STREET, COLUMBUS AVENUE between WEST 86 STREET and WEST 87 STREET",Manhattan,7,"20, 24",Film,Feature,United States of America,10024
+655996,Shooting Permit,06/19/2022 06:00:00 AM,06/19/2022 01:00:00 PM,06/15/2022 11:40:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 49 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Film,Feature,United States of America,"10017, 10019, 10020, 10022, 10036, 10112, 10176"
+655988,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 08:00:00 PM,06/15/2022 11:22:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","DOMINICK STREET between VARICK STREET and 6 AVENUE, 6 AVENUE between KING STREET and SPRING STREET, SPRING STREET between VARICK STREET and 6 AVENUE, 6 AVENUE between SPRING STREET and BROOME STREET, WEST BROADWAY between BROOME STREET and WEST HOUSTON STREET",Manhattan,2,1,Television,Episodic series,United States of America,"10012, 10013, 10014"
+655983,Shooting Permit,06/21/2022 01:00:00 PM,06/22/2022 05:00:00 AM,06/15/2022 11:08:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT ALLEY between WHITE STREET and WALKER STREET, LAFAYETTE STREET between CANAL STREET and WALKER STREET, LAFAYETTE STREET between WALKER STREET and WHITE STREET, LAFAYETTE STREET between WHITE STREET and FRANKLIN STREET, WALKER STREET between LAFAYETTE STREET and CORTLANDT ALLEY, WHITE STREET between CORTLANDT ALLEY and LAFAYETTE STREET",Manhattan,1,5,Commercial,Promo,United States of America,10013
+655980,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 09:00:00 PM,06/15/2022 10:55:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, CROSBY STREET between HOWARD STREET and GRAND STREET, HOWARD STREET between BROADWAY and CROSBY STREET",Manhattan,"2, 64, 8","19, 22, 5",Commercial,Commercial,United States of America,"10013, 10023, 10065"
+655976,Shooting Permit,06/23/2022 06:00:00 AM,06/23/2022 10:00:00 PM,06/15/2022 10:38:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST and 105TH ST,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+655971,Shooting Permit,06/22/2022 06:00:00 AM,06/22/2022 09:00:00 PM,06/15/2022 10:31:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVE., between 101ST ST and 105TH ST.",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+655969,Shooting Permit,06/21/2022 06:00:00 AM,06/21/2022 10:00:00 PM,06/15/2022 10:26:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST and 105TH ST,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+655968,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 09:00:00 PM,06/15/2022 10:23:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE between 101ST ST and 105TH ST,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+655949,Shooting Permit,06/17/2022 08:00:00 AM,06/17/2022 11:00:00 PM,06/15/2022 09:21:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+655936,Shooting Permit,06/20/2022 08:00:00 AM,06/20/2022 10:00:00 PM,06/15/2022 08:23:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","SMITH STREET between HALLECK STREET and BAY STREET, HALLECK STREET between SMITH STREET and COURT STREET, COURT STREET between HALLECK STREET and BRYANT STREET, COURT STREET between HALLECK STREET and CREAMER STREET, BAY STREET between COURT STREET and CLINTON STREET, BAY STREET between CLINTON STREET and HENRY STREET, CLINTON STREET between BAY STREET and HALLECK STREET, RICHARDS STREET between VISITATION PLACE and VERONA STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+655931,Shooting Permit,06/21/2022 09:00:00 AM,06/21/2022 11:00:00 PM,06/15/2022 07:58:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 46 STREET and EAST 47 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+655930,Shooting Permit,06/21/2022 09:00:00 AM,06/21/2022 11:00:00 PM,06/15/2022 07:58:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+655924,Shooting Permit,06/18/2022 12:00:00 AM,06/18/2022 03:00:00 PM,06/15/2022 06:16:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+655923,Shooting Permit,06/17/2022 01:00:00 PM,06/17/2022 11:59:00 PM,06/15/2022 06:11:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+655922,Theater Load in and Load Outs,06/16/2022 12:01:00 AM,06/17/2022 06:00:00 AM,06/15/2022 05:19:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+655914,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 11:59:00 PM,06/14/2022 11:47:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 5 AVENUE and BROADWAY, WEST 26 STREET between 5 AVENUE and BROADWAY, EAST 27 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 27 STREET and EAST 26 STREET",Manhattan,5,13,Television,News,United States of America,"10001, 10010, 10016"
+655857,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 10:30:00 PM,06/14/2022 08:04:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, HALSEY STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WEIRFIELD STREET between WILSON AVENUE and CENTRAL AVENUE, WILSON AVENUE between WEIRFIELD STREET and JEFFERSON AVENUE, KNICKERBOCKER AVENUE between JEFFERSON STREET and DEKALB AVENUE, JEFFERSON STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, TROUTMAN STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, HART STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, IRVING AVENUE between SUYDAM STREET and HART STREET, IRVING AVENUE between HART STREET and DEKALB AVENUE, SUYDAM STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and STEWART AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11207, 11221, 11237"
+655840,Shooting Permit,06/25/2022 06:30:00 AM,06/26/2022 07:00:00 PM,06/14/2022 07:00:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 25 STREET and 5 AVENUE, 5 AVENUE between WEST 25 STREET and BROADWAY, 5 AVENUE between BROADWAY and WEST 24 STREET",Manhattan,5,13,Television,Special/Awards Show,United States of America,10010
+655833,Shooting Permit,06/21/2022 01:00:00 AM,06/21/2022 10:00:00 PM,06/14/2022 06:49:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON AVENUE between TOMPKINS AVENUE and MARCY AVENUE, JEFFERSON AVENUE between MARCY AVENUE and NOSTRAND AVENUE",Brooklyn,3,79,Film,Feature,United States of America,"11216, 11221"
+655791,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 11:00:00 PM,06/14/2022 04:21:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 192 STREET, EAST 187 STREET between VALENTINE AVENUE and GRAND CONCOURSE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+655773,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 10:00:00 PM,06/14/2022 03:34:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 9 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+655746,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 07:00:00 PM,06/14/2022 02:33:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between LEXINGTON AVENUE and PARK AVENUE,Manhattan,"5, 6, 8","17, 18, 19",Commercial,Commercial,United States of America,"10021, 10022, 10065"
+655745,Shooting Permit,06/21/2022 07:00:00 AM,06/21/2022 08:00:00 PM,06/14/2022 02:31:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Cable-episodic,United States of America,"10017, 10036"
+655723,Shooting Permit,06/16/2022 06:30:00 AM,06/16/2022 10:00:00 PM,06/14/2022 01:55:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 79 STREET and EAST 84 STREET, EAST 80 STREET between 1 AVENUE and YORK AVENUE, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST END AVENUE between EAST 84 STREET and EAST 86 STREET, YORK AVENUE between EAST 87 STREET and EAST 88 STREET, EAST 84 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075, 10128"
+655677,Shooting Permit,06/21/2022 07:00:00 AM,06/21/2022 10:00:00 PM,06/14/2022 12:43:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+655667,Shooting Permit,06/17/2022 08:00:00 PM,06/18/2022 02:00:00 AM,06/14/2022 12:26:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATERSIDE PLAZA between EAST 28 STREET and EAST 30 STREET, EAST 23 STREET between FDR DRIVE and 1 AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10010, 10016"
+655656,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 09:00:00 PM,06/14/2022 12:07:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUNTER STREET between 43 AVENUE and 44 ROAD, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, CRESCENT STREET between HUNTER STREET and 44 ROAD, 44 ROAD between 24 STREET and CRESCENT STREET, CRESCENT STREET between 43 AVENUE and 44 ROAD, CRESCENT STREET between 42 ROAD and 43 AVENUE, HUNTER STREET between 44 ROAD and 44 DRIVE, 44 ROAD between CRESCENT STREET and HUNTER STREET, 43 AVENUE between 24 STREET and CRESCENT STREET, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, 23 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+655654,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 08:00:00 PM,06/14/2022 12:04:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 80 STREET, EAST 79 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+655605,Shooting Permit,06/17/2022 07:30:00 AM,06/17/2022 10:00:00 PM,06/14/2022 10:52:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","GOLD STREET between NASSAU STREET and CONCORD STREET, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLY ROAD",Brooklyn,"14, 2","70, 84",Commercial,Commercial,United States of America,"11201, 11218"
+655603,Shooting Permit,06/17/2022 10:00:00 AM,06/18/2022 01:00:00 AM,06/14/2022 10:48:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between BROOME STREET and GRAND STREET, CENTRE MARKET PLACE between BROOME STREET and GRAND STREET, GROVE STREET between BEDFORD STREET and BLEEKER STREET, BLEEKER STREET between WEST 10 STREET and BARROW STREET, BEDFORD STREET between GROVE STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and COMMERCE STREET, BARROW STREET between COMMERCE STREET and GREENWICH STREET, CHRISTOPHER STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between GROVE STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between BARROW STREET and CLARKSON STREET, BLEEKER STREET between MORTON STREET and CARMINE STREET, LEROY STREET between BEDFORD STREET and BLEEKER STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, HUDSON STREET between CLARKSON STREET and ST LUKES PLACE, HUDSON STREET between BARROW STREET and GROVE STREET",Manhattan,2,"5, 6",Television,Episodic series,United States of America,"10012, 10013, 10014"
+655592,Shooting Permit,06/16/2022 04:00:00 PM,06/17/2022 01:00:00 AM,06/14/2022 10:28:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between SPRING STREET and WEST HOUSTON STREET",Manhattan,2,1,Still Photography,Not Applicable,United States of America,"10013, 10014"
+655589,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 08:00:00 PM,06/14/2022 10:25:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 71 STREET between WEST END AVENUE and BROADWAY, RIVERSIDE BOULEVARD between WEST 69 STREET and WEST 71 STREET",Manhattan,7,20,Commercial,Promo,United States of America,"10023, 10069"
+655577,Shooting Permit,06/18/2022 08:00:00 AM,06/18/2022 08:00:00 PM,06/14/2022 09:48:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+655575,Shooting Permit,06/17/2022 08:00:00 AM,06/17/2022 08:00:00 PM,06/14/2022 09:43:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+655568,Shooting Permit,06/17/2022 02:00:00 PM,06/18/2022 02:00:00 AM,06/14/2022 09:32:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between VILLAGE ROAD N and GRAVESEND NECK ROAD, GRAVESEND NECK ROAD between WEST STREET and EAST 1 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11223
+655551,Shooting Permit,06/20/2022 06:00:00 AM,06/20/2022 10:00:00 PM,06/14/2022 08:50:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 16 STREET between DITMAS AVENUE and NEWKIRK AVENUE,Brooklyn,14,70,Film,Feature,United States of America,11226
+655549,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 10:00:00 PM,06/14/2022 08:38:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Still Photography,Not Applicable,United States of America,"10459, 10474"
+655545,Shooting Permit,06/20/2022 08:00:00 AM,06/20/2022 10:00:00 PM,06/14/2022 08:07:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 46 STREET and EAST 47 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+655507,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 08:00:00 PM,06/13/2022 08:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 20 STREET",Manhattan,5,13,Commercial,Promo,United States of America,"10003, 10010"
+655488,Shooting Permit,06/17/2022 04:00:00 PM,06/18/2022 07:00:00 AM,06/13/2022 07:12:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMER STREET between WINTER STREET and SEASONGOOD ROAD, SEASONGOOD ROAD between ASCAN AVENUE and PURITAN AVENUE, SEASONGOOD ROAD between SUMMER STREET and PURITAN AVENUE, ASCAN AVENUE between GREENWAY SOUTH and GREENWAY NORTH, PURITAN AVENUE between SEASONGOOD ROAD and SHORTHILL PLACE, AUSTIN STREET between ASCAN AVENUE and 75 AVENUE, ASCAN AVENUE between AUSTIN STREET and QUEENS BOULEVARD, QUEENS BOULEVARD between 71 AVENUE and ASCAN AVENUE, 71 ROAD between AUSTIN STREET and QUEENS BOULEVARD, 72 AVENUE between AUSTIN STREET and QUEENS BOULEVARD, 72 ROAD between AUSTIN STREET and QUEENS BOULEVARD, WOODHAVEN BOULEVARD between FLEET COURT and 64 ROAD, 64 ROAD between WOODHAVEN BOULEVARD and 84 PLACE",Queens,"5, 6","104, 112",Film,Feature,United States of America,"11374, 11375, 11379"
+655486,Shooting Permit,06/16/2022 09:00:00 AM,06/17/2022 03:00:00 AM,06/13/2022 07:10:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMER STREET between WINTER STREET and SEASONGOOD ROAD, SEASONGOOD ROAD between SUMMER STREET and PURITAN AVENUE, ASCAN AVENUE between GREENWAY SOUTH and GREENWAY NORTH, PURITAN AVENUE between SEASONGOOD ROAD and SHORTHILL PLACE, AUSTIN STREET between ASCAN AVENUE and 75 AVENUE, ASCAN AVENUE between AUSTIN STREET and QUEENS BOULEVARD, QUEENS BOULEVARD between 71 AVENUE and ASCAN AVENUE, 71 ROAD between AUSTIN STREET and QUEENS BOULEVARD, 72 AVENUE between AUSTIN STREET and QUEENS BOULEVARD, 72 ROAD between AUSTIN STREET and QUEENS BOULEVARD, WOODHAVEN BOULEVARD between FLEET COURT and 64 ROAD, 64 ROAD between WOODHAVEN BOULEVARD and 84 PLACE",Queens,"5, 6","104, 112",Film,Feature,United States of America,"11374, 11375, 11379"
+655484,Shooting Permit,06/20/2022 07:00:00 AM,06/20/2022 08:00:00 PM,06/13/2022 07:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Film,Feature,United States of America,10019
+655483,Theater Load in and Load Outs,06/19/2022 12:01:00 AM,06/21/2022 06:00:00 AM,06/13/2022 06:50:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+655450,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 11:59:00 PM,06/13/2022 04:26:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+655439,Shooting Permit,06/21/2022 08:00:00 AM,06/21/2022 10:00:00 PM,06/13/2022 04:09:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 136 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDRICK DOUGLASS BOULEVARD between WEST 135 STREET and WEST 137 STREET, WEST 136 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 137 STREET between FREDRICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDRICK DOUGLASS BOULEVARD between WEST 137 STREET and WEST 138 STREET, WEST 138 STREET between FREDRICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, EDGECOMBE AVENUE between WEST 137 STREET and WEST 138 STREET, SAINT NICHOLAS AVENUE between WEST 136 STREET and WEST 138 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 135 STREET and WEST 138 STREET",Manhattan,"10, 9","26, 32",Television,Episodic series,United States of America,10030
+655433,Shooting Permit,06/16/2022 09:00:00 AM,06/16/2022 11:59:00 PM,06/13/2022 04:00:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between NELSON STREET and HUNTINGTON STREET, HUNTINGTON STREET between COURT STREET and CLINTON STREET, COURT STREET between HUNTINGTON STREET and NELSON STREET, COURT STREET between HUNTINGTON STREET and WEST 9 STREET, COURT STREET between WEST 9 STREET and GARNET STREET, WEST 9 STREET between COURT STREET and HAMILTON AVENUE, WEST 9 STREET between COURT STREET and SMITH STREET, FOURTH PLACE between HENRY STREET and CLINTON STREET, HENRY STREET between THIRD PLACE and FOURTH PLACE, HENRY STREET between FIRST PLACE and SECOND PLACE, HENRY STREET between SECOND PLACE and THIRD PLACE, CARROLL STREET between HENRY STREET and HICKS STREET, SMITH STREET between NELSON STREET and THIRD STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+655429,Shooting Permit,06/19/2022 07:00:00 AM,06/19/2022 08:00:00 PM,06/13/2022 03:48:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 8 AVENUE and BROADWAY,Manhattan,5,18,Film,Feature,United States of America,10019
+655423,Shooting Permit,06/18/2022 07:00:00 AM,06/18/2022 08:00:00 PM,06/13/2022 03:39:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Film,Feature,United States of America,10019
+655419,Shooting Permit,06/17/2022 05:00:00 PM,06/18/2022 06:00:00 AM,06/13/2022 03:37:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT WASHINGTON AVENUE between CABRINI BOULEVARD and WEST 190 STREET, FORT WASHINGTON AVENUE between WEST 185 STREET and WEST 190 STREET, WEST 187 STREET between FORT WASHINGTON AVENUE and CABRINI BOULEVARD, BENNETT AVENUE between WEST 189 STREET and WEST 190 STREET, MARGARET CORBIN DR between FORT WASHINGTON AVE and FT TRYON PL",Manhattan,12,34,Television,Cable-episodic,United States of America,"10033, 10040"
+655414,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 11:00:00 PM,06/13/2022 03:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET",Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10022, 10028, 10065"
+655413,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 08:00:00 PM,06/13/2022 03:28:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 8 AVENUE and BROADWAY,Manhattan,5,18,Film,Feature,United States of America,10019
+655403,Shooting Permit,06/15/2022 09:00:00 PM,06/16/2022 03:00:00 AM,06/13/2022 03:08:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",HAWKINS STREET between WILLIAM AVENUE and CITY ISLAND AVENUE,Bronx,10,45,Film,Feature,United States of America,10464
+655400,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 08:00:00 PM,06/13/2022 03:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Film,Feature,United States of America,10019
+655399,Shooting Permit,06/15/2022 11:00:00 AM,06/16/2022 02:00:00 AM,06/13/2022 02:58:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATERSIDE PLAZA between EAST 28 STREET and EAST 30 STREET, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 45 STREET and EAST 47 STREET, EAST 45 STREET between 2 AVENUE and 3 AVENUE, EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10002, 10010, 10017, 10022"
+655391,Shooting Permit,06/16/2022 12:00:00 AM,06/16/2022 10:00:00 PM,06/13/2022 02:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",84 STREET between DORAN AVENUE and COOPER AVENUE,Queens,5,104,Television,Cable-episodic,United States of America,11385
+655361,Theater Load in and Load Outs,06/21/2022 12:01:00 AM,06/22/2022 06:00:00 AM,06/13/2022 01:34:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+655355,Shooting Permit,06/16/2022 03:03:00 PM,06/16/2022 08:30:00 PM,06/13/2022 01:27:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,10036
+655351,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 09:00:00 PM,06/13/2022 01:16:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between EAST 95 STREET and EAST 96 STREET, EAST 95 STREET between CHURCH AVENUE and LINDEN BOULEVARD, EAST 96 STREET between CHURCH AVENUE and LINDEN BOULEVARD, LINDEN BOULEVARD between EAST 93 STREET and EAST 95 STREET, CHURCH AVENUE between EAST 94 STREET and EAST 95 STREET, FOSTER AVENUE between 101 STREET and 105 STREET",Brooklyn,"17, 18","67, 69",Television,Cable-episodic,United States of America,"11212, 11236"
+655337,Shooting Permit,06/17/2022 08:00:00 AM,06/17/2022 09:00:00 PM,06/13/2022 12:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between AVENUE I and CAMPUS ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11210
+655336,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 08:00:00 PM,06/13/2022 12:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRATFORD ROAD between BEVERLEY ROAD and TURNER PLACE,Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+655332,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 10:00:00 PM,06/13/2022 12:48:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between HORATIO STREET and JANE STREET, 10 AVENUE between WEST STREET and GANSEVOORT STREET, WASHINGTON STREET between HORATIO STREET and WEST 12 STREET, CHARLES STREET between WEST STREET and WASHINGTON STREET, WEST STREET between CHARLES STREET and PERRY STREET, WEST STREET between WEST 12 STREET and BETHUNE STREET, WEST STREET between WEST 12 STREET and 10 AVENUE, HORATIO STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 14 STREET between HUDSON STREET and 8 AVENUE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+655326,Shooting Permit,06/14/2022 04:00:00 AM,06/14/2022 11:00:00 AM,06/13/2022 12:43:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+655321,Theater Load in and Load Outs,06/16/2022 12:01:00 AM,06/19/2022 06:00:00 AM,06/13/2022 12:40:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+655311,Theater Load in and Load Outs,06/20/2022 12:01:00 AM,06/20/2022 11:59:00 PM,06/13/2022 12:12:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+655307,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 09:00:00 PM,06/13/2022 12:05:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between MEEKER AVENUE and HERBERT STREET,Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222"
+655303,Theater Load in and Load Outs,06/16/2022 12:01:00 AM,06/17/2022 06:00:00 AM,06/13/2022 11:54:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+655297,Shooting Permit,06/17/2022 08:00:00 AM,06/17/2022 11:00:00 PM,06/13/2022 11:40:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+655289,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 08:00:00 PM,06/13/2022 11:29:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 56 AVENUE and 54 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+655278,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 09:00:00 PM,06/13/2022 11:09:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+655274,Theater Load in and Load Outs,06/15/2022 12:01:00 AM,06/15/2022 11:59:00 PM,06/13/2022 11:04:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+655271,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 08:00:00 PM,06/13/2022 10:59:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 20 STREET",Manhattan,5,13,Commercial,Promo,United States of America,10003
+655257,Theater Load in and Load Outs,07/02/2022 12:01:00 AM,07/16/2022 11:59:00 PM,06/13/2022 10:39:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+655252,Theater Load in and Load Outs,06/17/2022 12:01:00 AM,07/01/2022 11:59:00 PM,06/13/2022 10:26:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+655251,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 08:00:00 PM,06/13/2022 10:25:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+655235,Theater Load in and Load Outs,06/15/2022 12:01:00 AM,06/16/2022 11:59:00 PM,06/13/2022 09:43:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+655229,Shooting Permit,06/16/2022 06:00:00 AM,06/17/2022 12:00:00 AM,06/13/2022 09:17:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","GROVE STREET between BEDFORD STREET and BLEEKER STREET, BLEEKER STREET between WEST 10 STREET and BARROW STREET, BEDFORD STREET between GROVE STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and COMMERCE STREET, BARROW STREET between GREENWICH STREET and COMMERCE STREET, HUDSON STREET between BARROW STREET and GROVE STREET, CHRISTOPHER STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between GROVE STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between BARROW STREET and CLARKSON STREET, BLEEKER STREET between MORTON STREET and CARMINE STREET, LEROY STREET between BEDFORD STREET and BLEEKER STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, 6 AVENUE between WEST 3 STREET and WEST 4 STREET, WEST 22 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 21 STREET and WEST 23 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+655224,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 11:00:00 PM,06/13/2022 09:08:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+655207,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 08:00:00 PM,06/13/2022 07:42:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between PIKE SLIP and FRANK T MODICA WAY,Manhattan,"0, 1, 3","1, 5, 7",Still Photography,Not Applicable,United States of America,"10002, 10038"
+655206,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 09:00:00 PM,06/13/2022 07:08:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 6 AVENUE and 5 AVENUE,Manhattan,"2, 5","1, 14, 5",Still Photography,Not Applicable,United States of America,"10012, 10013, 10018"
+655179,Shooting Permit,06/15/2022 10:00:00 AM,06/15/2022 10:00:00 PM,06/12/2022 10:30:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between 1 AVENUE and 2 AVENUE,Brooklyn,7,72,Television,Episodic series,United States of America,11232
+655176,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 11:59:00 PM,06/12/2022 10:21:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 16 STREET between DITMAS AVENUE and NEWKIRK AVENUE,Brooklyn,14,70,Film,Feature,United States of America,11226
+655174,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 08:00:00 PM,06/12/2022 09:35:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 59 STREET between 11 AVENUE and 12 AVENUE",Manhattan,"4, 7","18, 20",Still Photography,Not Applicable,United States of America,"10019, 10023"
+655170,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 10:00:00 PM,06/12/2022 09:03:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between RIVINGTON STREET and EAST HOUSTON STREET, STANTON STREET between BOWERY and CHRYSTIE STREET",Manhattan,3,5,WEB,Not Applicable,United States of America,10002
+655166,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 08:00:00 PM,06/12/2022 08:28:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 61 STREET and EAST 62 STREET,Manhattan,"64, 8","19, 22",WEB,Not Applicable,United States of America,"10023, 10065"
+655155,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 09:00:00 PM,06/12/2022 07:09:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between BLEEKER STREET and BEDFORD STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10012, 10014"
+655118,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 11:00:00 PM,06/12/2022 01:08:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOULDEN AVENUE between BEDFORD PARK BL WEST and WEST 197 STREET, RESERVOIR AVENUE between WEST 195 STREET and WEST KINGSBRIDGE ROAD, GRAND CONCOURSE between EAST 184 STREET and EAST 188 STREET, EAST 187 STREET between VALENTINE AVENUE and GRAND CONCOURSE, WEST KINGSBRIDGE ROAD between JEROME AVENUE and RESERVOIR AVENUE",Bronx,"5, 7, 8","46, 50, 52",Television,Episodic series,United States of America,"10458, 10468"
+655112,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 05:00:00 PM,06/12/2022 12:05:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between DOCK STREET and MAIN STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, OTSEGO STREET between LORRAINE STREET and DIKEMAN STREET, VAN BRUNT STREET between DIKEMAN STREET and WOLCOTT STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET",Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11201, 11231"
+655080,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 10:00:00 PM,06/11/2022 09:31:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 38 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,"10011, 10018"
+654989,Theater Load in and Load Outs,06/17/2022 12:01:00 AM,06/18/2022 06:00:00 AM,06/10/2022 06:18:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+654988,Theater Load in and Load Outs,06/15/2022 12:01:00 AM,06/16/2022 11:59:00 PM,06/10/2022 06:13:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between IRVING PLACE and UNION SQUARE EAST",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+654982,Shooting Permit,06/18/2022 07:00:00 AM,06/18/2022 11:59:00 PM,06/10/2022 05:33:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,WEB,Not Applicable,United States of America,11101
+654942,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 08:00:00 PM,06/10/2022 03:41:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MORNINGSIDE AVENUE between WEST 114 STREET and WEST 118 STREET, WEST 116TH STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 7, 9","24, 26, 28",Commercial,Commercial,United States of America,"10025, 10026, 10027"
+654929,Rigging Permit,06/14/2022 08:00:00 AM,06/14/2022 08:00:00 PM,06/10/2022 03:07:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",DRIGGS AVENUE between SOUTH 5 STREET and BROADWAY,Brooklyn,1,90,Television,Variety,United States of America,11211
+654928,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 08:00:00 PM,06/10/2022 03:02:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",DRIGGS AVENUE between SOUTH 5 STREET and BROADWAY,Brooklyn,1,90,Television,Variety,United States of America,11211
+654920,Shooting Permit,06/15/2022 12:00:00 AM,06/15/2022 08:00:00 PM,06/10/2022 02:43:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","27 STREET between 47 AVENUE and AUSTELL PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, EAST 59 STREET between 3 AVENUE and LEXINGTON AVENUE",Queens,"2, 6, 8","108, 17, 19",Television,Cable-episodic,United States of America,"10022, 11101"
+654919,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 09:00:00 PM,06/10/2022 02:38:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 76 STREET and WEST 77 STREET,Manhattan,"7, 8","19, 20",Still Photography,Not Applicable,United States of America,"10023, 10024, 10028"
+654916,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 11:00:00 PM,06/10/2022 02:30:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET STREET between DIVISION STREET and EAST BROADWAY, EAST BROADWAY between MARKET STREET and FORSYTH STREET, DIVISION STREET between BOWERY and MARKET STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, HENRY STREET between MARKET STREET and PIKE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, PIKE STREET between EAST BROADWAY and DIVISION STREET, ALLEN STREET between DIVISION STREET and CANAL STREET, EAST BROADWAY between PIKE STREET and RUTGERS STREET, ESSEX STREET between CANAL STREET and GRAND STREET, FORSYTH STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET, MERCER STREET between GRAND STREET and BROOME STREET",Manhattan,"2, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10013"
+654897,Shooting Permit,06/15/2022 10:00:00 AM,06/15/2022 11:00:00 PM,06/10/2022 01:28:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and VINE STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, COLUMBIA HEIGHTS between VINE STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, WATER STREET between OLD FULTON STREET and NEW DOCK STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+654895,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 09:00:00 PM,06/10/2022 01:19:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+654892,Theater Load in and Load Outs,06/15/2022 12:01:00 AM,06/15/2022 11:59:00 PM,06/10/2022 01:13:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+654884,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 08:00:00 PM,06/10/2022 01:01:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 80 STREET, EAST 79 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+654882,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 10:00:00 PM,06/10/2022 12:57:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEONARD STREET between MESEROLE STREET and CALYER STREET,Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11206, 11211, 11222"
+654869,Shooting Permit,06/16/2022 08:00:00 AM,06/16/2022 11:00:00 PM,06/10/2022 12:21:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+654865,Shooting Permit,06/15/2022 08:00:00 AM,06/15/2022 11:00:00 PM,06/10/2022 12:15:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+654852,Shooting Permit,06/14/2022 02:00:00 AM,06/15/2022 05:00:00 AM,06/10/2022 11:45:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between COURT STREET and HICKS STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE, CLINTON STREET between STATE STREET and ATLANTIC AVENUE, COURT STREET between ATLANTIC AVENUE and PACIFIC STREET, OLD FULTON STREET between ELIZABETH PLACE and FRONT STREET, WATER STREET between DOCK STREET and MAIN STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, FURMAN ST between CRANBERRY ST and DOUGHTY STREET, FRONT ST between OLD DOCK ST and MAIN ST",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+654807,Shooting Permit,06/12/2022 04:00:00 AM,06/12/2022 12:00:00 PM,06/10/2022 09:22:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+654790,Shooting Permit,06/15/2022 08:00:00 AM,06/15/2022 10:00:00 PM,06/10/2022 08:12:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+654789,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 09:00:00 PM,06/10/2022 08:10:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+654777,Shooting Permit,06/14/2022 10:00:00 AM,06/14/2022 10:00:00 PM,06/10/2022 03:22:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 10 STREET and JONES WALK, AVENUE U between WEST 5 STREET and WEST 4 STREET",Brooklyn,"11, 13, 15","60, 61, 62",Television,Episodic series,United States of America,"11223, 11224"
+654751,Shooting Permit,06/17/2022 09:00:00 AM,06/18/2022 03:00:00 AM,06/09/2022 09:05:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between DEGRAW STREET and BALTIC STREET, DOUGLASS STREET between HOYT STREET and BOND STREET",Brooklyn,6,76,Film,Feature,United States of America,11217
+654750,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 09:00:00 PM,06/09/2022 09:03:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 53 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+654746,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 10:00:00 PM,06/09/2022 08:54:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 35 STREET and 37 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+654745,Shooting Permit,06/16/2022 08:00:00 AM,06/17/2022 03:00:00 AM,06/09/2022 08:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between WHITE STREET and BOGART STREET, BOGART STREET between SEIGEL STREET and MOORE STREET, MOORE STREET between BOGART STREET and WHITE STREET, COOK STREET between WHITE STREET and BUSHWICK AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11206
+654732,Shooting Permit,06/14/2022 08:00:00 AM,06/14/2022 06:00:00 PM,06/09/2022 06:57:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAYARD STREET between LEONARD STREET and MANHATTAN AVENUE,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,"11211, 11222"
+654726,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 08:00:00 PM,06/09/2022 06:33:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON STREET between BUSHWICK AVENUE and MYRTLE AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11206
+654722,Shooting Permit,06/12/2022 07:00:00 AM,06/12/2022 08:00:00 PM,06/09/2022 06:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,13,Film,Feature,United States of America,10011
+654701,Shooting Permit,06/15/2022 08:00:00 AM,06/15/2022 05:00:00 PM,06/09/2022 05:10:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 136 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 135 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 134 STREET between WILLOW AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 135 STREET and EAST 134 STREET, EAST 137 STREET between WILLOW AVENUE and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+654698,Theater Load in and Load Outs,06/18/2022 06:00:00 AM,06/18/2022 11:59:00 PM,06/09/2022 05:00:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",DRIGGS AVENUE between LEONARD STREET and ECKFORD STREET,Brooklyn,1,94,Television,Variety,United States of America,11222
+654697,Rigging Permit,06/14/2022 06:00:00 AM,06/14/2022 11:45:00 PM,06/09/2022 05:00:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",DRIGGS AVENUE between LEONARD STREET and ECKFORD STREET,Brooklyn,1,94,Television,Variety,United States of America,11222
+654694,Theater Load in and Load Outs,06/14/2022 12:01:00 AM,06/17/2022 11:59:00 PM,06/09/2022 04:49:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+654692,Shooting Permit,06/16/2022 12:00:00 PM,06/17/2022 04:30:00 AM,06/09/2022 04:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between BRIDGE STREET and JAY STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, YORK STREET between BRIDGE STREET and GOLD STREET, YORK STREET between GOLD STREET and HUDSON AVENUE",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11205"
+654659,Shooting Permit,06/17/2022 12:00:00 PM,06/18/2022 03:00:00 AM,06/09/2022 03:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 115 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 114 STREET and WEST 116 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 116 STREET, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 121 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, MORNINGSIDE AVENUE between WEST 113 STREET and WEST 117 STREET, MANHATTAN AVENUE between WEST 112 STREET and WEST 113 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,"10026, 10027"
+654657,Shooting Permit,06/14/2022 08:00:00 AM,06/14/2022 11:00:00 PM,06/09/2022 03:14:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+654655,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 10:00:00 PM,06/09/2022 03:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+654653,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 10:00:00 PM,06/09/2022 03:04:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+654634,Shooting Permit,06/15/2022 01:00:00 AM,06/15/2022 12:00:00 PM,06/09/2022 02:17:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Television,Morning Show,United States of America,10036
+654618,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 09:00:00 PM,06/09/2022 01:50:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+654606,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 10:00:00 PM,06/09/2022 01:28:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 50 STREET and WEST 51 STREET",Manhattan,4,18,Commercial,Commercial,United States of America,10019
+654600,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 08:00:00 PM,06/09/2022 01:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 80 STREET, EAST 79 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+654577,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 10:00:00 PM,06/09/2022 12:40:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WAVERLY PLACE and BLEEKER STREET, BLEEKER STREET between 6 AVENUE and SULLIVAN STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, MACDOUGAL STREET between MINETTA LANE and BLEEKER STREET, WASHINGTON SQUARE SOUTH between SULLIVAN STREET and THOMPSON STREET, WEST WASHINGTON PLACE between 6 AVENUE and WASHINGTON SQUARE WEST",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+654555,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 08:00:00 PM,06/09/2022 12:06:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+654552,Theater Load in and Load Outs,06/16/2022 12:01:00 AM,06/16/2022 11:59:00 PM,06/09/2022 12:04:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+654543,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 08:00:00 PM,06/09/2022 11:50:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 62 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10065
+654535,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 08:00:00 PM,06/09/2022 11:37:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 62 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10065
+654533,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 11:59:00 PM,06/09/2022 11:34:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",27 STREET between 4 AVENUE and 5 AVENUE,Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+654492,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 08:00:00 PM,06/09/2022 09:50:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 80 STREET, EAST 79 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+654483,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 10:00:00 PM,06/09/2022 09:19:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+654476,Shooting Permit,06/13/2022 10:00:00 AM,06/13/2022 08:00:00 PM,06/09/2022 08:53:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ALLEN STREET and ORCHARD STREET, EAST HOUSTON STREET between ORCHARD STREET and LUDLOW STREET, ALLEN STREET between EAST HOUSTON STREET and STANTON STREET, ORCHARD STREET between EAST HOUSTON STREET and STANTON STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10009"
+654457,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 08:00:00 PM,06/09/2022 05:31:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","DRIGGS AVENUE between NORTH 11 STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and UNION AVENUE",Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11211
+654448,Shooting Permit,06/13/2022 10:00:00 AM,06/13/2022 10:00:00 PM,06/09/2022 12:13:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",101 STREET between 4 AVENUE and JACKSON COURT,Brooklyn,"1, 10","68, 94",Television,Episodic series,United States of America,"11209, 11222"
+654444,Shooting Permit,06/15/2022 08:00:00 AM,06/16/2022 01:00:00 AM,06/08/2022 11:28:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BLEEKER STREET and EAST HOUSTON STREET, BOWERY between BLEEKER STREET and EAST HOUSTON STREET, EAST 2 STREET between 2 AVENUE and BOWERY, BLEEKER STREET between MULBERRY STREET and MOTT STREET, MOTT STREET between BLEEKER STREET and EAST HOUSTON STREET, ELIZABETH STREET between BLEEKER STREET and EAST HOUSTON STREET",Manhattan,"2, 3",9,Film,Feature,United States of America,"10003, 10012"
+654443,Shooting Permit,06/13/2022 12:00:00 PM,06/14/2022 03:00:00 AM,06/08/2022 11:23:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between EAST 21 STREET and FLATBUSH AVE, CORTELYOU ROAD between OCEAN AVENUE and EAST 21 STREET, FLATBUSH AVE between BEVERLEY ROAD and DURYEA PL, FLATBUSH AVE between CORTELYOU ROAD and BEVERLEY ROAD, TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, REGENT PLACE between EAST 21 STREET and FLATBUSH AVENUE, BEVERLEY ROAD between OCEAN AVENUE and FLATBUSH AVE, BEVERLEY ROAD between EAST 22 STREET and FLATBUSH AVE, EAST 22 STREET between CORTELYOU ROAD and BEVERLEY ROAD",Brooklyn,14,70,Television,Not Applicable,United States of America,11226
+654435,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 08:00:00 PM,06/08/2022 10:52:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMIT STREET between COLUMBIA STREET and HICKS STREET, HICKS STREET between CARROLL STREET and WOODHULL STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+654413,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 09:00:00 PM,06/08/2022 08:32:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+654408,Shooting Permit,06/14/2022 08:00:00 AM,06/14/2022 10:00:00 PM,06/08/2022 08:00:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between 44 STREET and 43 STREET, 7 AVENUE between 43 STREET and 42 STREET",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+654384,Theater Load in and Load Outs,06/17/2022 12:01:00 AM,06/17/2022 11:59:00 PM,06/08/2022 06:28:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+654354,Shooting Permit,06/13/2022 08:00:00 AM,06/13/2022 11:00:00 PM,06/08/2022 04:51:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+654323,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 11:00:00 PM,06/08/2022 03:48:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+654320,Shooting Permit,06/12/2022 06:00:00 AM,06/12/2022 08:00:00 PM,06/08/2022 03:40:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between WILLIAM STREET and HANOVER STREET, BEAVER STREET between HANOVER STREET and PEARL STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, HANOVER STREET between WALL STREET and BEAVER STREET, WALL STREET between WILLIAM STREET and WATER STREET, PEARL STREET between BEAVER STREET and HANOVER SQUARE, PINE STREET between WILLIAM STREET and NASSAU STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, WILLIAM STREET between WALL STREET and EXCHANGE PLACE, HANOVER SQUARE between WATER STREET and PEARL STREET, WATER STREET between HANOVER SQUARE and WALL STREET",Manhattan,"1, 3","1, 5",Commercial,Commercial,United States of America,"10004, 10005, 10007, 10038"
+654311,Shooting Permit,06/14/2022 10:00:00 AM,06/14/2022 11:59:00 PM,06/08/2022 03:10:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+654299,Theater Load in and Load Outs,06/17/2022 12:01:00 AM,06/17/2022 11:59:00 PM,06/08/2022 02:41:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+654297,Shooting Permit,06/25/2022 07:00:00 AM,06/25/2022 07:00:00 PM,06/08/2022 02:40:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 41 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10017
+654278,Shooting Permit,06/18/2022 07:00:00 AM,06/18/2022 07:00:00 PM,06/08/2022 02:00:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 41 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10017
+654275,Shooting Permit,06/13/2022 05:00:00 AM,06/13/2022 11:00:00 AM,06/08/2022 01:52:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+654261,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 11:00:00 PM,06/08/2022 01:23:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+654243,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 10:00:00 PM,06/08/2022 12:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE B and AVENUE C, AVENUE A between EAST 5 STREET and EAST 10 STREET, EAST 14 STREET between AVENUE C and FIRST AVENUE, EAST 9 STREET between AVENUE B and AVENUE C",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,10009
+654236,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 08:00:00 PM,06/08/2022 12:25:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 73 STREET and EAST 79 STREET, EAST 78 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 74 STREET and EAST 77 STREET, LEXINGTON AVENUE between EAST 77 STREET and EAST 78 STREET, LEXINGTON AVENUE between EAST 78 STREET and EAST 79 STREET, EAST 75 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10075"
+654231,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 08:00:00 PM,06/08/2022 12:11:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+654228,Shooting Permit,06/10/2022 07:00:00 AM,06/10/2022 10:00:00 PM,06/08/2022 11:55:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+654188,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 10:00:00 PM,06/08/2022 10:52:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 45 STREET, 2 AVENUE between EAST 45 STREET and EAST 46 STREET, 45 STREET between 2 AVENUE and 3 AVENUE",Brooklyn,"6, 7","17, 72",Commercial,Commercial,United States of America,"10017, 11220, 11232"
+654183,DCAS Prep/Shoot/Wrap Permit,06/13/2022 10:00:00 AM,06/13/2022 05:00:00 PM,06/08/2022 10:42:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between REMSEN STREET and JORALEMON STREET, REMSEN STREET between COURT STREET and CLINTON STREET, JORALEMON STREET between COURT STREET and CLINTON STREET, COURT STREET between JORALEMON STREET and LIVINGSTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+654180,Shooting Permit,06/12/2022 06:00:00 AM,06/12/2022 10:00:00 PM,06/08/2022 10:38:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 45 STREET, 2 AVENUE between 45 STREET and 46 STREET",Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+654164,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 10:00:00 PM,06/08/2022 09:32:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 28 STREET",Manhattan,4,10,Commercial,Commercial,United States of America,10001
+654152,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 11:59:00 PM,06/08/2022 08:21:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",27 STREET between 4 AVENUE and 5 AVENUE,Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+654144,Shooting Permit,06/12/2022 12:00:00 PM,06/14/2022 11:00:00 PM,06/08/2022 06:45:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Television,Morning Show,United States of America,10033
+654140,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 06:00:00 PM,06/08/2022 03:08:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, 5 AVENUE between EAST 73 STREET and EAST 72 STREET, 5 AVENUE between EAST 74 STREET and EAST 73 STREET",Manhattan,"4, 64, 8","18, 19, 22",Television,Reality,United States of America,"10019, 10021, 10023"
+654106,Shooting Permit,06/17/2022 06:00:00 AM,06/17/2022 03:00:00 PM,06/07/2022 09:17:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between HICKS STREET and COURT STREET,Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,11201
+654103,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 10:00:00 PM,06/07/2022 08:57:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST SIDE HIGHWAY between HARRISON STREET and NORTH MOORE STREET, HUBERT STREET between WEST SIDE HIGHWAY and GREENWICH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10013, 10281"
+654101,Shooting Permit,06/14/2022 01:00:00 PM,06/15/2022 03:00:00 AM,06/07/2022 08:08:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, HUDSON STREET between WEST 13 STREET and HORATIO STREET, GANSEVOORT STREET between WEST 13 STREET and HUDSON STREET, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, GANSEVOORT STREET between HUDSON STREET and GREENWICH STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+654100,Shooting Permit,06/10/2022 07:30:00 AM,06/10/2022 08:00:00 PM,06/07/2022 07:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between EAST HOUSTON STREET and RIVINGTON STREET, ORCHARD STREET between EAST HOUSTON STREET and STANTON STREET, LUDLOW STREET between EAST HOUSTON STREET and STANTON STREET, AVENUE A between EAST 1 STREET and EAST 4 STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, 1 AVENUE between EAST 1 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, EAST 4 STREET between AVENUE A and AVENUE B, EAST HOUSTON STREET between ORCHARD STREET and LUDLOW STREET, STANTON STREET between ALLEN STREET and ELDRIDGE STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10003, 10009"
+654079,Shooting Permit,06/09/2022 06:00:00 PM,06/11/2022 03:00:00 AM,06/07/2022 06:13:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE, WOODWARD AVENUE between METROPOLITAN AVENUE and FLUSHING AVENUE, HUNTER STREET between 43 AVENUE and 44 DRIVE, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, CRESCENT STREET between HUNTER STREET and 44 ROAD, 44 ROAD between 24 STREET and HUNTER STREET, CRESCENT STREET between 43 AVENUE and 44 ROAD, CRESCENT STREET between 42 ROAD and 43 AVENUE, 43 AVENUE between 24 STREET and CRESCENT STREET, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, 23 STREET between 44 DRIVE and 44 ROAD, 24 STREET between 44 ROAD and 43 AVENUE",Queens,"2, 5","104, 108",Television,Episodic series,United States of America,"11101, 11385"
+654056,Shooting Permit,06/10/2022 10:30:00 AM,06/11/2022 02:30:00 AM,06/07/2022 04:57:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, JACKSON STREET between MANHATTAN AVENUE and GRAHAM AVENUE, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between SKILLMAN AVENUE and CONSELYEA STREET, GRAHAM AVENUE between CONSELYEA STREET and METROPOLITAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, DRIGGS AVENUE between NORTH 12 STREET and UNION AVENUE, GRAHAM AVENUE between WITHERS STREET and FROST STREET, CENTER BOULEVARD between 46 AVENUE and 47 AVENUE, 47 AVENUE between CENTER BOULEVARD and 5 STREET, 5 STREET between 47 AVENUE and 47 ROAD, 47 ROAD between CENTER BOULEVARD and 5 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11109, 11211, 11222"
+654043,Shooting Permit,06/10/2022 07:00:00 AM,06/10/2022 10:00:00 PM,06/07/2022 04:07:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and WILSON AVENUE, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE, WILSON AVENUE between GEORGE STREET and MELROSE STREET, FLUSHING AVENUE between WILSON AVENUE and NOLL STREET, WILSON AVENUE between NOLL STREET and GEORGE STREET, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and DEAD END, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,"1, 4, 6","76, 83, 90",Television,Episodic series,United States of America,"11206, 11231, 11237"
+653971,Shooting Permit,06/16/2022 12:00:00 PM,06/17/2022 03:00:00 AM,06/07/2022 02:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+653969,Shooting Permit,06/10/2022 04:00:00 PM,06/11/2022 05:00:00 AM,06/07/2022 02:36:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between NOSTRAND AVENUE and BEDFORD AVENUE, NOSTRAND AVENUE between PACIFIC STREET and ATLANTIC AVENUE, NOSTRAND AVENUE between ATLANTIC AVENUE and HERKIMER STREET, LINCOLN PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between ST JOHNS PLACE and EASTERN PARKWAY, NOSTRAND AVENUE between PARK PLACE and ST JOHNS PLACE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE, NOSTRAND AVENUE between DEAN STREET and BERGEN STREET, NOSTRAND AVENUE between BERGEN STREET and ST MARKS AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11213, 11216, 11238"
+653967,Shooting Permit,06/19/2022 07:00:00 AM,06/19/2022 11:59:00 PM,06/07/2022 02:32:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653966,Shooting Permit,06/18/2022 07:00:00 AM,06/18/2022 11:59:00 PM,06/07/2022 02:32:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653965,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 11:59:00 PM,06/07/2022 02:32:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653961,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 11:59:00 PM,06/07/2022 02:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653962,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 11:59:00 PM,06/07/2022 02:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653963,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 11:59:00 PM,06/07/2022 02:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653964,Shooting Permit,06/16/2022 07:00:00 AM,06/16/2022 11:59:00 PM,06/07/2022 02:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Television,Special/Awards Show,United States of America,11217
+653954,Shooting Permit,06/15/2022 12:00:00 PM,06/16/2022 04:00:00 AM,06/07/2022 02:18:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+653941,Shooting Permit,06/14/2022 01:00:00 PM,06/15/2022 05:00:00 AM,06/07/2022 02:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+653935,Shooting Permit,06/17/2022 10:00:00 PM,06/18/2022 06:00:00 AM,06/07/2022 01:53:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET",Manhattan,5,14,Commercial,Commercial,United States of America,"10017, 10173"
+653932,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 09:00:00 PM,06/07/2022 01:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MUNDY LANE between NEREID AVENUE and PITMAN AVENUE, NEREID AVENUE between MONTICELLO AVENUE and MUNDY LANE, SETON AVENUE between NEREID AVENUE and EAST 241 STREET, MURDOCK AVENUE between NEREID AVENUE and PITMAN AVENUE, PITMAN AVENUE between MURDOCK AVENUE and HILL AVENUE",Bronx,12,47,Television,Cable-episodic,United States of America,10466
+653923,Shooting Permit,06/10/2022 06:00:00 AM,06/10/2022 11:00:00 PM,06/07/2022 01:37:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+653922,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 11:00:00 PM,06/07/2022 01:36:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,"18, 5","69, 75",Television,Episodic series,United States of America,"11207, 11236"
+653920,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 07:30:00 PM,06/07/2022 01:35:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+653919,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 11:00:00 PM,06/07/2022 01:34:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+653917,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 11:00:00 PM,06/07/2022 01:34:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+653916,Shooting Permit,06/10/2022 05:00:00 PM,06/11/2022 05:30:00 AM,06/07/2022 01:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between FRANKLIN STREET and MANHATTAN AVENUE, JAVA STREET between FRANKLIN STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between INDIA STREET and JAVA STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+653908,Shooting Permit,06/17/2022 12:00:00 AM,06/17/2022 01:00:00 PM,06/07/2022 01:12:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+653904,Shooting Permit,06/09/2022 06:00:00 AM,06/09/2022 11:00:00 PM,06/07/2022 01:08:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+653902,Shooting Permit,06/16/2022 09:00:00 AM,06/16/2022 11:59:00 PM,06/07/2022 01:05:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+653864,Shooting Permit,06/09/2022 11:30:00 PM,06/10/2022 11:59:00 PM,06/07/2022 12:07:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,WEB,Not Applicable,United States of America,10023
+653863,Shooting Permit,06/10/2022 08:00:00 AM,06/10/2022 11:59:00 PM,06/07/2022 12:04:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between ERICSSON PLACE and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, NORTH MOORE STREET between HUDSON STREET and VARICK STREET, NORTH MOORE STREET between GREENWICH STREET and HUDSON STREET, SULLIVAN STREET between WATTS STREET and BROOME STREET, GRAND STREET between 6 AVENUE and VARICK STREET, VARICK STREET between GRAND STREET and CANAL STREET, VARICK STREET between WATTS STREET and GRAND STREET, WATTS STREET between HUDSON STREET and VARICK STREET, WEST STREET between NORTH MOORE STREET and HUBERT STREET, HUBERT STREET between WEST STREET and GREENWICH STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+653816,Theater Load in and Load Outs,06/12/2022 12:01:00 AM,06/13/2022 05:00:00 AM,06/07/2022 10:44:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+653813,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 10:00:00 PM,06/07/2022 10:39:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+653807,Shooting Permit,06/09/2022 10:00:00 AM,06/10/2022 02:00:00 AM,06/07/2022 10:28:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 51 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,5,18,Still Photography,Not Applicable,United States of America,10022
+653799,Shooting Permit,06/09/2022 09:00:00 AM,06/09/2022 10:00:00 PM,06/07/2022 10:21:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+653790,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 08:00:00 PM,06/07/2022 09:59:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 21 STREET between 8 AVENUE and 7 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+653783,Theater Load in and Load Outs,06/10/2022 12:01:00 AM,06/11/2022 11:59:00 PM,06/07/2022 09:37:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+653779,Shooting Permit,06/10/2022 03:00:00 PM,06/11/2022 05:00:00 AM,06/07/2022 09:28:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE STREET between BUSHWICK AVENUE and WATERBURY STREET, MESEROLE STREET between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK PLACE between MESEROLE STREET and MONTROSE AVENUE, BUSHWICK AVENUE between STAGG STREET and SCHOLES STREET, BUSHWICK AVENUE between SCHOLES STREET and MESEROLE STREET, BUSHWICK AVENUE between MESEROLE STREET and MONTROSE AVENUE, MONTROSE AVENUE between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK AVENUE between MONTROSE AVENUE and JOHNSON AVENUE, BUSHWICK AVENUE between JOHNSON AVENUE and BOERUM STREET, BUSHWICK AVENUE between BOERUM STREET and MCKIBBIN STREET, MCKIBBIN STREET between BUSHWICK AVENUE and MCKIBBIN COURT",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+653777,Shooting Permit,06/15/2022 07:00:00 AM,06/15/2022 07:00:00 PM,06/07/2022 09:14:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",PLYMOUTH STREET between BRIDGE STREET and JAY STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+653774,Shooting Permit,06/09/2022 10:00:00 AM,06/10/2022 02:00:00 AM,06/07/2022 08:59:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between EAST 19 STREET and EAST 18 STREET, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11226
+653742,Shooting Permit,06/09/2022 12:00:00 PM,06/09/2022 11:00:00 PM,06/07/2022 02:35:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE U between BATCHELDER STREET and FORD STREET, WEST STREET between AVENUE U and VILLAGE ROAD NORTH",Brooklyn,15,61,Television,Episodic series,United States of America,"11223, 11229"
+653735,Shooting Permit,06/09/2022 02:00:00 PM,06/10/2022 03:00:00 AM,06/07/2022 12:44:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between PROSPECT PLACE and PARK PLACE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, STERLING PLACE between NOSTRAND AVENUE and ROGERS AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11216, 11238"
+653657,Shooting Permit,06/10/2022 06:00:00 AM,06/10/2022 06:00:00 PM,06/06/2022 05:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GRAHAM AVENUE and MANHATTAN AVENUE,Brooklyn,1,90,Film,Short,United States of America,11206
+653653,Theater Load in and Load Outs,06/19/2022 12:01:00 AM,06/20/2022 06:00:00 AM,06/06/2022 04:56:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+653643,Shooting Permit,06/12/2022 01:00:00 PM,06/12/2022 11:59:00 PM,06/06/2022 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 21 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, GRAMERCY PARK WEST between EAST 21 STREET and EAST 20 STREET, IRVING PLACE between EAST 20 STREET and EAST 18 STREET, EAST 19 STREET between IRVING PLACE and 3 AVENUE, IRVING PLACE between EAST 16 STREET and EAST 15 STREET",Manhattan,"5, 6",13,Commercial,Commercial,United States of America,"10003, 10010"
+653639,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 09:00:00 PM,06/06/2022 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST SIDE HIGHWAY between HARRISON STREET and NORTH MOORE STREET, HUBERT STREET between WEST SIDE HIGHWAY and GREENWICH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10013, 10281"
+653640,Shooting Permit,06/15/2022 06:00:00 AM,06/15/2022 09:00:00 PM,06/06/2022 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST SIDE HIGHWAY between HARRISON STREET and NORTH MOORE STREET, HUBERT STREET between WEST SIDE HIGHWAY and GREENWICH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10013, 10281"
+653641,Shooting Permit,06/16/2022 06:00:00 AM,06/16/2022 09:00:00 PM,06/06/2022 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST SIDE HIGHWAY between HARRISON STREET and NORTH MOORE STREET, HUBERT STREET between WEST SIDE HIGHWAY and GREENWICH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10013, 10281"
+653638,Shooting Permit,06/09/2022 03:00:00 PM,06/10/2022 03:00:00 AM,06/06/2022 04:37:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK PLACE between BEDFORD AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,Television,Pilot,United States of America,11216
+653632,Theater Load in and Load Outs,06/14/2022 12:01:00 AM,06/14/2022 11:59:00 PM,06/06/2022 04:25:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+653627,Shooting Permit,06/15/2022 09:00:00 AM,06/16/2022 01:00:00 AM,06/06/2022 04:13:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE, WEST 43 STREET between BROADWAY and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+653626,Theater Load in and Load Outs,06/10/2022 12:01:00 AM,06/11/2022 06:00:00 AM,06/06/2022 04:08:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+653616,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 09:00:00 PM,06/06/2022 03:46:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between HORATIO STREET and WEST 12 STREET, WEST STREET between WEST 12 STREET and BETHUNE STREET, WEST STREET between WEST 12 STREET and 10 AVENUE, HORATIO STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CHRISTOPHER STREET and PERRY STREET, CHARLES STREET between WEST STREET and WASHINGTON STREET, WEST STREET between CHARLES STREET and PERRY STREET, BANK STREET between WEST STREET and WASHINGTON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+653610,Shooting Permit,06/09/2022 05:00:00 AM,06/09/2022 07:00:00 PM,06/06/2022 03:38:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and RAILROAD AVENUE, REVIEW AVENUE between RAILROAD AVENUE and 37 STREET",Queens,"2, 5","104, 108",Television,Cable-episodic,United States of America,"11101, 11385"
+653584,Shooting Permit,06/08/2022 10:00:00 AM,06/08/2022 11:00:00 PM,06/06/2022 03:12:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",MERCER STREET between SPRING STREET and PRINCE STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+653569,Shooting Permit,06/14/2022 07:00:00 AM,06/14/2022 11:00:00 PM,06/06/2022 02:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+653563,Theater Load in and Load Outs,06/09/2022 12:01:00 AM,06/09/2022 11:59:00 PM,06/06/2022 02:41:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+653554,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 10:00:00 PM,06/06/2022 02:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+653535,Theater Load in and Load Outs,06/22/2022 06:00:00 AM,06/22/2022 11:59:00 PM,06/06/2022 02:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+653534,Theater Load in and Load Outs,06/21/2022 06:00:00 AM,06/21/2022 11:59:00 PM,06/06/2022 02:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+653533,Theater Load in and Load Outs,06/20/2022 06:00:00 AM,06/20/2022 11:59:00 PM,06/06/2022 02:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+653536,Theater Load in and Load Outs,06/23/2022 06:00:00 AM,06/23/2022 11:59:00 PM,06/06/2022 02:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET, ATLANTIC AVENUE between FLATBUSH AVENUE and 6 AVENUE, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE",Brooklyn,"2, 6","78, 84",Theater,Theater,United States of America,11217
+653507,Shooting Permit,06/10/2022 09:00:00 AM,06/11/2022 03:00:00 AM,06/06/2022 01:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between AINSLIE STREET and DEVOE STREET, DEVOE STREET between LORIMER STREET and LEONARD STREET, LEONARD STREET between DEVOE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11211
+653475,Shooting Permit,06/07/2022 05:00:00 AM,06/07/2022 10:00:00 AM,06/06/2022 12:34:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+653471,Shooting Permit,06/09/2022 12:00:00 PM,06/09/2022 06:00:00 PM,06/06/2022 12:31:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between BROADWAY and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+653431,Shooting Permit,06/14/2022 06:00:00 AM,06/14/2022 11:00:00 PM,06/06/2022 11:19:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+653429,Shooting Permit,06/13/2022 06:00:00 AM,06/13/2022 11:00:00 PM,06/06/2022 11:17:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+653417,Shooting Permit,06/10/2022 06:00:00 AM,06/11/2022 02:00:00 AM,06/06/2022 11:04:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between BEDFORD STREET and BARROW STREET, BEDFORD STREET between MORTON STREET and BARROW STREET, BARROW STREET between BEDFORD STREET and COMMERCE STREET, BARROW STREET between COMMERCE STREET and HUDSON STREET, HUDSON STREET between BARROW STREET and GROVE STREET, BARROW STREET between HUDSON STREET and WASHINGTON STREET, BLEEKER STREET between BARROW STREET and WEST 10 STREET, 7 AVENUE SOUTH between CLARKSON STREET and BARROW STREET, 7 AVENUE SOUTH between GROVE STREET and CHRISTOPHER STREET, BLEEKER STREET between MORTON STREET and CARMINE STREET, LEROY STREET between BEDFORD STREET and BLEEKER STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, 6 AVENUE between WEST 3 STREET and WEST 4 STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+653402,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 11:00:00 PM,06/06/2022 10:36:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between CATON AVENUE and ALBERMARLE ROAD, MCDONALD AVENUE between ALBERMARLE ROAD and CHURCH AVENUE, ALBERMARLE ROAD between MCDONALD AVENUE and EAST 2 STREET, CHURCH AVENUE between DAHILL ROAD and MCDONALD AVENUE, 14 AVENUE between 37 STREET and 36 STREET, CHURCH AVENUE between MCDONALD AVENUE and OCEAN PARKWAY, EAST 2 STREET between ALBERMARLE ROAD and CHURCH AVENUE, EAST 3 STREET between ALBERMARLE ROAD and CHURCH AVENUE, EAST 3 STREET between CHURCH AVENUE and BEVERLEY ROAD, BEVERLEY ROAD between CHURCH AVENUE and EAST 2 STREET",Brooklyn,12,66,Television,Episodic series,United States of America,11218
+653396,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 07:30:00 PM,06/06/2022 10:23:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",GATES AVENUE between GRAND AVENUE and ST JAMES PLACE,Brooklyn,"2, 3","79, 88",WEB,Not Applicable,United States of America,11238
+653390,Shooting Permit,06/09/2022 07:30:00 AM,06/09/2022 09:00:00 PM,06/06/2022 10:10:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between EAST HOUSTON STREET and RIVINGTON STREET, ORCHARD STREET between EAST HOUSTON STREET and STANTON STREET, LUDLOW STREET between EAST HOUSTON STREET and STANTON STREET, AVENUE A between EAST 1 STREET and EAST 4 STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, 1 AVENUE between EAST 1 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, EAST 4 STREET between AVENUE A and AVENUE B, EAST HOUSTON STREET between ORCHARD STREET and LUDLOW STREET, STANTON STREET between ALLEN STREET and ELDRIDGE STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10003, 10009"
+653374,Shooting Permit,06/08/2022 06:00:00 AM,06/08/2022 10:00:00 PM,06/06/2022 09:12:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+653373,Shooting Permit,06/07/2022 06:00:00 AM,06/07/2022 10:00:00 PM,06/06/2022 09:12:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+653371,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 12:00:00 PM,06/06/2022 09:09:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Morning Show,United States of America,10023
+653358,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 08:00:00 PM,06/06/2022 07:39:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 72 STREET and EAST 73 STREET, EAST 72 STREET between FIFTH AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 90 STREET and EAST 91 STREET, MADISON AVENUE between EAST 89 STREET and EAST 90 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10075, 10128"
+653354,Shooting Permit,06/09/2022 03:00:00 PM,06/10/2022 05:00:00 AM,06/06/2022 07:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK NORTH between DUKE ELLINGTON CIRCLE and LENOX AVENUE, CENTRAL PARK NORTH between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 110 STREET and WEST 111 STREET, LENOX AVENUE between WEST 111 STREET and WEST 112 STREET, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS CIRCLE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 110 STREET and WEST 111 STREET, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,"10, 64","22, 28",Television,Episodic series,United States of America,"10025, 10026"
+653345,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 07:30:00 PM,06/06/2022 12:58:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 11 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET",Manhattan,2,6,WEB,Not Applicable,United States of America,"10011, 10014"
+653338,Shooting Permit,06/09/2022 08:00:00 AM,06/09/2022 08:00:00 PM,06/05/2022 11:05:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between KENT STREET and GREENPOINT AVENUE, MANHATTAN AVENUE between JAVA STREET and KENT STREET, JAVA STREET between FRANKLIN STREET and MANHATTAN AVENUE",Brooklyn,1,94,Film,Feature,United States of America,11222
+653331,Shooting Permit,06/08/2022 11:00:00 AM,06/08/2022 11:00:00 PM,06/05/2022 10:00:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between AVENUE W and GRAVESEND NECK ROAD,Brooklyn,15,61,Television,Episodic series,United States of America,11223
+653311,Shooting Permit,06/08/2022 03:00:00 PM,06/09/2022 03:00:00 AM,06/05/2022 06:42:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and ROGERS AVENUE, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST MARKS AVENUE between NOSTRAND AVENUE and NEW YORK AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between PARK PLACE and STERLING PLACE, NOSTRAND AVENUE between BERGEN STREET and ST MARKS AVENUE, NOSTRAND AVENUE between ST MARKS AVENUE and PROSPECT PLACE, ST MARKS AVENUE between NOSTRAND AVENUE and ROGERS AVENUE, BERGEN STREET between NOSTRAND AVENUE and NEW YORK AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11216, 11238"
+653295,Shooting Permit,06/13/2022 07:00:00 AM,06/13/2022 09:00:00 PM,06/05/2022 03:26:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK PLACE between BEDFORD AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,Film,Short,United States of America,11216
+653294,Shooting Permit,06/11/2022 07:00:00 AM,06/11/2022 09:00:00 PM,06/05/2022 03:26:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAWRENCE STREET between MYRTLE AVENUE and WILLOUGHBY STREET,Brooklyn,2,84,Film,Short,United States of America,11201
+653253,Theater Load in and Load Outs,06/10/2022 12:01:00 AM,06/11/2022 06:00:00 AM,06/05/2022 09:11:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+653129,Shooting Permit,06/09/2022 09:00:00 AM,06/10/2022 01:00:00 AM,06/03/2022 04:58:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE, WEST 43 STREET between BROADWAY and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+653099,Shooting Permit,06/08/2022 03:00:00 PM,06/09/2022 03:00:00 AM,06/03/2022 03:56:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK PLACE between BEDFORD AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,Television,Pilot,United States of America,11216
+653088,Shooting Permit,06/08/2022 10:00:00 AM,06/08/2022 11:59:00 PM,06/03/2022 03:27:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between NORTH FIRST STREET and GRAND STREET, KENT AVENUE between NORTH FIRST STREET and GRAND STREET, NORTH FIRST STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between METROPOLITAN AVENUE and NORTH FIRST STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, GRAND STREET between KENT AVENUE and WYTHE AVENUE, SOUTH FIFTH STREET between KENT AVENUE and DRIGGS AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11211, 11249"
+653063,Theater Load in and Load Outs,06/08/2022 07:00:00 AM,06/08/2022 07:00:00 PM,06/03/2022 02:51:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+653062,Shooting Permit,06/10/2022 02:00:00 PM,06/11/2022 05:00:00 AM,06/03/2022 02:50:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116 STREET between ADAM CLAYTON POWELL JR BOULEVARD and 5 AVENUE, LENOX AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 118 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 119 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+653057,Shooting Permit,06/08/2022 12:00:00 PM,06/09/2022 04:00:00 AM,06/03/2022 02:46:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHERMAN AVENUE between SICKLES STREET and ACADEMY STREET, DYCKMAN STREET between BROADWAY and NAGLE AVENUE, BROADWAY between ARDEN STREET and SHERMAN AVENUE, BROADWAY between THAYER STREET and ARDEN STREET, ARDEN STREET between BROADWAY and DONGAN PLACE, ARDEN STREET between DONGAN PLACE and SHERMAN AVENUE",Manhattan,12,34,Television,Episodic series,United States of America,"10034, 10040"
+653055,Theater Load in and Load Outs,06/07/2022 07:00:00 AM,06/07/2022 07:00:00 PM,06/03/2022 02:43:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+653053,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 07:00:00 PM,06/03/2022 02:40:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+653046,Theater Load in and Load Outs,06/30/2022 06:00:00 AM,07/01/2022 01:00:00 PM,06/03/2022 02:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+653041,Theater Load in and Load Outs,06/28/2022 06:00:00 AM,06/29/2022 01:00:00 PM,06/03/2022 02:17:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+653037,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 08:00:00 PM,06/03/2022 02:12:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 4 STREET and CARMINE STREET, 6 AVENUE between WEST 4 STREET and CARMINE STREET, 6 AVENUE between WEST 4 STREET and WAVERLY PLACE, WAVERLY PLACE between 6 AVENUE and MACDOUGAL STREET, WASHINGTON SQUARE NORTH between MACDOUGAL STREET and 5 AVENUE, 6 AVENUE between CARMINE STREET and BLEECKER STREET, BLEECKER STREET between 6 AVENUE and MACDOUGAL STREET, BLEECKER STREET between LEROY STREET and CARMINE STREET, BLEECKER STREET between LEROY STREET and MORTON STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, 7 AVENUE SOUTH between BEDFORD STREET and CARMINE STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+653026,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 11:00:00 PM,06/03/2022 01:58:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+653014,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 07:45:00 PM,06/03/2022 01:42:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between YORK STREET and FRONT STREET,Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+653011,Shooting Permit,06/10/2022 07:00:00 AM,06/10/2022 07:00:00 PM,06/03/2022 01:36:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","20 AVENUE between 47 STREET and 48 STREET, 48 STREET between 20 AVENUE and 21 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+652992,Theater Load in and Load Outs,06/07/2022 12:01:00 AM,06/08/2022 06:00:00 AM,06/03/2022 01:12:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 40 STREET and WEST 42 STREET, WEST 40 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Theater,Theater,United States of America,"10018, 10036"
+652989,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 11:00:00 PM,06/03/2022 01:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between BOX STREET and ASH STREET, BOX STREET between MANHATTAN AVENUE and MCGUINESS BOULEVARD",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+652977,Shooting Permit,06/05/2022 04:00:00 AM,06/05/2022 11:00:00 AM,06/03/2022 12:57:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+652975,Shooting Permit,06/04/2022 04:00:00 AM,06/04/2022 11:00:00 AM,06/03/2022 12:54:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+652971,Shooting Permit,06/12/2022 06:00:00 AM,06/12/2022 09:00:00 PM,06/03/2022 12:51:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 4 STREET between WYTHE AVENUE and BERRY STREET,Brooklyn,1,94,WEB,Not Applicable,United States of America,11249
+652970,Shooting Permit,06/11/2022 06:00:00 AM,06/11/2022 09:00:00 PM,06/03/2022 12:51:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 25 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE,Manhattan,5,13,WEB,Not Applicable,United States of America,10010
+652961,Theater Load in and Load Outs,06/25/2022 05:30:00 AM,06/26/2022 01:00:00 PM,06/03/2022 12:33:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+652949,Theater Load in and Load Outs,06/21/2022 05:45:00 AM,06/23/2022 01:00:00 PM,06/03/2022 12:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+652946,Shooting Permit,06/09/2022 11:00:00 AM,06/10/2022 02:00:00 AM,06/03/2022 12:11:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 102 STREET and EAST 106 STREET, PARK AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 102 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 101 STREET and EAST 103 STREET, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 103 STREET and EAST 104 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+652938,Theater Load in and Load Outs,06/17/2022 06:00:00 AM,06/19/2022 05:30:00 AM,06/03/2022 12:00:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+652925,Theater Load in and Load Outs,06/07/2022 12:01:00 AM,06/08/2022 11:59:00 PM,06/03/2022 11:34:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+652909,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 10:00:00 PM,06/03/2022 10:56:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+652905,Theater Load in and Load Outs,06/06/2022 06:00:00 AM,06/09/2022 05:00:00 AM,06/03/2022 10:49:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+652900,Shooting Permit,06/08/2022 08:00:00 AM,06/08/2022 10:00:00 PM,06/03/2022 10:33:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 5 AVENUE and BROADWAY, EAST 18 STREET between 5 AVENUE and BROADWAY, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, WEST 21 STREET between 6 AVENUE and 5 AVENUE, WEST 21 STREET between 6 AVENUE and 7 AVENUE, 5 AVENUE between WEST 12 STREET and WEST 11 STREET, WEST 11 STREET between 5 AVENUE and 6 AVENUE, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 12 STREET between 6 AVENUE and 5 AVENUE, EAST 13 STREET between UNIVERSITY PLACE and BROADWAY, EAST 13 STREET between 4 AVENUE and BROADWAY, 4 AVENUE between EAST 13 STREET and EAST 11 STREET",Manhattan,"2, 3, 4, 5","13, 6, 9",Television,Cable-episodic,United States of America,"10003, 10010, 10011"
+652897,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 08:00:00 PM,06/03/2022 10:28:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",RICHMOND TERRACE between VAN PELT AVENUE and DE HART AVENUE,Staten Island,1,121,Still Photography,Not Applicable,United States of America,10303
+652889,Shooting Permit,06/08/2022 09:00:00 AM,06/09/2022 01:00:00 AM,06/03/2022 10:15:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARROW STREET between HUDSON STREET and BEDFORD STREET, COMMERCE STREET between BARROW STREET and BEDFORD STREET, BEDFORD STREET between GROVE STREET and MORTON STREET, BARROW STREET between BEDFORD STREET and 7 AVENUE SOUTH, BARROW STREET between WASHINGTON STREET and HUDSON STREET, HUDSON STREET between GROVE STREET and BARROW STREET, 7 AVENUE SOUTH between CLARKSON STREET and COMMERCE STREET, BLEECKER STREET between CHRISTOPHER STREET and 7 AVENUE SOUTH, VARICK STREET between WEST HOUSTON STREET and CARMINE STREET",Manhattan,2,6,Film,Feature,United States of America,10014
+652885,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 08:00:00 PM,06/03/2022 09:47:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 83 STREET between 5 AVENUE and MADISON AVENUE, EAST 84 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 84 STREET and EAST 87 STREET, MADISON AVENUE between EAST 72 STREET and EAST 77 STREET, 5 AVENUE between EAST 82 STREET and EAST 83 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10024, 10025, 10028, 10075"
+652879,Theater Load in and Load Outs,06/09/2022 12:01:00 AM,06/13/2022 06:00:00 AM,06/03/2022 09:26:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+652873,Shooting Permit,06/09/2022 08:00:00 AM,06/09/2022 07:00:00 PM,06/03/2022 09:02:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between SPRING STREET and RIVINGTON STREET,Manhattan,"2, 3, 5","10, 13, 5, 6",Still Photography,Not Applicable,United States of America,"10001, 10002, 10012, 10014"
+652857,Shooting Permit,06/08/2022 01:30:00 PM,06/09/2022 03:30:00 AM,06/03/2022 08:13:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIVISION AVENUE between WYTHE AVENUE and BEDFORD AVENUE, WYTHE AVENUE between SOUTH 11 STREET and DIVISION AVENUE, WYTHE AVENUE between DIVISION AVENUE and CLYMER STREET, DIVISION AVENUE between KENT AVENUE and WYTHE AVENUE, DIVISION AVENUE between KENT AVENUE and DEAD END, COLUMBIA STREET between DEGRAW STREET and CONGRESS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and JOHNSON STREET",Brooklyn,"1, 2, 6","76, 84, 88, 90",Television,Episodic series,United States of America,"11201, 11231, 11249"
+652849,Shooting Permit,06/07/2022 04:00:00 PM,06/08/2022 06:00:00 AM,06/03/2022 03:36:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE, MYRTLE AVENUE between NORTH PORTLAND AVENUE and WASHINGTON PARK, MYRTLE AVENUE between WASHINGTON AVENUE and CLERMONT AVENUE, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, MYRTLE AVENUE between ASHLAND PLACE and FLEET PLACE, MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE, CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Television,Not Applicable,United States of America,"11201, 11205, 11238"
+652839,Shooting Permit,06/08/2022 08:00:00 AM,06/08/2022 10:00:00 PM,06/02/2022 11:38:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+652832,Shooting Permit,06/10/2022 07:00:00 AM,06/10/2022 05:00:00 PM,06/02/2022 11:06:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WOOSTER STREET between BROOME STREET and SPRING STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+652815,Shooting Permit,06/03/2022 12:00:00 PM,06/04/2022 03:00:00 AM,06/02/2022 08:49:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between STERLING PLACE and PARK PLACE, FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and ROGERS AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11216, 11238"
+652667,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 09:00:00 PM,06/02/2022 02:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between BROADWAY and CHURCH STREET, MURRAY STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between MURRAY STREET and PARK PLACE",Manhattan,1,1,Commercial,Commercial,United States of America,10007
+652653,Shooting Permit,06/03/2022 07:00:00 PM,06/04/2022 06:00:00 AM,06/02/2022 01:45:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAPLE STREET between JAY STREET and HARRISON STREET, JAY STREET between GREENWICH STREET and HUDSON STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between READE STREET and NORTH MOORE STREET, WORTH STREET between HUDSON STREET and BROADWAY, WEST BROADWAY between THOMAS STREET and WORTH STREET, CHURCH STREET between WORTH STREET and LEONARD STREET, LEONARD STREET between WEST BROADWAY and CHURCH STREET, GREENWICH STREET between DUANE STREET and HARRISON STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+652651,Theater Load in and Load Outs,06/05/2022 12:01:00 AM,06/07/2022 06:00:00 AM,06/02/2022 01:43:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+652642,Shooting Permit,06/07/2022 03:00:00 PM,06/08/2022 01:00:00 AM,06/02/2022 01:35:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR STREET between IRVING AVENUE and WYCKOFF AVENUE, STARR STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WYCKOFF AVENUE between STARR STREET and WILLOUGHBY AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and HART STREET, WILLOUGHBY AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET",Brooklyn,4,83,Television,Episodic series,United States of America,11237
+652607,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 09:00:00 PM,06/02/2022 12:45:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between BROOME STREET and KENMARE STREET, BOWERY between KENMARE STREET and SPRING STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET, DELANCEY STREET between ELDRIDGE STREET and ALLEN STREET, MOTT STREET between PRINCE STREET and SPRING STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+652591,Theater Load in and Load Outs,06/07/2022 12:01:00 AM,06/08/2022 11:59:00 PM,06/02/2022 12:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+652590,Shooting Permit,06/08/2022 06:00:00 AM,06/08/2022 10:00:00 PM,06/02/2022 12:26:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 18 STREET and EAST 17 STREET",Brooklyn,14,70,Film,Feature,United States of America,11226
+652579,Shooting Permit,06/07/2022 06:00:00 AM,06/07/2022 10:00:00 PM,06/02/2022 12:10:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 18 STREET and EAST 17 STREET",Brooklyn,14,70,Film,Feature,United States of America,11226
+652576,Shooting Permit,06/02/2022 12:00:00 PM,06/03/2022 04:00:00 AM,06/02/2022 12:05:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between BERGEN STREET and PROSPECT PLACE, ST MARKS AVENUE between NOSTRAND AVENUE and ROGERS AVENUE, ST MARKS AVENUE between NOSTRAND AVENUE and NEW YORK AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11216, 11238"
+652567,Shooting Permit,06/08/2022 06:00:00 AM,06/08/2022 08:00:00 PM,06/02/2022 11:58:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 43 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+652566,Shooting Permit,06/08/2022 06:30:00 AM,06/08/2022 10:00:00 PM,06/02/2022 11:57:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEVOE STREET between CATHERINE STREET and MORGAN AVENUE, GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11211
+652550,Theater Load in and Load Outs,06/05/2022 12:01:00 AM,06/06/2022 06:00:00 AM,06/02/2022 11:28:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+652544,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 08:00:00 PM,06/02/2022 11:20:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between MURRAY STREET and PARK PLACE",Manhattan,1,1,Commercial,Commercial,United States of America,10007
+652538,Shooting Permit,06/08/2022 11:00:00 AM,06/08/2022 07:00:00 PM,06/02/2022 11:13:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 8 STREET between ROEBLING STREET and BROADWAY,Brooklyn,1,"114, 90",Still Photography,Not Applicable,United States of America,"11105, 11211"
+652528,Shooting Permit,06/10/2022 06:00:00 AM,06/10/2022 11:00:00 PM,06/02/2022 10:50:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Commercial,Commercial,United States of America,10003
+652526,Shooting Permit,06/09/2022 06:00:00 AM,06/09/2022 11:00:00 PM,06/02/2022 10:47:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Commercial,Commercial,United States of America,10003
+652509,Shooting Permit,06/06/2022 09:00:00 AM,06/06/2022 06:00:00 PM,06/02/2022 10:28:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 37 STREET and WEST 38 STREET, 8 AVENUE between WEST 28 STREET and WEST 31 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 36 STREET, WEST 31 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Television,Episodic series,United States of America,"10001, 10018"
+652507,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 08:00:00 PM,06/02/2022 10:27:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","6TH AVE between HOUSTON ST and BLEECKER ST, GREENWICH STREET between BETHUNE STREET and BANK STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET",Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10012, 10014"
+652497,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 11:00:00 PM,06/02/2022 10:10:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+652496,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 07:00:00 PM,06/02/2022 10:09:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MASPETH AVENUE between OLIVE STREET and DEBEVOISE AVENUE, OLIVE STREET between MASPETH AVENUE and ORIENT AVENUE, ORIENT AVENUE between METROPOLITAN AVENUE and OLIVE STREET",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,11211
+652495,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 11:00:00 PM,06/02/2022 10:09:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 12 STREET and 22 STREET, 13 STREET between QUEENS PLAZA SOUTH and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+652494,Shooting Permit,06/07/2022 10:00:00 AM,06/07/2022 05:00:00 PM,06/02/2022 10:09:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 59 STREET,Manhattan,5,18,Film,Feature,United States of America,10019
+652488,Shooting Permit,06/03/2022 06:00:00 AM,06/03/2022 07:00:00 PM,06/02/2022 10:04:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 54 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Still Photography,Not Applicable,United States of America,10019
+652457,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 10:00:00 PM,06/02/2022 09:08:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 18 STREET and EAST 17 STREET",Brooklyn,14,70,Film,Feature,United States of America,11226
+652454,Shooting Permit,06/07/2022 10:00:00 AM,06/07/2022 11:59:00 PM,06/02/2022 08:58:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between BOWERY and 2 AVENUE, EAST 5 STREET between COOPER SQUARE and 2 AVENUE, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET, COOPER SQUARE between EAST 5 STREET and EAST 6 STREET, COOPER SQUARE between EAST 6 STREET and EAST 7 STREET, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, BOWERY between PRINCE STREET and SPRING STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012"
+652440,Theater Load in and Load Outs,06/08/2022 12:01:00 AM,06/09/2022 06:00:00 AM,06/02/2022 08:04:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+652434,Theater Load in and Load Outs,06/03/2022 12:01:00 AM,06/16/2022 11:59:00 PM,06/02/2022 07:30:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+652408,Shooting Permit,06/12/2022 07:00:00 AM,06/12/2022 11:59:00 PM,06/01/2022 11:19:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between WHITE STREET and WALKER STREET,Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+652404,Shooting Permit,06/06/2022 12:00:00 PM,06/07/2022 04:00:00 AM,06/01/2022 11:06:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","VINE STREET between MCKENNY STREET and COLUMBIA HEIGHTS, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, OLD FULTON STREET between EVERIT STREET and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, WASHINGTON ST between PROSPECT STREET and YORK STREET, WASHINGTON STREET between YORK STREET and FRONT STREET, WATER STREET between NEW DOCK STREET and MAIN STREET",Brooklyn,2,84,Television,Not Applicable,United States of America,11201
+652386,Shooting Permit,06/08/2022 06:00:00 AM,06/08/2022 11:00:00 PM,06/01/2022 09:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Commercial,Commercial,United States of America,10003
+652365,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 09:00:00 PM,06/01/2022 08:38:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between LOCUST AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+652329,Shooting Permit,06/08/2022 06:00:00 AM,06/08/2022 10:00:00 PM,06/01/2022 06:02:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between CORTLANDT ALLEY and LAFAYETTE STREET, WHITE STREET between CORTLANDT ALLEY and BROADWAY, BROADWAY between WHITE STREET and FRANKLIN STREET, BROADWAY between WHITE STREET and WALKER STREET, 9 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 47 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"1, 4","1, 18, 5",WEB,Not Applicable,United States of America,"10013, 10036"
+652325,Shooting Permit,06/05/2022 07:00:00 AM,06/05/2022 06:00:00 PM,06/01/2022 05:39:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 65 STREET between 5 AVENUE and PARK AVENUE,Manhattan,8,19,Television,News,United States of America,10065
+652315,Shooting Permit,06/04/2022 06:00:00 AM,06/05/2022 02:00:00 AM,06/01/2022 05:24:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET, 35 AVENUE between 36 STREET and 37 STREET, 35 STREET between 34 AVENUE and 35 AVENUE",Queens,"1, 11","114, 25",Film,Feature,United States of America,"10035, 11101, 11106"
+652282,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 10:00:00 PM,06/01/2022 04:33:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between JERSEY STREET and PRINCE STREET,Manhattan,"2, 3","5, 7",Still Photography,Not Applicable,United States of America,"10002, 10012"
+652254,Theater Load in and Load Outs,06/06/2022 12:01:00 AM,06/06/2022 11:59:00 PM,06/01/2022 03:55:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,20,Theater,Theater,United States of America,10023
+652238,Theater Load in and Load Outs,06/07/2022 12:01:00 AM,06/07/2022 11:59:00 PM,06/01/2022 03:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+652236,Shooting Permit,06/17/2022 07:00:00 AM,06/17/2022 07:00:00 PM,06/01/2022 03:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 12 AVENUE and 11 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10001
+652234,Shooting Permit,06/02/2022 11:00:00 AM,06/02/2022 11:00:00 PM,06/01/2022 03:20:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 37 STREET between 34 AVENUE and 35 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11106"
+652230,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 07:00:00 PM,06/01/2022 03:18:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 17 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+652229,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 07:00:00 PM,06/01/2022 03:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 17 STREET between 9 AVENUE and 10 AVENUE,Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,"10011, 10014"
+652225,Shooting Permit,06/07/2022 08:00:00 AM,06/07/2022 08:00:00 PM,06/01/2022 03:13:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between SPRING STREET and BROOME STREET,Manhattan,2,1,Still Photography,Not Applicable,United States of America,"10012, 10013"
+652223,Shooting Permit,06/02/2022 01:00:00 AM,06/03/2022 01:00:00 AM,06/01/2022 03:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between READE STREET and NORTH MOORE STREET, LEONARD STREET between WEST BROADWAY and CHURCH STREET, WORTH STREET between HUDSON STREET and BROADWAY, WEST BROADWAY between THOMAS STREET and WORTH STREET, CHURCH STREET between WORTH STREET and LEONARD STREET, GREENWICH STREET between DUANE STREET and HARRISON STREET, JAY STREET between GREENWICH STREET and HUDSON STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, STAPLE STREET between JAY STREET and HARRISON STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+652221,Shooting Permit,06/06/2022 08:00:00 AM,06/06/2022 08:00:00 PM,06/01/2022 03:04:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",JAMAICA AVENUE between WARWICK STREET and RIDGEWOOD AVENUE,Brooklyn,5,75,Still Photography,Not Applicable,United States of America,11207
+652212,Theater Load in and Load Outs,06/03/2022 12:01:00 AM,06/04/2022 06:00:00 AM,06/01/2022 02:54:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+652174,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 10:00:00 PM,06/01/2022 02:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","145 PLACE between 13 AVENUE and 14 AVENUE, 14 AVENUE between PARSONS BOULEVARD and 146 PLACE, 13 AVENUE between 145 PLACE and 146 STREET, 144 PLACE between 14 AVENUE and 145 PLACE",Queens,7,109,Television,Cable-episodic,United States of America,"11357, 11359"
+652166,Shooting Permit,06/07/2022 10:30:00 AM,06/08/2022 01:00:00 AM,06/01/2022 02:04:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCUS GARVEY BOULEVARD between PARK AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between THROOP AVENUE and LEWIS AVENUE, DITMARS STREET between MYRTLE AVENUE and BROADWAY, MYRTLE AVENUE between JEFFERSON STREET and TROUTMAN STREET, MYRTLE AVENUE between TROUTMAN STREET and DITMARS STREET, BROADWAY between MYRTLE AVENUE and DITMARS STREET, JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE, TROUTMAN STREET between BUSHWICK AVENUE and EVERGREEN AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE",Brooklyn,"3, 4","79, 81, 83",Television,Episodic series,United States of America,"11206, 11221"
+652159,Shooting Permit,06/04/2022 07:00:00 AM,06/04/2022 09:00:00 PM,06/01/2022 02:01:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,13,Film,Feature,United States of America,10011
+652136,Shooting Permit,06/04/2022 07:00:00 AM,06/04/2022 09:00:00 PM,06/01/2022 01:43:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between BEARD STREET and VAN DYKE STREET, BEARD STREET between VAN BRUNT STREET and CONOVER STREET, COFFEY STREET between CONOVER STREET and FERRIS STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+652126,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 05:00:00 PM,06/01/2022 01:28:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUMONT AVENUE between BRISTOL STREET and CHESTER STREET,Brooklyn,16,73,Still Photography,Not Applicable,United States of America,11212
+652117,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 09:00:00 PM,06/01/2022 01:14:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 63 STREET and WEST 65 STREET, WEST 64 STREET between CENTRAL PARK WEST and BROADWAY, BROADWAY between WEST 62 STREET and WEST 64 STREET, WEST 62 STREET between CENTRAL PARK WEST and BROADWAY, WEST 63 STREET between CENTRAL PARK WEST and BROADWAY, CENTRAL PARK WEST between WEST 66 STREET and WEST 68 STREET, WEST 67 STREET between CENTRAL PARK WEST and BROADWAY, WEST 68 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 69 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 66 STREET and WEST 70 STREET, WEST 66 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 66 STREET and WEST 69 STREET, WEST 68 STREET between BROADWAY and AMSTERDAM AVENUE, CENTRAL PARK WEST between WEST 75 STREET and WEST 76 STREET",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10023
+652074,Shooting Permit,06/06/2022 08:00:00 AM,06/06/2022 11:00:00 PM,06/01/2022 12:26:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+652015,Shooting Permit,06/03/2022 06:00:00 AM,06/03/2022 10:00:00 PM,06/01/2022 11:31:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between OCEAN AVENUE and EAST 17 STREET, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11226
+652009,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 07:00:00 PM,06/01/2022 11:24:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",MOTT STREET between PRINCE STREET and SPRING STREET,Manhattan,2,5,Still Photography,Not Applicable,United States of America,10012
+651976,Shooting Permit,06/08/2022 07:00:00 AM,06/08/2022 07:00:00 PM,06/01/2022 10:53:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH,Queens,"1, 2","108, 114",Commercial,Commercial,United States of America,11101
+651969,Theater Load in and Load Outs,06/23/2022 12:01:00 AM,06/24/2022 12:30:00 AM,06/01/2022 10:44:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+651957,Shooting Permit,06/06/2022 09:00:00 AM,06/07/2022 02:00:00 AM,06/01/2022 10:35:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between TROUTMAN STREET and STOCKHOLM STREET, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, HART STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, IRVING AVENUE between SUYDAM STREET and HART STREET, IRVING AVENUE between HART STREET and DEKALB AVENUE, JEFFERSON STREET between IRVING AVENUE and WYCKOFF AVENUE, THAMES STREET between VARICK AVENUE and PORTER AVENUE, SUYDAM STREET between KNICKERBOCKER AVENUE and IRVING AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+651849,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 08:00:00 PM,06/01/2022 08:09:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 5 AVENUE and 6 AVENUE, EAST 40 STREET between 5 AVENUE and MADISON AVENUE, EAST 41 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WHITEHALL STREET between STATE STREET and SOUTH STREET, WATER STREET between WHITEHALL STREET and BROAD STREET, WATER STREET between BROAD STREET and COENTIES SLIP, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between SOUTH STREET and WATER STREET, WATER STREET between OLD SLIP and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and WALL STREET, SOUTH STREET between WHITEHALL STREET and BROAD STREET",Manhattan,"1, 5","1, 14",Television,Episodic series,United States of America,"10004, 10005, 10016, 10017, 10018"
+651821,Shooting Permit,06/06/2022 10:00:00 AM,06/06/2022 10:00:00 PM,06/01/2022 07:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD EAST, WEST STREET between VILLAGE ROAD EAST and GRAVESEND NECK ROAD EAST",Brooklyn,15,61,Television,Episodic series,United States of America,11223
+651768,Shooting Permit,06/03/2022 02:00:00 PM,06/04/2022 04:30:00 AM,06/01/2022 01:51:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and ROGERS AVENUE, STERLING PLACE between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between STERLING PLACE and PARK PLACE, NOSTRAND AVENUE between STERLING PLACE and ST JOHNS PLACE, FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE",Brooklyn,"2, 3, 8","77, 79, 88",Television,Not Applicable,United States of America,"11216, 11238"
+651588,Shooting Permit,06/07/2022 07:00:00 AM,06/07/2022 10:00:00 PM,05/31/2022 10:19:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 73 STREET and EAST 74 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10075"
+651571,Shooting Permit,06/03/2022 06:00:00 AM,06/03/2022 11:00:00 PM,05/31/2022 08:51:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+651570,Shooting Permit,06/05/2022 06:00:00 AM,06/06/2022 02:00:00 AM,05/31/2022 08:51:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 37 STREET, 34 AVENUE between 32 STREET and 33 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 34 AVENUE between 33 STREET and 35 STREET, 34 AVENUE between 31 STREET and 32 STREET, 32 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+651537,Shooting Permit,06/02/2022 02:00:00 PM,06/03/2022 05:00:00 AM,05/31/2022 05:24:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+651519,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 10:00:00 PM,05/31/2022 04:25:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 23 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 25 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 20 STREET between BROADWAY and 5 AVENUE, WEST 20 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 20 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010, 10011"
+651511,Shooting Permit,06/07/2022 05:00:00 AM,06/07/2022 11:00:00 PM,05/31/2022 03:51:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST HOUSTON STREET between THOMPSON STREET and SULLIVAN STREET,Manhattan,2,"1, 6",Still Photography,Not Applicable,United States of America,10012
+651509,Theater Load in and Load Outs,06/04/2022 06:00:00 AM,06/05/2022 11:00:00 AM,05/31/2022 03:48:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+651479,Theater Load in and Load Outs,06/03/2022 05:45:00 AM,06/04/2022 05:45:00 PM,05/31/2022 03:01:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+651476,Theater Load in and Load Outs,06/02/2022 06:00:00 AM,06/03/2022 05:30:00 AM,05/31/2022 02:53:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+651474,Shooting Permit,06/08/2022 10:00:00 AM,06/09/2022 02:00:00 AM,05/31/2022 02:46:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 12 STREET and 22 STREET, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+651473,Shooting Permit,06/06/2022 07:00:00 AM,06/06/2022 10:00:00 PM,05/31/2022 02:44:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, 47 AVENUE between 31 STREET and 31 PLACE, 47 AVENUE between 31 PLACE and VAN DAM STREET, 31 STREET between THOMSON AVENUE and 47 AVENUE, THOMSON AVENUE between 30 PLACE and 31 STREET, THOMSON AVENUE between 31 STREET and VAN DAM STREET, VAM DAM STREET between THOMSON AVENUE and 47TH AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+651449,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 06:00:00 PM,05/31/2022 02:10:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between 6 AVENUE and 5 AVENUE,Manhattan,2,"6, 9",Still Photography,Not Applicable,United States of America,"10003, 10011, 10014"
+651436,Shooting Permit,06/07/2022 08:00:00 AM,06/08/2022 12:30:00 AM,05/31/2022 01:46:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between WILSON AVENUE and EVERGREEN AVENUE, CENTRAL AVENUE between MELROSE STREET and TROUTMAN STREET, WILSON AVENUE between GEORGE STREET and JEFFERSON STREET, WILSON AVENUE between NOLL STREET and GEORGE STREET, GEORGE STREET between WILSON AVENUE and CENTRAL AVENUE",Brooklyn,4,83,Television,Episodic series,United States of America,"11206, 11237"
+651435,Shooting Permit,06/03/2022 05:00:00 PM,06/04/2022 09:00:00 PM,05/31/2022 01:41:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between WILLOUGHBY AVENUE and MYRTLE AVENUE, DEKALB AVENUE between CLINTON AVENUE and WAVERLY AVENUE, DEKALB AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+651426,Shooting Permit,06/03/2022 12:00:00 PM,06/03/2022 11:59:00 PM,05/31/2022 01:29:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between UNDERHILL AVENUE and WASHINGTON AVENUE, LINCOLN PLACE between UNDERHILL AVENUE and WASHINGTON AVENUE, UNDERHILL AVENUE between LINCOLN PLACE and ST JOHNS PLACE, ST JOHNS PLACE between UNDERHILL AVENUE and WASHINGTON AVENUE, STERLING PLACE between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,"55, 8","77, 78",Television,Cable-episodic,United States of America,11238
+651411,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 12:00:00 PM,05/31/2022 01:01:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Morning Show,United States of America,10023
+651395,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 10:00:00 PM,05/31/2022 12:38:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 11 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET",Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11249
+651388,Shooting Permit,06/04/2022 06:00:00 AM,06/04/2022 06:00:00 PM,05/31/2022 12:30:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between BROOME STREET and GRAND STREET, CHRYSTIE STREET between BROOME STREET and DELANCEY STREET, ORCHARD STREET between HESTER STREET and CANAL STREET, ALLEN STREET between HESTER STREET and GRAND STREET",Manhattan,3,"5, 7",Still Photography,Not Applicable,United States of America,10002
+651321,Shooting Permit,06/07/2022 06:00:00 AM,06/07/2022 10:00:00 PM,05/31/2022 10:33:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE B and AVENUE C, AVENUE A between EAST 5 STREET and EAST 10 STREET, EAST 14 STREET between AVENUE C and FIRST AVENUE",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,10009
+651320,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 10:00:00 PM,05/31/2022 10:32:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between EIGHTH AVENUE and NINTH AVENUE, EIGHTH AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 45 STREET between EIGHTH AVENUE and ELEVENTH AVENUE, TENTH AVENUE between WEST 45 STREET and WEST 46 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+651313,Rigging Permit,06/01/2022 07:00:00 AM,06/01/2022 07:00:00 PM,05/31/2022 10:24:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between DUANE STREET and HARRISON STREET, HUDSON STREET between HARRISON STREET and FRANKLIN STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+651292,Theater Load in and Load Outs,06/03/2022 07:00:00 AM,06/03/2022 07:00:00 PM,05/31/2022 09:20:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+651286,Theater Load in and Load Outs,06/14/2022 12:01:00 AM,06/15/2022 11:59:00 PM,05/31/2022 08:45:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+651283,Shooting Permit,06/04/2022 07:00:00 AM,06/04/2022 09:00:00 PM,05/31/2022 08:02:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",LINDEN STREET between MYRTLE AVENUE and WYCKOFF AVENUE,Brooklyn,4,83,Film,Short,United States of America,11237
+651278,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 07:00:00 PM,05/31/2022 06:33:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLY ROAD,Brooklyn,14,70,Still Photography,Not Applicable,United States of America,"11218, 11226"
+651258,Shooting Permit,06/03/2022 09:00:00 AM,06/03/2022 09:00:00 PM,05/30/2022 10:32:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",STILLWELL AVENUE between 86 STREET and 85 STREET,Brooklyn,"11, 15","61, 62",Television,Episodic series,United States of America,"11223, 11235"
+651257,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 09:00:00 PM,05/30/2022 10:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between HESTER STREET and CANAL STREET, BOWERY between HESTER STREET and GRAND STREET, BOWERY between GRAND STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, DELANCEY STREET between CHRYSTIE STREET and FORSYTH STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, GRAND STREET between CHRYSTIE STREET and BOWERY, GRAND STREET between CHRYSTIE STREET and FORSYTH STREET, BOWERY between DELANCEY STREET and BROOME STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+651254,Shooting Permit,06/02/2022 09:00:00 AM,06/02/2022 09:00:00 PM,05/30/2022 09:31:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","RALPH AVENUE between AVENUE N and AVE M, AVENUE N between RALPH AVENUE and EAST 59 STREET, AVENUE N between EAST 63 STREET and EAST 64 STREET",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+651204,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 09:00:00 PM,05/30/2022 12:02:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",LINDEN STREET between MYRTLE AVENUE and WYCKOFF AVENUE,Brooklyn,4,83,Film,Short,United States of America,11237
+651203,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 09:00:00 PM,05/30/2022 11:53:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",LINDEN STREET between MYRTLE AVENUE and WYCKOFF AVENUE,Brooklyn,4,83,Film,Short,United States of America,11237
+651009,Shooting Permit,06/01/2022 07:00:00 AM,06/01/2022 09:00:00 PM,05/27/2022 04:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between PARK HILL AVENUE and VANDERBILT AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+650995,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 05:00:00 PM,05/27/2022 03:43:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUMONT AVENUE between BRISTOL STREET and CHESTER STREET,Brooklyn,16,73,Still Photography,Not Applicable,United States of America,11212
+650982,Shooting Permit,06/02/2022 12:30:00 PM,06/03/2022 02:30:00 AM,05/27/2022 02:42:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between BEACH STREET and CHURCH STREET, 6 AVENUE between WALKER STREET and FRANKLIN STREET, CHURCH STREET between WALKER STREET and WHITE STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and CANAL STREET, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, VARICK STREET between BEACH STREET and LAIGHT STREET",Manhattan,"1, 2","1, 6",Television,Episodic series,United States of America,"10013, 10014, 10282"
+650973,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 08:30:00 PM,05/27/2022 02:22:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 59 STREET and EAST 58 STREET, LEXINGTON AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 76 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 64, 7, 8","18, 19, 20, 22",Television,Episodic series,United States of America,"10021, 10022, 10023, 10075"
+650958,Shooting Permit,06/07/2022 06:00:00 AM,06/07/2022 10:00:00 PM,05/27/2022 01:36:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",MENAHAN STREET between IRVING AVENUE and MYRTLE AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11237
+650944,Shooting Permit,06/04/2022 08:00:00 AM,06/04/2022 11:00:00 PM,05/27/2022 12:57:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+650941,Shooting Permit,06/03/2022 08:00:00 AM,06/03/2022 10:00:00 PM,05/27/2022 12:50:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+650938,Shooting Permit,06/02/2022 07:30:00 AM,06/02/2022 10:30:00 PM,05/27/2022 12:44:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+650934,Shooting Permit,06/02/2022 06:00:00 AM,06/02/2022 11:00:00 PM,05/27/2022 12:39:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+650931,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 09:00:00 PM,05/27/2022 12:31:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, LOCUST AVENUE between EAST 138 STREET and EAST 139 STREET, EAST 141 STREET between LOCUST AVENUE and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+650925,Shooting Permit,06/01/2022 08:00:00 AM,06/01/2022 11:00:00 PM,05/27/2022 12:24:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+650911,Shooting Permit,05/31/2022 07:00:00 PM,06/01/2022 06:00:00 AM,05/27/2022 11:49:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between RIVINGTON STREET and EAST HOUSTON STREET, BOWERY between DELANCEY STREET and RIVINGTON STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, RIVINGTON STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between RIVINGTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between BOWERY and CHRYSTIE STREET, PRINCE STREET between BOWERY and MOTT STREET, ELIZABETH STREET between PRINCE STREET and EAST HOUSTON STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, BOWERY between EAST HOUSTON STREET and BLEEKER STREET, LAFAYETTE STREET between EAST HOUSTON STREET and EAST FOURTH STREET, BLEEKER STREET between MULBERRY STREET and MOTT STREET, BOND STREET between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012"
+650903,Shooting Permit,06/03/2022 07:00:00 AM,06/03/2022 10:00:00 PM,05/27/2022 11:34:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","42 STREET between 43 AVENUE and QUEENS BOULEVARD, 42 STREET between SKILLMAN AVENUE and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and QUEENS BOULEVARD, 145 PLACE between 13 AVENUE and 14 AVENUE, 14 AVENUE between PARSONS BOULEVARD and 146 PLACE, 13 AVENUE between 145 PLACE and 146 STREET, 144 PLACE between 14 AVENUE and 145 PLACE",Queens,"2, 7","108, 109",Television,Cable-episodic,United States of America,"11104, 11357, 11359"
+650895,Shooting Permit,06/01/2022 11:00:00 AM,06/02/2022 02:00:00 AM,05/27/2022 11:21:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 63 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 64 STREET between LEXINGTON AVENUE and PARK AVENUE, 3 AVENUE between EAST 64 STREET and EAST 67 STREET, EAST 65 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 68 STREET and EAST 69 STREET, EAST 66 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 59 STREET and EAST 58 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+650889,Shooting Permit,06/06/2022 01:00:00 PM,06/07/2022 03:00:00 AM,05/27/2022 11:03:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA STREET between HALLECK STREET and DEAD END, BAY STREET between CLINTON STREET and HICKS STREET, HENRY STREET between BAY STREET and LORRAINE STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+650862,Shooting Permit,06/01/2022 09:00:00 AM,06/01/2022 11:00:00 PM,05/27/2022 10:13:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between BEACH STREET and CHURCH STREET, 6 AVENUE between WALKER STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and WALKER STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and CANAL STREET, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, BEACH STREET between VARICK STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10013
+650859,Shooting Permit,06/01/2022 03:00:00 AM,06/01/2022 10:00:00 PM,05/27/2022 10:12:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+650857,Shooting Permit,06/02/2022 09:00:00 AM,06/02/2022 07:00:00 PM,05/27/2022 10:05:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",FRONT STREET between MAIN STREET and DOCK STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+650849,Shooting Permit,06/01/2022 09:00:00 AM,06/01/2022 07:00:00 PM,05/27/2022 09:47:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",FRONT STREET between MAIN STREET and DOCK STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+650842,Theater Load in and Load Outs,06/01/2022 12:01:00 AM,06/04/2022 11:59:00 PM,05/27/2022 09:22:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+650839,Theater Load in and Load Outs,06/04/2022 12:01:00 AM,06/04/2022 11:59:00 PM,05/27/2022 08:56:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+650826,Theater Load in and Load Outs,06/12/2022 06:00:00 AM,06/13/2022 01:00:00 AM,05/27/2022 05:13:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 59 STREET between 5 AVENUE and 6 AVENUE, WEST 59 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"5, 64","18, 22",Theater,Theater,United States of America,10019
+650819,Shooting Permit,06/01/2022 07:00:00 AM,06/01/2022 09:00:00 PM,05/26/2022 11:45:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between CANAL STREET and HESTER STREET, BOWERY between HESTER STREET and GRAND STREET, BOWERY between GRAND STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, DELANCEY STREET between CHRYSTIE STREET and FORSYTH STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, GRAND STREET between CHRYSTIE STREET and BOWERY, GRAND STREET between CHRYSTIE STREET and FORSYTH STREET, BOWERY between DELANCEY STREET and BROOME STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+650789,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 10:00:00 PM,05/26/2022 07:26:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",SULLIVAN PLACE between LUDLAM PLACE and ROGERS AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11225
+650788,Shooting Permit,06/01/2022 02:00:00 PM,06/02/2022 03:00:00 AM,05/26/2022 07:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between DOWNING STREET and CLASSON AVENUE, EASTERN PARKWAY between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between STERLING PLACE and PARK PLACE, NOSTRAND AVENUE between EASTERN PARKWAY and LINCOLN PLACE, NOSTRAND AVENUE between LINCOLN PLACE and ST JOHNS PLACE, LINCOLN PL between NEW YORK AVE and NOSTRAND AVE, LINCOLN PLACE between NOSTRAND AVENUE and ROGERS AVENUE",Brooklyn,"2, 3, 8, 9","71, 77, 79, 88",Television,Not Applicable,United States of America,"11213, 11216, 11225, 11238"
+650778,Shooting Permit,06/02/2022 06:00:00 AM,06/02/2022 10:00:00 PM,05/26/2022 05:59:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, DITMAS AVENUE between OCEAN AVENUE and EAST 17 STREET",Brooklyn,14,70,Film,Feature,United States of America,11226
+650768,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 10:00:00 PM,05/26/2022 05:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between WEST 9 STREET and HUNTINGTON STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+650759,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 10:00:00 PM,05/26/2022 05:24:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIGHTON 14 STREET between BRIGHTON BEACH AVENUE and BRIGHTON 15 STREET, BRIGHTON 15 STREET between BRIGHTON BEACH AVENUE and BRIGHTON 14 STREET, HUBBARD STREET between AVENUE X and AVENUE Y",Brooklyn,"13, 15","60, 61",Film,Feature,United States of America,11235
+650745,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 09:00:00 PM,05/26/2022 04:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 9 AVENUE and 8 AVENUE, WEST 52 STREET between 9 AVENUE and 10 AVENUE, WEST 53 STREET between 9 AVENUE and 8 AVENUE, 8 AVENUE between WEST 52 STREET and WEST 51 STREET, 9 AVENUE between WEST 55 STREET and WEST 50 STREET, EAST 44 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 46 STREET between 3 AVENUE and 2 AVENUE, EAST 46 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"4, 5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10019"
+650734,Shooting Permit,06/02/2022 07:00:00 AM,06/02/2022 09:00:00 PM,05/26/2022 03:59:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between MAIDEN LANE and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and BROADWAY, NASSAU STREET between LIBERTY STREET and CEDAR STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between GOLD STREET and PEARL STREET, LIBERTY STREET between BROADWAY and TRINITY PLACE, GREENWICH STREET between CEDAR STREET and THAMES STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between MAIDEN LANE and WALL STREET, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10038, 10045"
+650693,Shooting Permit,06/03/2022 02:00:00 PM,06/04/2022 05:00:00 AM,05/26/2022 02:07:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+650675,Shooting Permit,05/31/2022 07:00:00 AM,05/31/2022 09:00:00 PM,05/26/2022 01:36:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between FRANKLIN PLACE and CHURCH STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and LISPENARD STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, 6 AVENUE between LISPENARD STREET and CANAL STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between WHITE STREET and WALKER STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+650630,Shooting Permit,06/02/2022 06:00:00 AM,06/02/2022 08:00:00 PM,05/26/2022 11:54:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",ESSEX STREET between RIVINGTON STREET and STANTON STREET,Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+650626,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 08:00:00 PM,05/26/2022 11:48:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between PARK AVENUE and MADISON AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Still Photography,Not Applicable,United States of America,10022
+650620,Shooting Permit,06/01/2022 09:00:00 AM,06/02/2022 01:00:00 AM,05/26/2022 11:34:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR STREET between IRVING AVENUE and WYCKOFF AVENUE, STARR STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WYCKOFF AVENUE between STARR STREET and WILLOUGHBY AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and HART STREET, WILLOUGHBY AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WILLOUGHBY AVENUE between IRVING AVENUE and WYCKOFF AVENUE, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET",Brooklyn,4,83,Television,Episodic series,United States of America,11237
+650614,Theater Load in and Load Outs,06/01/2022 12:01:00 AM,06/03/2022 06:00:00 AM,05/26/2022 11:07:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+650576,Shooting Permit,06/07/2022 01:00:00 AM,06/07/2022 09:00:00 PM,05/26/2022 10:19:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WORTH STREET between LAFAYETTE STREET and CHURCH STREET,Manhattan,1,"1, 5",Still Photography,Not Applicable,United States of America,"10007, 10013, 10278"
+650543,Shooting Permit,05/31/2022 08:30:00 AM,06/01/2022 02:00:00 AM,05/26/2022 08:30:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, EASTERN PARKWAY between NOSTRAND AVENUE and NEW YORK AVENUE, LINCOLN PL between NOSTRAND AVENUE and NEW YORK AVE, NOSTRAND AVENUE between PROSPECT PLACE and STERLING PLACE, STERLING PLACE between NOSTRAND AVENUE and ROGERS AVENUE, PARK PLACE between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between ST JOHNS PLACE and EASTERN PARKWAY, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, FULTON STREET between FRANKLIN AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and CLASSON AVENUE, FULTON STREET between CLASSON AVENUE and DOWNING STREET",Brooklyn,"2, 3, 8, 9","71, 77, 79, 88",Television,Not Applicable,United States of America,"11213, 11216, 11225, 11238"
+650538,Shooting Permit,06/03/2022 06:00:00 AM,06/03/2022 10:00:00 PM,05/26/2022 08:16:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",SULLIVAN PLACE between LUDLAM PLACE and ROGERS AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11225
+650535,Shooting Permit,06/01/2022 11:00:00 AM,06/02/2022 02:00:00 AM,05/26/2022 08:08:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","MORNINGSIDE AVENUE between WEST 112 STREET and WEST 119 STREET, MANHATTAN AVENUE between CATHEDRAL PARKWAY and WEST 112 STREET, WEST 111 STREET between MANHATTAN AVENUE and FREDERICK DOUGLASS BOULEVARD, CATHEDRAL PARKWAY between MANHATTAN AVENUE and FREDERICK DOUGLASS CIRCLE",Manhattan,"10, 7, 9","24, 26, 28",Television,Episodic series,United States of America,10026
+650528,Shooting Permit,05/27/2022 01:00:00 AM,05/27/2022 01:00:00 PM,05/26/2022 06:12:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+650527,Shooting Permit,06/05/2022 06:00:00 AM,06/05/2022 09:00:00 PM,05/26/2022 02:12:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,13,Film,Feature,United States of America,10011
+650525,Theater Load in and Load Outs,05/27/2022 06:00:00 AM,05/29/2022 11:00:00 AM,05/26/2022 01:41:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+650524,Shooting Permit,06/03/2022 06:00:00 AM,06/03/2022 09:00:00 PM,05/26/2022 01:40:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between HICKS STREET and CLINTON STREET,Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+650523,Shooting Permit,06/02/2022 06:00:00 AM,06/02/2022 09:00:00 PM,05/26/2022 01:31:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between GRAND STREET and WATTS STREET, THOMPSON STREET between GRAND STREET and AVENUE OF THE AMERICAS, WEST BROADWAY between GRAND STREET and CANAL STREET",Manhattan,2,1,Film,Feature,United States of America,10013
+650521,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 09:00:00 PM,05/26/2022 01:05:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, THOMPSON STREET between GRAND STREET and WATTS STREET, THOMPSON STREET between GRAND STREET and AVENUE OF THE AMERICAS, WEST BROADWAY between GRAND STREET and CANAL STREET",Manhattan,"2, 4","1, 10",Film,Feature,United States of America,"10011, 10013"
+650520,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 09:00:00 PM,05/26/2022 12:37:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between STUYVESANT STREET and 3 AVENUE, EAST 11 STREET between 2 AVENUE and 3 AVENUE, EAST 10 STREET between 1 AVENUE and 2 AVENUE",Manhattan,3,9,Film,Feature,United States of America,10003
+650463,Shooting Permit,05/31/2022 01:00:00 PM,05/31/2022 09:00:00 PM,05/25/2022 06:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CENTRAL AVENUE and WILSON AVENUE, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE, FLUSHING AVENUE between WILSON AVENUE and NOLL STREET, WILSON AVENUE between NOLL STREET and MELROSE STREET, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+650458,Shooting Permit,05/31/2022 08:00:00 AM,05/31/2022 11:00:00 PM,05/25/2022 05:35:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+650446,Shooting Permit,06/01/2022 07:00:00 PM,06/02/2022 06:00:00 AM,05/25/2022 05:01:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST HOUSTON STREET between MERCER STREET and BROADWAY, EAST HOUSTON STREET between BROADWAY and CROSBY STREET, EAST HOUSTON STREET between MULBERRY STREET and MOTT STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, MOTT STREET between PRINCE STREET and EAST HOUSTON STREET, BOWERY between EAST HOUSTON STREET and BLEEKER STREET, LAFAYETTE STREET between EAST HOUSTON STREET and BLEEKER STREET, CROSBY STREET between EAST HOUSTON STREET and BLEEKER STREET, BROADWAY between EAST HOUSTON STREET and BLEEKER STREET, BLEEKER STREET between MULBERRY STREET and MOTT STREET, LAFAYETTE STREET between BLEEKER STREET and EAST 4 STREET, BOND STREET between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3","1, 5, 6, 9",Television,Episodic series,United States of America,"10003, 10012"
+650442,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 09:00:00 PM,05/25/2022 04:59:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between WEST HOUSTON STREET and KING STREET, GREENWICH STREET between KING STREET and WEST HOUSTON STREET",Manhattan,2,1,Commercial,Commercial,United States of America,10014
+650411,Theater Load in and Load Outs,05/27/2022 12:01:00 AM,05/28/2022 06:00:00 AM,05/25/2022 03:40:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+650376,Shooting Permit,05/30/2022 06:00:00 AM,05/30/2022 10:00:00 PM,05/25/2022 02:32:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10018
+650377,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 10:00:00 PM,05/25/2022 02:32:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10018
+650362,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 08:00:00 PM,05/25/2022 02:09:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between METROPOLITAN AVENUE and GRAND STREET, METROPOLITAN AVENUE between RIVER STREET and KENT AVENUE, NORTH 1 STREET between RIVER STREET and KENT AVENUE, KENT AVENUE between GRAND STREET and NORTH 1 STREET, S 1ST STREET between RIVER ST and KENT AVE, NOBLE STREET between MANHATTAN AVENUE and FRANKLIN STREET, MILTON STREET between WEST STREET and FRANKLIN STREET, NOBLE STREET between WEST STREET and FRANKLIN STREET, FRANKLIN STREET between MILTON STREET and OAK STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+650342,Shooting Permit,06/10/2022 01:00:00 AM,06/10/2022 01:00:00 PM,05/25/2022 01:24:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+650341,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 07:00:00 PM,05/25/2022 01:23:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",PINE STREET between WILLIAM STREET and NASSAU STREET,Manhattan,1,1,Film,Feature,United States of America,10005
+650337,Shooting Permit,06/09/2022 01:00:00 PM,06/09/2022 11:59:00 PM,05/25/2022 01:15:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+650336,Shooting Permit,05/30/2022 01:00:00 AM,05/30/2022 01:00:00 PM,05/25/2022 01:08:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+650307,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 10:00:00 PM,05/25/2022 12:32:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 100 STREET and WEST 105 STREET, WEST 103 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 108 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, MANHATTAN AVENUE between WEST 106 STREET and WEST 109 STREET, WEST 108 STREET between AMSTERDAM AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 100 STREET and WEST 106 STREET",Manhattan,"64, 7","22, 24",Film,Feature,United States of America,10025
+650273,Shooting Permit,06/01/2022 07:00:00 AM,06/01/2022 09:00:00 PM,05/25/2022 11:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between MAIDEN LANE and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and BROADWAY, NASSAU STREET between LIBERTY STREET and CEDAR STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between GOLD STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between MAIDEN LANE and WALL STREET, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PINE STREET between BROADWAY and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+650250,Theater Load in and Load Outs,06/01/2022 12:01:00 AM,06/05/2022 11:59:00 PM,05/25/2022 10:36:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+650243,Shooting Permit,06/02/2022 05:30:00 AM,06/02/2022 10:00:00 PM,05/25/2022 10:21:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",SULLIVAN PLACE between LUDLAM PLACE and ROGERS AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11225
+650201,Shooting Permit,05/27/2022 01:00:00 AM,05/27/2022 09:00:00 PM,05/24/2022 11:40:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, VANDERBILT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, SOUTH OXFORD STREET between FULTON STREET and LAFAYETTE AVENUE, SOUTH OXFORD STREET between LAFAYETTE AVENUE and DEKALB AVENUE",Brooklyn,2,88,Commercial,Promo,United States of America,"11217, 11238"
+650192,Shooting Permit,05/27/2022 01:00:00 PM,05/28/2022 02:00:00 AM,05/24/2022 09:34:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between STEWART AVENUE and WYCKOFF AVENUE, FLUSHING AVENUE between THAMES STREET and STEWART AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between ST NICHOLAS AVENUE and SCOTT AVENUE, STEWART AVENUE between FLUSHING AVENUE and HARRISON PLACE, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, STEWART AVENUE between INGRAHAM STREET and JOHNSON AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, FLUSHING AVENUE between SCOTT AVENUE and CYPRESS AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+650187,Shooting Permit,05/27/2022 08:00:00 AM,05/27/2022 09:00:00 PM,05/24/2022 09:08:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+650163,Shooting Permit,06/03/2022 12:00:00 PM,06/03/2022 11:00:00 PM,05/24/2022 06:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between SEVENTH AVENUE and EIGHTH AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+650157,Shooting Permit,05/26/2022 07:30:00 AM,05/26/2022 08:00:00 PM,05/24/2022 05:42:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET, PARK AVENUE between EAST 63 STREET and EAST 64 STREET, EAST 62 STREET between MADISON AVENUE and 5 AVENUE, EAST 63 STREET between MADISON AVENUE and 5 AVENUE, EAST 64 STREET between MADISON AVENUE and 5 AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+650153,Theater Load in and Load Outs,05/26/2022 06:00:00 AM,05/26/2022 11:59:00 PM,05/24/2022 05:25:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 AVENUE between WEST 27 STREET and WEST 28 STREET,Manhattan,4,10,Theater,Theater,United States of America,10001
+650150,Shooting Permit,05/26/2022 12:00:00 PM,05/27/2022 03:00:00 AM,05/24/2022 05:19:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEIRFIELD STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, WEIRFIELD STREET between WILSON AVENUE and CENTRAL AVENUE, HALSEY STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between CORNELIA STREET and WEIRFIELD STREET, WILSON AVENUE between WEIRFIELD STREET and HALSEY STREET, WEIRFIELD STREET between WILSON AVENUE and KNICKERBOCKER AVENUE, MYRTLE AVE between 71ST AVE and HANCOCK AVE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+650108,Shooting Permit,05/26/2022 06:00:00 AM,05/26/2022 06:00:00 PM,05/24/2022 03:48:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 61 STREET between BROADWAY and CENTRAL PARK WEST, WEST 68 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"00083, 10023"
+650097,Shooting Permit,05/27/2022 08:00:00 AM,05/27/2022 09:00:00 PM,05/24/2022 03:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLAREMONT AVENUE between WEST 122 STREET and LA SALLE STREET,Manhattan,"7, 9","20, 24, 26",Still Photography,Not Applicable,United States of America,"10024, 10025, 10027"
+650085,Shooting Permit,05/29/2022 07:00:00 AM,05/29/2022 10:00:00 PM,05/24/2022 03:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 65 STREET and EAST 63 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065, 10075"
+650059,Shooting Permit,05/27/2022 11:00:00 AM,05/28/2022 02:00:00 AM,05/24/2022 02:32:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 47 AVENUE and 47 ROAD, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 47 ROAD between VERNON BOULEVARD and 11 STREET, 47 AVENUE between 5 STREET and VERNON BOULEVARD, 46 AVENUE between VERNON BOULEVARD and 5 STREET, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,11101
+650050,Shooting Permit,06/09/2022 10:00:00 AM,06/09/2022 11:00:00 PM,05/24/2022 02:21:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 67 STREET and WEST 68 STREET,Manhattan,7,20,Television,Cable-other,United States of America,10023
+650047,Shooting Permit,05/28/2022 07:00:00 AM,05/28/2022 08:00:00 PM,05/24/2022 02:13:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 65 STREET and EAST 63 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065, 10075"
+650036,Shooting Permit,05/26/2022 06:00:00 AM,05/26/2022 08:00:00 PM,05/24/2022 01:50:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, VANDERBILT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Commercial,Promo,United States of America,11238
+650017,Theater Load in and Load Outs,05/29/2022 12:01:00 AM,05/30/2022 06:00:00 AM,05/24/2022 01:26:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+650011,Shooting Permit,05/31/2022 07:00:00 AM,05/31/2022 08:00:00 PM,05/24/2022 01:21:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between PARK HILL AVENUE and VANDERBILT AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+650005,Shooting Permit,05/27/2022 11:00:00 AM,05/28/2022 01:00:00 AM,05/24/2022 01:15:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 115 STREET and WEST 116 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, WEST 116 STREET between RIVERSIDE DRIVE and BROADWAY, CLAREMONT AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 119 STREET between CLAREMONT AVENUE and RIVERSIDE DRIVE, CLAREMONT AVENUE between WEST 119 STREET and WEST 120 STREET, RIVERSIDE DRIVE between WEST 120 STREET and SAINT CLAIR PLACE",Manhattan,9,26,Television,Cable-episodic,United States of America,"10025, 10027"
+650002,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 09:00:00 PM,05/24/2022 01:12:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+649999,Theater Load in and Load Outs,05/28/2022 12:01:00 AM,05/28/2022 11:59:00 PM,05/24/2022 01:05:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+649982,Shooting Permit,05/26/2022 11:00:00 AM,05/26/2022 05:00:00 PM,05/24/2022 12:51:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH 5 STREET and BROADWAY, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, BROADWAY between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11249
+649944,Shooting Permit,05/27/2022 11:00:00 AM,05/28/2022 02:00:00 AM,05/24/2022 11:24:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+649942,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 09:00:00 PM,05/24/2022 11:19:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between RIVINGTON STREET and PRINCE STREET,Manhattan,"2, 3",5,Still Photography,Not Applicable,United States of America,"10002, 10012"
+649938,Shooting Permit,05/26/2022 08:00:00 AM,05/26/2022 10:00:00 PM,05/24/2022 11:00:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","41 DRIVE between 58 STREET and 60 STREET, 19 STREET between 22 DRIVE and 22 ROAD",Brooklyn,"1, 2","108, 114, 90",WEB,Not Applicable,United States of America,"11105, 11249, 11377"
+649937,Theater Load in and Load Outs,05/27/2022 12:01:00 AM,05/27/2022 11:59:00 PM,05/24/2022 10:57:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+649934,Shooting Permit,05/26/2022 12:00:00 AM,05/26/2022 12:00:00 PM,05/24/2022 10:53:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Television,Morning Show,United States of America,10036
+649926,Shooting Permit,05/25/2022 08:00:00 AM,05/26/2022 06:00:00 PM,05/24/2022 10:34:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER DRIVE between WEST DRIVE and EAST DRIVE,Manhattan,"4, 5, 55, 64, 7","18, 20, 22, 72, 78",Commercial,Promo,United States of America,"10000, 10019, 10023, 10036, 11215"
+649923,Theater Load in and Load Outs,05/26/2022 12:01:00 AM,05/26/2022 11:59:00 PM,05/24/2022 10:28:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+649915,Shooting Permit,05/27/2022 09:00:00 AM,05/27/2022 07:00:00 PM,05/24/2022 10:11:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 78 STREET and EAST 76 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10023, 10075"
+649880,Shooting Permit,05/26/2022 01:00:00 PM,05/27/2022 12:30:00 PM,05/24/2022 02:15:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between ST MARKS AVENUE and PROSPECT PLACE, ST MARKS AVENUE between NOSTRAND AVENUE and ROGERS AVENUE, PROSPECT PLACE between ROGERS AVENUE and NOSTRAND AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST MARKS AVENUE between NOSTRAND AVENUE and NEW YORK AVENUE, FULTON STREET between ARLINGTON PLACE and CLAVER PLACE, BERGEN STREET between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between BERGEN STREET and ST MARKS AVENUE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between PARK PLACE and STERLING PLACE, ST JOHNS PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST JOHNS PLACE between NOSTRAND AVENUE and ROGERS AVENUE",Brooklyn,"3, 8","77, 79",Television,Not Applicable,United States of America,"11216, 11238"
+649879,Shooting Permit,06/01/2022 08:00:00 AM,06/01/2022 08:00:00 PM,05/24/2022 01:55:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between HANSON PLACE and FULTON STREET,Brooklyn,2,88,Commercial,Commercial,United States of America,11217
+649871,Shooting Permit,05/26/2022 12:00:00 PM,05/27/2022 02:00:00 AM,05/23/2022 11:14:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between STEWART AVENUE and WYCKOFF AVENUE, FLUSHING AVENUE between THAMES STREET and STEWART AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between ST NICHOLAS AVENUE and SCOTT AVENUE, STEWART AVENUE between FLUSHING AVENUE and HARRISON PLACE, STEWART AVENUE between INGRAHAM STREET and HARRISON PLACE, STEWART AVENUE between INGRAHAM STREET and JOHNSON AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, FLUSHING AVENUE between SCOTT AVENUE and CYPRESS AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+649844,Shooting Permit,05/27/2022 07:30:00 AM,05/27/2022 10:30:00 PM,05/23/2022 07:13:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODPOINT ROAD between FROST STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between WOODPOINT ROAD and KINGSLAND AVENUE, SKILLMAN AVENUE between WOODPOINT ROAD and HUMBOLDT STREET, WOODPOINT ROAD between SKILLMAN AVENUE and CONSELYEA STREET, CONSELYEA STREET between HUMBOLT STREET and MASPETH AVENUE, MASPETH AVENUE between CONSELYEA STREET and DEBEVOISE AVENUE, HUMBOLT STREET between CONSELYEA STREET and MASPETH AVENUE, GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11211
+649812,Shooting Permit,06/01/2022 06:00:00 AM,06/01/2022 07:00:00 PM,05/23/2022 05:01:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, SULLIVAN PLACE between LUDLAM PLACE and ROGERS AVENUE",Brooklyn,"1, 9","71, 90, 94",Film,Feature,United States of America,"11225, 11249"
+649811,Theater Load in and Load Outs,06/01/2022 12:01:00 AM,06/01/2022 11:59:00 PM,05/23/2022 04:58:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+649798,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 09:00:00 PM,05/23/2022 04:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between GREENWICH AVENUE and WEST 4 STREET, GREENWICH AVENUE between WEST 12 STREET and BANK STREET, 9 STREET between 43 ROAD and 43 AVENUE, 43 AVENUE between 9 STREET and 10 STREET",Manhattan,2,"108, 6",WEB,Not Applicable,United States of America,"10011, 10014, 11101"
+649795,Shooting Permit,05/31/2022 11:00:00 AM,06/01/2022 03:00:00 AM,05/23/2022 04:33:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, 6 AVENUE between WEST 3 STREET and WEST 8 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+649784,Shooting Permit,05/26/2022 01:00:00 PM,05/26/2022 09:00:00 PM,05/23/2022 04:11:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE BOULEVARD between WEST 65 STREET and WEST 66 STREET, RIVERSIDE BOULEVARD between WEST 66 STREET and WEST 67 STREET, 9 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between 9 STREET and 10 STREET",Manhattan,"2, 7","108, 20",WEB,Not Applicable,United States of America,"10069, 11101"
+649759,Theater Load in and Load Outs,06/15/2022 06:00:00 AM,06/15/2022 11:59:00 PM,05/23/2022 02:59:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",11 AVENUE between WEST 30 STREET and WEST 33 STREET,Manhattan,4,10,Theater,Theater,United States of America,10001
+649721,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 10:00:00 PM,05/23/2022 02:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 100 STREET and WEST 101 STREET, WEST 100 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, WEST 102 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, WEST 101 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 102 STREET and WEST 101 STREET, CENTRAL PARK WEST between WEST 100 STREET and WEST 97 STREET, WEST 97 STREET between BROADWAY and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 100 STREET and WEST 106 STREET, WEST 137 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 139 STREET and WEST 138 STREET, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 135 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 141 STREET and WEST 134 STREET, WEST 141 STREET between ST NICHOLAS AVENUE and HAMILTON TERRACE",Manhattan,"10, 64, 7, 9","22, 24, 26, 30, 32",Television,Cable-episodic,United States of America,"10025, 10030, 10031"
+649703,Rigging Permit,05/26/2022 08:00:00 AM,05/26/2022 02:00:00 PM,05/23/2022 01:31:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+649697,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 11:59:00 PM,05/23/2022 01:17:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+649692,Shooting Permit,05/25/2022 04:00:00 AM,05/25/2022 12:00:00 PM,05/23/2022 01:10:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+649680,Theater Load in and Load Outs,05/31/2022 12:01:00 AM,06/04/2022 11:59:00 PM,05/23/2022 12:50:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+649675,Shooting Permit,05/25/2022 12:00:00 PM,05/26/2022 02:00:00 AM,05/23/2022 12:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and DEAD END, RIVER STREET between GRAND STREET and NORTH 1 STREET, KENT AVENUE between GRAND STREET and NORTH 1 STREET, RIVER STREET between NORTH 1 STREET and METROPOLITAN AVENUE, NORTH 1 STREET between RIVER STREET and KENT AVENUE, KENT AVENUE between NORTH 1 STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between KENT AVENUE and RIVER STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, RIVER STREET between GRAND STREET and SOUTH 5 STREET, RIVER STREET between GRAND STREET and SOUTH 5 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11249
+649667,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 10:00:00 PM,05/23/2022 12:25:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between PROSPECT STREET and YORK STREET, BRIDGE STREET between YORK STREET and FRONT STREET, REED STREET between CONOVER STREET and VAN BRUNT STREET",Brooklyn,"2, 6","76, 84",WEB,Not Applicable,United States of America,"11201, 11231"
+649665,Shooting Permit,05/26/2022 11:00:00 AM,05/26/2022 11:00:00 PM,05/23/2022 12:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 115 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, WEST 116 STREET between RIVERSIDE DRIVE and BROADWAY, CLAREMONT AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 119 STREET between CLAREMONT AVENUE and RIVERSIDE DRIVE, CLAREMONT AVENUE between WEST 119 STREET and WEST 120 STREET, RIVERSIDE DRIVE between WEST 120 STREET and SAINT CLAIR PLACE",Manhattan,9,26,Television,Cable-episodic,United States of America,"10024, 10025, 10027"
+649658,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 09:00:00 PM,05/23/2022 12:13:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 78 STREET and WEST 81 STREET,Manhattan,7,20,Film,Feature,United States of America,10024
+649656,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 09:00:00 PM,05/23/2022 12:12:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 78 STREET and WEST 81 STREET,Manhattan,7,20,Film,Feature,United States of America,10024
+649654,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 09:00:00 PM,05/23/2022 12:11:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 78 STREET and WEST 81 STREET,Manhattan,7,20,Film,Feature,United States of America,10024
+649649,Shooting Permit,05/27/2022 06:00:00 AM,05/27/2022 09:00:00 PM,05/23/2022 11:57:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between PARK HILL AVENUE and VANDERBILT AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+649647,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 09:00:00 PM,05/23/2022 11:49:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",HUBERT STREET between WEST STREET and GREENWICH STREET,Manhattan,"1, 2",1,Still Photography,Not Applicable,United States of America,"10013, 10014"
+649589,Shooting Permit,05/27/2022 06:00:00 AM,05/27/2022 09:00:00 PM,05/23/2022 09:55:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+649558,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 09:00:00 PM,05/23/2022 07:05:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE SOUTH between WEST 11 STREET and WAVERLY PLACE,Manhattan,2,6,Documentary,Not Applicable,United States of America,10014
+649548,Shooting Permit,05/25/2022 08:00:00 AM,05/25/2022 11:00:00 PM,05/22/2022 09:40:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","STILLWELL AVENUE between AVENUE S and 83 STREET, WEST STREET between VILLAGE ROAD N and GRAVESEND NECK ROAD",Brooklyn,"11, 15","61, 62",Television,Episodic series,United States of America,11223
+649536,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 01:00:00 PM,05/22/2022 06:47:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and BROADWAY",Manhattan,"5, 8","14, 19",Television,Episodic series,United States of America,"10018, 10065"
+649511,Shooting Permit,05/25/2022 09:00:00 AM,05/26/2022 04:00:00 AM,05/22/2022 03:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, MANHATTAN AVENUE between ASH STREET and BOX STREET, COMMERCIAL STREET between BOX STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between ASH STREET and DEAD END, SKILLMAN AVENUE between 39 STREET and 34 STREET, VAN DAM ST between SKILLMAN AVENUE and QUEENS BLVD, SKILLMAN AVENUE between VAN DAM STREET and 32 PLACE, 32ND PL between SKILLMAN AVENUE and QUEENS BLVD, 43 AVENUE between 33 STREET and 32 PLACE, 43 AVENUE between 34 STREET and 35 STREET, 43 AVENUE between 35 STREET and 36 STREET, 35 STREET between QUEENS BOULEVARD and 43 AVENUE, 35 STREET between 43 AVENUE and SKILLMAN AVENUE, ASH ST between MANHATTAN AVENUE and MCGUINNESS BLVD",Queens,"1, 2","108, 94",Television,Not Applicable,United States of America,"11101, 11222"
+649494,Shooting Permit,05/31/2022 06:00:00 AM,05/31/2022 10:00:00 PM,05/22/2022 12:54:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIGHTON 14 STREET between BRIGHTON 15 STREET and BRIGHTON BEACH AVENUE, BRIGHTON 15 STREET between BRIGHTON BEACH AVENUE and BRIGHTON 14 STREET",Brooklyn,13,60,Film,Feature,United States of America,11235
+649471,Shooting Permit,05/27/2022 07:00:00 AM,05/27/2022 07:00:00 PM,05/22/2022 09:17:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+649469,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 07:00:00 PM,05/22/2022 09:12:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+649468,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 07:00:00 PM,05/22/2022 09:05:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+649356,Shooting Permit,05/25/2022 10:00:00 AM,05/26/2022 04:00:00 AM,05/20/2022 05:47:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","56 STREET between BROADWAY and 37 AVENUE, 55 STREET between BROADWAY and 37 AVENUE, 56th Street between Broadway and Northern Blvd, 55 STREET between BROADWAY and NORTHERN BOULEVARD, BROADWAY between 53 PLACE and 54 STREET, BROADWAY between 51 STREET and 53 PLACE, 53 PLACE between BROADWAY and 32 AVENUE, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE, North 3rd Street between BEDFORD AVENUE and Driggs Avenue, BEDFORD AVENUE between NORTH 4 STREET and NORTH 3 STREET, BEDFORD AVENUE between NORTH 5 STREET and NORTH 4 STREET",Queens,"1, 2","108, 114, 90, 94",Film,Feature,United States of America,"11211, 11249, 11377"
+649335,Shooting Permit,05/30/2022 06:00:00 AM,05/30/2022 11:00:00 PM,05/20/2022 04:30:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, VAN BRUNT STREET between HAMILTON AVENUE and BOWNE STREET, BOWNE STREET between HAMILTON AVENUE and VAN BRUNT STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+649324,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 07:00:00 PM,05/20/2022 04:08:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEONARD STREET between WEST BROADWAY and CHURCH STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+649313,Shooting Permit,05/24/2022 06:00:00 AM,05/24/2022 01:00:00 PM,05/20/2022 03:45:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 56 STREET between 2 AVENUE and 3 AVENUE,Manhattan,6,17,Documentary,Not Applicable,United States of America,10022
+649310,Shooting Permit,05/22/2022 05:00:00 AM,05/22/2022 12:00:00 PM,05/20/2022 03:35:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+649305,Theater Load in and Load Outs,05/21/2022 06:00:00 AM,05/21/2022 11:59:00 PM,05/20/2022 03:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+649302,Shooting Permit,05/24/2022 02:00:00 AM,05/24/2022 12:00:00 PM,05/20/2022 03:10:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+649300,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 09:00:00 PM,05/20/2022 03:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 78 STREET and WEST 82 STREET,Manhattan,7,20,Film,Feature,United States of America,10024
+649290,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 09:00:00 PM,05/20/2022 02:52:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between KNICKERBOCKER AVENUE and PORTER AVENUE,Brooklyn,"1, 3","81, 90",Commercial,Commercial,United States of America,"11206, 11221, 11233, 11237"
+649286,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 09:00:00 PM,05/20/2022 02:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between HALLECK STREET and BAY STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+649282,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 10:00:00 PM,05/20/2022 02:33:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+649270,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 10:00:00 PM,05/20/2022 01:45:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 78 STREET and WEST 79 STREET, RIVERSIDE DRIVE between WEST 79 STREET and WEST 80 STREET, RIVERSIDE DRIVE between WEST 80 STREET and WEST 81 STREET, RIVERSIDE DRIVE between WEST 81 STREET and WEST 82 STREET",Manhattan,7,20,Film,Feature,United States of America,10024
+649258,Shooting Permit,05/25/2022 10:00:00 AM,05/25/2022 11:00:00 PM,05/20/2022 01:14:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 69 STREET and WEST 66 STREET, WEST 68 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 66 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 67 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 66 STREET and WEST 65 STREET, WEST 65 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, WEST 63 STREET between COLUMBUS AVENUE and BROADWAY, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,7,20,Television,Cable-episodic,United States of America,10023
+649231,Shooting Permit,05/26/2022 07:00:00 AM,05/26/2022 09:00:00 PM,05/20/2022 12:25:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between BROOME STREET and KENMARE STREET, BOWERY between KENMARE STREET and SPRING STREET, DELANCEY STREET between ELDRIDGE STREET and ALLEN STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+649227,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 11:00:00 PM,05/20/2022 12:17:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+649226,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 11:00:00 PM,05/20/2022 12:17:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+649221,Theater Load in and Load Outs,05/25/2022 12:01:00 AM,05/27/2022 06:00:00 AM,05/20/2022 12:08:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+649196,Shooting Permit,05/24/2022 06:00:00 AM,05/24/2022 09:00:00 PM,05/20/2022 11:28:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST END AVENUE between EAST 87 STREET and EAST 88 STREET, EAST END AVENUE between EAST 86 STREET and EAST 87 STREET, 1 AVENUE between EAST 91 STREET and EAST 92 STREET, 1 AVENUE between EAST 92 STREET and EAST 93 STREET",Manhattan,8,19,WEB,Not Applicable,United States of America,"10028, 10128"
+649191,Shooting Permit,05/24/2022 08:00:00 AM,05/25/2022 02:00:00 AM,05/20/2022 11:16:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATERSIDE PLAZA between EAST 28 STREET and EAST 30 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 27 STREET, EAST 26 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, MADISON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 25 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 25 STREET between PARK AVENUE SOUTH and MADISON AVENUE, WEST 20 STREET between 5 AVENUE and 6 AVENUE, EAST 20 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between EAST 20 STREET and EAST 21 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10003, 10010, 10011, 10016"
+649175,Shooting Permit,05/24/2022 06:00:00 AM,05/24/2022 08:00:00 PM,05/20/2022 10:41:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, BROADWAY between WEST 79 STREET and WEST 84 STREET, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, CENTRAL PARK WEST between WEST 74 STREET and WEST 77 STREET, CENTRAL PARK WEST between WEST 81 STREET and WEST 83 STREET",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,"10023, 10024"
+649134,Shooting Permit,05/21/2022 05:00:00 AM,05/21/2022 11:59:00 PM,05/20/2022 09:25:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+649129,Shooting Permit,05/24/2022 06:00:00 AM,05/24/2022 07:00:00 PM,05/20/2022 09:20:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between STILLWELL AVENUE and WEST 12 STREET, STILLWELL AVENUE between SURF AVENUE and BOARDWALK",Brooklyn,13,60,Commercial,Commercial,United States of America,11224
+649105,Shooting Permit,05/25/2022 06:00:00 AM,05/25/2022 11:00:00 PM,05/20/2022 07:22:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between GLENWOOD ROAD and AVENUE H, AVENUE H between EAST 19 STREET and CAMPUS ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,"11210, 11230"
+649104,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 11:00:00 PM,05/20/2022 07:13:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between GLENWOOD ROAD and AVENUE H, AVENUE H between EAST 19 STREET and CAMPUS ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,"11210, 11230"
+649087,Shooting Permit,05/24/2022 07:30:00 AM,05/24/2022 09:30:00 PM,05/19/2022 10:48:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between WEST 13 STREET and JANE STREET, GREENWICH AVENUE between JANE STREET and WEST 12 STREET, WEST 13 STREET between SEVENTH AVENUE and GREENWICH AVENUE, GREENWICH AVENUE between BANK STREET and WEST 12 STREET, GREENWICH AVENUE between WEST 11 STREET and BANK STREET, SEVENTH AVENUE SOUTH between PERRY STREET and WEST 11 STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST THIRD STREET, LAGUARDIA PLACE between WEST THIRD STREET and BLEEKER STREET, LAGUARDIA PLACE between BLEEKER STREET and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, GREENWICH AVENUE between JANE STREET and HORATIO STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+649061,Shooting Permit,06/02/2022 12:00:00 PM,06/02/2022 10:00:00 PM,05/19/2022 05:52:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10036
+649056,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 08:00:00 PM,05/19/2022 05:41:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+649052,Shooting Permit,05/26/2022 12:00:00 PM,05/26/2022 11:00:00 PM,05/19/2022 05:26:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+649009,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 07:00:00 PM,05/19/2022 03:49:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10023, 10065"
+649005,Rigging Permit,05/21/2022 01:00:00 AM,05/21/2022 09:00:00 AM,05/19/2022 03:45:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",COOPER SQUARE between EAST 4 STREET and EAST 5 STREET,Manhattan,"2, 3",9,Film,Feature,United States of America,10003
+648998,Shooting Permit,05/25/2022 10:00:00 AM,05/26/2022 02:00:00 AM,05/19/2022 03:32:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between VERNON BOULEVARD and 5 STREET, 46 AVENUE between 5 STREET and CENTER BOULEVARD, CENTER BLVD between 46 AVENUE and NORTH BASIN ROAD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 44 DRIVE between HUNTER STREET and 23 STREET, 44 ROAD between CRESCENT STREET and 24 STREET, CRESCENT STREET between HUNTER STREET and 43 AVENUE, 43 AVENUE between CRESCENT STREET and 24 STREET, 24 STREET between 43 AVENUE and 44 ROAD, HUNTER STREET between 43 AVENUE and 44 ROAD, 44 ROAD between 23 STREET and 24 STREET, 23 STREET between 44 ROAD and 44 AVENUE, 23 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+648952,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 09:00:00 PM,05/19/2022 02:36:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between LEONARD STREET and ECKFORD STREET, MESEROLE AVENUE between LEONARD STREET and MANHATTAN AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+648949,Theater Load in and Load Outs,05/23/2022 12:01:00 AM,05/24/2022 06:00:00 AM,05/19/2022 02:34:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+648944,Theater Load in and Load Outs,05/21/2022 12:01:00 AM,05/22/2022 11:59:00 PM,05/19/2022 02:27:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+648942,Shooting Permit,05/23/2022 06:00:00 AM,05/23/2022 09:00:00 PM,05/19/2022 02:24:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE A between EAST 9 STREET and EAST 10 STREET,Manhattan,3,9,Still Photography,Not Applicable,United States of America,10009
+648939,Shooting Permit,05/25/2022 08:00:00 AM,05/25/2022 08:00:00 PM,05/19/2022 02:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MARKET SLIP and FRANK T MODICA WAY, PIKE SLIP between SOUTH STREET and CHERRY STREET, PIKE STREET between CHERRY STREET and MADISON STREET, CHERRY STREET between PIKE SLIP and FRANK T MODICA WAY",Manhattan,3,"5, 7, 9",Television,Cable-episodic,United States of America,"10002, 10038"
+648938,Shooting Permit,05/25/2022 08:00:00 AM,05/25/2022 09:00:00 PM,05/19/2022 02:12:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between STARR AVENUE and BRADLEY AVENUE, BRADLEY AVENUE between 35 STREET and GREENPOINT AVENUE, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, REVIEW AVENUE between 35 STREET and 29 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+648937,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 10:00:00 PM,05/19/2022 02:11:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 68 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 69 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 69 STREET and WEST 70 STREET, WEST 71 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 72 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 70 STREET and WEST 72 STREET, WEST 70 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,10023
+648933,Shooting Permit,05/21/2022 07:30:00 AM,05/21/2022 10:00:00 PM,05/19/2022 02:01:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 16 STREET and EAST 17 STREET, 39 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Manhattan,"6, 7","13, 72",Film,Feature,United States of America,"10003, 11232"
+648913,Shooting Permit,05/25/2022 09:00:00 AM,05/25/2022 10:00:00 PM,05/19/2022 01:33:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MOTT STREET and FORSYTH STREET, BOWERY between BROOME STREET and HESTER STREET, BOWERY between HESTER STREET and CANAL STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, WEST BROADWAY between LEONARD STREET and WORTH STREET, WORTH STREET between WEST BROADWAY and CHURCH STREET, WEST BROADWAY between WORTH STREET and THOMAS STREET, WEST BROADWAY between DUANE STREET and READE STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET, DUANE STREET between CHURCH STREET and BROADWAY, CHURCH STREET between THOMAS STREET and DUANE STREET, THOMAS STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between DUANE STREET and READE STREET, READE STREET between WEST BROADWAY and CHURCH STREET, READE STREET between CHURCH STREET and BROADWAY",Manhattan,"1, 2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10007, 10012, 10013"
+648888,Shooting Permit,05/24/2022 12:00:00 PM,05/25/2022 04:00:00 AM,05/19/2022 12:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUINCY STREET between MALCOLM X BOULEVARD and PATCHEN AVENUE, PATCHEN AVENUE between LEXINGTON AVENUE and QUINCY STREET, PATCHEN AVENUE between QUINCY STREET and GATES AVENUE, PATCHEN AVENUE between GATES AVENUE and MONROE STREET, LEWIS AVENUE between LOCUST STREET and STOCKTON STREET, BROADWAY between ELLERY STREET and PARK STREET, PARK AVENUE between BROADWAY and MARCUS GARVEY BOULEVARD",Brooklyn,"3, 4","79, 81, 83",Film,Feature,United States of America,"11206, 11221"
+648872,Shooting Permit,06/06/2022 06:00:00 AM,06/06/2022 08:00:00 PM,05/19/2022 12:30:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and VAN DYKE STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET",Brooklyn,6,76,Film,Short,United States of America,11231
+648835,Shooting Permit,05/23/2022 05:00:00 AM,05/23/2022 12:00:00 PM,05/19/2022 11:18:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+648806,Theater Load in and Load Outs,06/04/2022 12:01:00 AM,06/05/2022 06:00:00 AM,05/19/2022 10:24:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+648779,Theater Load in and Load Outs,06/02/2022 05:00:00 AM,06/14/2022 11:00:00 PM,05/19/2022 09:47:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 6 AVENUE and 5 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+648751,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 09:00:00 PM,05/19/2022 07:46:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST DRIVE between BAYVIEW AVENUE and KENMORE ROAD, KENMORE ROAD between SHORE ROAD and WEST DRIVE, KNOLLWOOD ROAD between SHORE ROAD and WEST DRIVE, KNOLLWOOD AVENUE between EAST DRIVE and DOUGLAS ROAD",Queens,11,111,Television,Episodic series,United States of America,11363
+648748,Shooting Permit,05/24/2022 09:00:00 AM,05/25/2022 03:00:00 AM,05/19/2022 01:42:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, FERRIS STREET between VAN DYKE STREET and COFFEY STREET, COFFEY STREET between FERRIS STREET and DEAD END, BAY STREET between COLUMBIA STREET and CLINTON STREET, MANSION AVENUE between YACHT CLUB COVE and CLEVELAND AVENUE",Staten Island,"3, 6","122, 76",Television,Not Applicable,United States of America,"10308, 11231"
+648739,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 09:00:00 PM,05/18/2022 11:46:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between AVENUE H and GLENWOOD ROAD, AVENUE H between EAST 19 STREET and CAMPUS ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,"11210, 11230"
+648728,Shooting Permit,05/23/2022 09:00:00 AM,05/24/2022 03:00:00 AM,05/18/2022 10:13:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between CONGRESS STREET and VERANDAH PLACE, BALTIC STREET between COURT STREET and CLINTON STREET, COURT STREET between WYCKOFF STREET and BALTIC STREET, WARREN STREET between COURT STREET and SMITH STREET, COURT STREET between PACIFIC STREET and WYCKOFF STREET, COURT STREET between BUTLER STREET and DEGRAW STREET, KANE STREET between COURT STREET and TOMPKINS PLACE, ATLANTIC AVENUE between HENRY STREET and COURT STREET, COURT STREET between BALTIC STREET and KANE STREET",Brooklyn,"2, 6","76, 84",Television,Not Applicable,United States of America,"11201, 11231"
+648696,Shooting Permit,05/20/2022 11:00:00 AM,05/21/2022 02:00:00 AM,05/18/2022 07:52:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 53 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+648641,Shooting Permit,05/27/2022 10:00:00 AM,05/28/2022 12:00:00 AM,05/18/2022 04:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and JOHNSON STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, REMSEN STREET between HICKS STREET and HENRY STREET, REMSEN STREET between CLINTON STREET and COURT STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+648590,Shooting Permit,05/23/2022 09:00:00 AM,05/23/2022 11:00:00 PM,05/18/2022 02:53:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONEY ISLAND AVENUE between BEVERLY ROAD and AVENUE C, CONEY ISLAND AVENUE between AVENUE C and DORCHESTER ROAD, AVENUE C between CONEY ISLAND AVENUE and EAST 8 STREET, EAST 9 STREET between BEVERLY ROAD and AVENUE C, CORTELYOU ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11218
+648586,Shooting Permit,05/25/2022 08:00:00 AM,05/25/2022 01:00:00 PM,05/18/2022 02:43:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between SOUTH 5 STREET and SOUTH 6 STREET,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11211
+648576,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 10:00:00 PM,05/18/2022 02:27:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between REVIEW AVENUE and VAN DAM STREET, REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+648565,Shooting Permit,05/26/2022 09:00:00 AM,05/26/2022 11:00:00 PM,05/18/2022 02:01:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, MONTAGUE TERRACE between MONTAGUE STREET and REMSEN STREET, CADMAN PLAZA WEST between MIDDAGH STREET and JOHNSON STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, MONTAGUE STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between HICKS STREET and HENRY STREET, REMSEN STREET between COURT STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+648553,Shooting Permit,05/31/2022 07:00:00 AM,05/31/2022 06:00:00 PM,05/18/2022 01:43:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH,Queens,1,114,Still Photography,Not Applicable,United States of America,11105
+648537,Theater Load in and Load Outs,05/25/2022 12:01:00 AM,05/26/2022 06:00:00 AM,05/18/2022 01:15:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+648533,Shooting Permit,05/20/2022 05:00:00 PM,05/21/2022 07:00:00 AM,05/18/2022 01:12:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and LAIGHT STREET, SOUTH END AVENUE between LIBERTY STREET and WEST THAMES STREET, ALBANY STREET between DEAD END and WEST STREET, SOUTH END AVENUE between RECTOR PLACE and RECTOR PLACE, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10001, 10013, 10280, 10282"
+648530,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 10:00:00 PM,05/18/2022 01:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+648488,Shooting Permit,05/20/2022 06:00:00 AM,05/20/2022 09:00:00 AM,05/18/2022 11:22:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 6 AVENUE and ROCKEFELLER PLAZA,Manhattan,5,18,Television,Variety,United States of America,"10020, 10112"
+648485,Shooting Permit,05/22/2022 07:00:00 AM,05/22/2022 07:00:00 PM,05/18/2022 11:14:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 71 STREET between LEXINGTON AVENUE and THIRD AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+648477,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 09:00:00 PM,05/18/2022 10:52:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",JAY STREET between WATER STREET and FRONT STREET,Manhattan,2,"6, 84",Still Photography,Not Applicable,United States of America,"10014, 11201"
+648468,Shooting Permit,05/20/2022 07:00:00 AM,05/20/2022 07:00:00 PM,05/18/2022 10:29:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between CHURCH AVENUE and ALBERMARLE ROAD, MARLBOROUGH ROAD between ALBERMARLE ROAD and BEVERLY ROAD",Brooklyn,14,70,Still Photography,Not Applicable,United States of America,"11218, 11226"
+648464,Shooting Permit,05/21/2022 07:00:00 AM,05/21/2022 09:00:00 PM,05/18/2022 10:23:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT STREET between HICKS STREET and WILLOW STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+648462,Theater Load in and Load Outs,05/23/2022 12:01:00 AM,05/23/2022 11:59:00 PM,05/18/2022 10:22:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+648423,Shooting Permit,05/24/2022 07:00:00 AM,05/24/2022 07:00:00 PM,05/18/2022 05:54:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 56 AVENUE and 55 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+648418,Shooting Permit,05/20/2022 11:00:00 AM,05/21/2022 05:00:00 AM,05/17/2022 11:46:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCDONALD AVENUE between AVENUE S and AVENUE T,Brooklyn,"11, 15","61, 62",Television,Episodic series,United States of America,11223
+648402,Shooting Permit,05/25/2022 06:00:00 AM,05/25/2022 07:00:00 PM,05/17/2022 08:59:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between DITMARS BOULEVARD and 22 DRIVE, DITMARS BOULEVARD between 19 STREET and SHORE BOULEVARD, 21 DRIVE between SHORE BOULEVARD and 19 STREET",Queens,"1, 14","101, 114",Commercial,Commercial,United States of America,"11105, 11691"
+648400,Shooting Permit,05/20/2022 01:00:00 PM,05/20/2022 10:30:00 PM,05/17/2022 08:30:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 75 STREET and EAST 74 STREET,Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10021
+648389,Shooting Permit,05/20/2022 01:00:00 PM,05/21/2022 03:00:00 AM,05/17/2022 07:37:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+648385,Shooting Permit,05/23/2022 11:00:00 AM,05/24/2022 03:00:00 AM,05/17/2022 07:18:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCUS GARVEY BOULEVARD between BROADWAY and PARK AVENUE, PARK AVENUE between MARCUS GARVEY BOULEVARD and THROOP AVENUE, PARK AVENUE between MARCUS GARVEY BOULEVARD and BROADWAY",Brooklyn,"1, 3","79, 81, 90",Film,Feature,United States of America,11206
+648319,Shooting Permit,05/20/2022 02:00:00 PM,05/21/2022 03:30:00 AM,05/17/2022 03:41:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 74 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 76 STREET and EAST 75 STREET, 5 AVENUE between EAST 76 STREET and EAST 77 STREET, 5 AVENUE between EAST 74 STREET and EAST 75 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 74 STREET and EAST 76 STREET, MADISON AVENUE between EAST 77 STREET and EAST 79 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, PARK AVENUE between EAST 72 STREET and EAST 80 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+648311,Theater Load in and Load Outs,05/19/2022 12:01:00 AM,05/20/2022 06:00:00 AM,05/17/2022 03:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+648299,Shooting Permit,05/20/2022 07:00:00 AM,05/20/2022 10:00:00 PM,05/17/2022 02:49:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+648297,Theater Load in and Load Outs,05/25/2022 12:01:00 AM,05/26/2022 06:00:00 AM,05/17/2022 02:48:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+648281,Theater Load in and Load Outs,05/21/2022 06:00:00 AM,05/22/2022 11:00:00 PM,05/17/2022 02:13:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+648277,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 10:00:00 PM,05/17/2022 01:58:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 72 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 72 STREET and WEST 71 STREET, CENTRAL PARK WEST between WEST 71 STREET and WEST 70 STREET, 5 AVENUE between EAST 79 STREET and EAST 76 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 74 STREET and EAST 72 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 105 STREET and EAST 102 STREET, EAST 102 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 106 STREET and EAST 101 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64, 7, 8","19, 20, 22, 23",Television,Cable-episodic,United States of America,"10021, 10023, 10029, 10075"
+648275,Theater Load in and Load Outs,05/20/2022 06:00:00 AM,05/21/2022 05:00:00 AM,05/17/2022 01:58:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+648260,Theater Load in and Load Outs,05/19/2022 06:00:00 AM,05/20/2022 05:30:00 AM,05/17/2022 01:24:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+648259,Shooting Permit,05/23/2022 07:00:00 AM,05/23/2022 09:00:00 PM,05/17/2022 01:23:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between PRINCE STREET and SPRING STREET, GREENE STREET between SPRING STREET and BROOME STREET",Manhattan,2,1,Still Photography,Not Applicable,United States of America,10012
+648258,Theater Load in and Load Outs,05/22/2022 12:01:00 AM,05/24/2022 06:00:00 AM,05/17/2022 01:22:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+648251,Theater Load in and Load Outs,05/21/2022 12:01:00 AM,05/21/2022 11:59:00 PM,05/17/2022 01:11:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+648240,Theater Load in and Load Outs,05/20/2022 12:01:00 AM,05/20/2022 11:59:00 PM,05/17/2022 12:46:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+648224,Theater Load in and Load Outs,05/18/2022 06:00:00 AM,05/18/2022 11:59:00 PM,05/17/2022 12:26:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+648183,Shooting Permit,05/25/2022 07:00:00 AM,05/25/2022 07:00:00 PM,05/17/2022 11:09:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 75 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"00083, 10021"
+648176,Shooting Permit,05/23/2022 08:00:00 AM,05/23/2022 09:00:00 PM,05/17/2022 10:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+648175,Shooting Permit,05/19/2022 12:00:00 AM,05/19/2022 11:45:00 PM,05/17/2022 10:54:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","42 STREET between 3 AVENUE and 4 AVENUE, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,"1, 7","72, 90",Film,Feature,United States of America,"11232, 11237"
+648169,Shooting Permit,05/19/2022 10:00:00 AM,05/19/2022 11:00:00 PM,05/17/2022 10:46:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+648160,Shooting Permit,06/11/2022 05:00:00 AM,06/12/2022 06:00:00 PM,05/17/2022 10:30:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between FIFTH AVENUE and MADISON AVENUE,Manhattan,8,19,Television,News,United States of America,10021
+648158,Shooting Permit,05/19/2022 06:00:00 AM,05/19/2022 06:00:00 PM,05/17/2022 10:26:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 6 STREET between AVENUE A and AVENUE B,Manhattan,3,"5, 9",Still Photography,Not Applicable,United States of America,"10002, 10009"
+648089,Shooting Permit,05/20/2022 09:00:00 AM,05/20/2022 05:00:00 PM,05/16/2022 11:28:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",PINE STREET between WILLIAM STREET and NASSAU STREET,Manhattan,1,1,Film,Feature,United States of America,10005
+648085,Shooting Permit,05/20/2022 07:00:00 AM,05/20/2022 08:00:00 PM,05/16/2022 11:23:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",GATES AVENUE between CAMBRIDGE PLACE and ST JAMES PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+648081,Shooting Permit,05/19/2022 12:00:00 PM,05/20/2022 02:00:00 AM,05/16/2022 10:37:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 44 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 43 STREET between FIFTH AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 45 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 43 STREET between FIFTH AVENUE and SIXTH AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+648032,Shooting Permit,05/20/2022 08:00:00 AM,05/21/2022 01:00:00 AM,05/16/2022 06:15:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between DRIGGS AVENUE and BEDFORD AVENUE, SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 6 STREET between BERRY STREET and WYTHE AVENUE, BROADWAY between DUNHAM PLACE and BERRY STREET, SOUTH 5 STREET between KENT AVENUE and DRIGGS AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+648023,Theater Load in and Load Outs,05/17/2022 02:00:00 PM,05/18/2022 11:59:00 PM,05/16/2022 05:31:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 7 AVENUE and BROADWAY,Manhattan,5,18,Theater,Theater,United States of America,10019
+648001,Shooting Permit,05/20/2022 01:00:00 PM,05/21/2022 04:00:00 AM,05/16/2022 04:46:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 25 STREET between 6 AVENUE and 7 AVENUE, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between 6 AVENUE and 7 AVENUE, WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 27 STREET between 6 AVENUE and BROADWAY, WEST 23 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5",13,Television,Episodic series,United States of America,"10001, 10010"
+647993,Shooting Permit,05/19/2022 12:00:00 PM,05/20/2022 04:00:00 AM,05/16/2022 04:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between CATHERINE STREET and MARKET STREET, CATHERINE STREET between EAST BROADWAY and MONROE STREET, MONROE STREET between CATHERINE STREET and MARKET STREET, ESSEX STREET between CANAL STREET and BROOME STREET, MARKET STREET between HENRY STREET and MONROE STREET, EAST BROADWAY between FORSYTH STREET and MARKET STREET",Manhattan,3,"5, 7",Television,Cable-episodic,United States of America,"10002, 10038"
+647964,Shooting Permit,05/19/2022 06:00:00 AM,05/20/2022 03:00:00 AM,05/16/2022 03:45:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK WEST between CARROLL STREET and 2 STREET, GARFIELD PLACE between 8 AVENUE and PROSPECT PARK WEST, 2 STREET between 8 AVENUE and PROSPECT PARK WEST, LINCOLN PLACE between 8 AVENUE and PLAZA ST WEST, PLAZA ST WEST between LINCOLN PLACE and ST JOHNS PLACE, WASHINGTON AVENUE between EASTERN PARKWAY and CROWN STREET, PROSPECT PARK WEST between PLAZA ST WEST and PRESIDENT STREET",Brooklyn,"19, 55, 6, 9","71, 78",Television,Episodic series,United States of America,"11215, 11217, 11225"
+647949,Theater Load in and Load Outs,05/18/2022 12:01:00 AM,05/18/2022 11:59:00 PM,05/16/2022 03:30:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+647946,Shooting Permit,05/20/2022 08:00:00 AM,05/20/2022 11:00:00 PM,05/16/2022 03:28:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLAS BOULEVARD between WEST 141 STREET and WEST 137 STREET, WEST 139 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLAS BOULEVARD, WEST 137 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 139 STREET and WEST 136 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 111 STREET, WEST 114 STREET between ADAM CLAYTON POWELL JR BOULEVARD and SAINT NICHOLAS AVENUE, SAINT NICHOLAS AVENUE between WEST 115 STREET and WEST 113 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 117 STREET, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 120 STREET and WEST 119 STREET, MALCOLM X BOULEVARD between WEST 119 STREET and WEST 118 STREET, MALCOLM X BOULEVARD between WEST 117 STREET and WEST 116 STREET, CENTRAL PARK NORTH between FREDERICK DOUGLASS CIRCLE and MALCOLM X BOULEVARD",Manhattan,"10, 64","22, 28, 32",Television,Cable-episodic,United States of America,"10026, 10027, 10030"
+647944,Shooting Permit,05/18/2022 07:00:00 AM,05/18/2022 10:00:00 PM,05/16/2022 03:21:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11205
+647943,Shooting Permit,05/19/2022 07:30:00 AM,05/20/2022 12:30:00 AM,05/16/2022 03:19:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","ORANGE STREET between HICKS STREET and HENRY STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and VINE STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, COLUMBIA HEIGHTS between DOUGHTY STREET and VINE STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET, PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+647941,Shooting Permit,05/17/2022 06:00:00 AM,05/17/2022 09:00:00 PM,05/16/2022 03:16:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11205
+647935,Shooting Permit,05/23/2022 12:00:00 PM,05/23/2022 08:00:00 PM,05/16/2022 03:09:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLERMONT AVENUE between GREENE AVENUE and FULTON STREET,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+647930,Theater Load in and Load Outs,05/19/2022 12:01:00 AM,05/19/2022 11:59:00 PM,05/16/2022 03:01:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+647927,Theater Load in and Load Outs,05/18/2022 12:01:00 AM,05/18/2022 11:59:00 PM,05/16/2022 02:54:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+647920,Theater Load in and Load Outs,05/23/2022 12:01:00 AM,05/24/2022 06:00:00 AM,05/16/2022 02:42:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+647919,Theater Load in and Load Outs,05/17/2022 01:00:00 AM,05/20/2022 11:59:00 PM,05/16/2022 02:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between BROADWAY and 8 AVENUE, WEST 48 STREET between BROADWAY and 8 AVENUE",Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+647914,Theater Load in and Load Outs,06/12/2022 07:00:00 AM,06/12/2022 11:00:00 PM,05/16/2022 02:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+647913,Theater Load in and Load Outs,06/06/2022 07:00:00 AM,06/06/2022 11:00:00 PM,05/16/2022 02:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+647912,Theater Load in and Load Outs,06/04/2022 07:00:00 AM,06/04/2022 07:00:00 PM,05/16/2022 02:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+647898,Shooting Permit,05/19/2022 07:00:00 PM,05/19/2022 11:00:00 PM,05/16/2022 02:14:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 53 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+647897,Theater Load in and Load Outs,05/22/2022 12:01:00 AM,05/22/2022 11:59:00 PM,05/16/2022 02:14:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+647894,Shooting Permit,05/18/2022 12:00:00 PM,05/19/2022 04:00:00 AM,05/16/2022 02:06:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON STREET between CATHERINE STREET and MARKET STREET,Manhattan,3,5,Television,Cable-episodic,United States of America,10002
+647893,Shooting Permit,05/18/2022 12:00:00 PM,05/19/2022 04:00:00 AM,05/16/2022 02:05:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 33 STREET between 8 AVENUE and 9 AVENUE, WEST 33 STREET between 9 AVENUE and 10 AVENUE, MECHANICS ALLEY between HENRY STREET and MADISON STREET, 9 AVENUE between WEST 33 STREET and WEST 34 STREET, WEST 31 STREET between 8 AVENUE and 9 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 26 STREET and WEST 27 STREET, 10 AVENUE between WEST 28 STREET and WEST 29 STREET, HENRY STREET between CATHERINE STREET and MARKET STREET, HENRY STREET between MARKET STREET and MECHANICS ALLEY, ESSEX STREET between CANAL STREET and BROOME STREET, MARKET STREET between EAST BROADWAY and MONROE STREET, EAST BROADWAY between FORSYTH STREET and MARKET STREET, HENRY STREET between PIKE STREET and FORSYTH STREET, MADISON STREET between MECHANICS ALLEY and PIKE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET",Manhattan,"3, 4","10, 14, 5, 7",Television,Cable-episodic,United States of America,"10001, 10002"
+647890,Theater Load in and Load Outs,05/19/2022 12:01:00 AM,05/20/2022 06:00:00 AM,05/16/2022 02:01:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+647872,Shooting Permit,05/25/2022 06:00:00 AM,05/25/2022 07:00:00 PM,05/16/2022 01:31:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 72 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,"64, 7","20, 22",Still Photography,Not Applicable,United States of America,"10023, 10024"
+647862,Theater Load in and Load Outs,05/18/2022 12:01:00 AM,05/18/2022 11:59:00 PM,05/16/2022 01:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+647856,Theater Load in and Load Outs,06/02/2022 07:00:00 AM,06/02/2022 11:59:00 PM,05/16/2022 01:02:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+647844,Shooting Permit,05/19/2022 07:00:00 AM,05/19/2022 07:30:00 PM,05/16/2022 12:45:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",PAIDGE AVENUE between PROVOST STREET and DEAD END,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+647828,Shooting Permit,05/19/2022 07:00:00 AM,05/19/2022 07:00:00 PM,05/16/2022 12:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between 5 AVENUE and MADISON AVENUE, CENTRAL PARK WEST between WEST 72 STREET and WEST 73 STREET",Manhattan,"5, 64, 7","13, 20, 22",Commercial,Commercial,United States of America,"10016, 10023"
+647824,Shooting Permit,05/23/2022 11:30:00 AM,05/24/2022 03:00:00 AM,05/16/2022 12:19:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+647823,Shooting Permit,05/24/2022 01:00:00 PM,05/25/2022 05:00:00 AM,05/16/2022 12:18:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+647804,Theater Load in and Load Outs,05/22/2022 12:01:00 AM,05/23/2022 06:00:00 AM,05/16/2022 11:40:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 36 STREET and WEST 37 STREET, WEST 36 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 36 STREET and WEST 37 STREET",Manhattan,5,14,Theater,Theater,United States of America,10018
+647794,Theater Load in and Load Outs,05/20/2022 12:01:00 AM,05/21/2022 06:00:00 AM,05/16/2022 11:17:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+647793,Shooting Permit,05/20/2022 06:00:00 AM,05/20/2022 11:59:00 PM,05/16/2022 11:15:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between GREENWICH STREET and COLLISTER STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET",Manhattan,1,1,Theater,Theater,United States of America,10013
+647745,Shooting Permit,05/18/2022 07:00:00 AM,05/18/2022 09:00:00 PM,05/16/2022 09:12:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+647734,Shooting Permit,05/19/2022 09:00:00 AM,05/19/2022 09:00:00 PM,05/16/2022 07:46:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 13 STREET between AVENUE U and AVENUE V, AVENUE U between EAST 14 STREET and EAST 13 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11229
+647696,Shooting Permit,05/18/2022 09:00:00 AM,05/18/2022 09:00:00 PM,05/15/2022 09:22:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",86 STREET between 24 AVENUE and BAY 37 STREET,Brooklyn,"11, 13","60, 62",Television,Episodic series,United States of America,"11214, 11224"
+647682,Shooting Permit,05/18/2022 07:00:00 AM,05/18/2022 10:00:00 PM,05/15/2022 08:00:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between NORTH 4 STREET and NORTH 5 STREET, NORTH 5 STREET between BERRY STREET and BEDFORD AVENUE, NORTH 5 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 4 STREET between BERRY STREET and BEDFORD AVENUE, METROPOLITAN AVENUE between BEDFORD AVENUE and BERRY STREET, METROPOLITAN AVENUE between BERRY STREET and WYTHE AVENUE, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 4 STREET between BEDFORD AVENUE and DRIGGS AVENUE, NORTH 3 STREET between BEDFORD AVENUE and METROPOLITAN AVENUE, NORTH 3 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,"1, 5","18, 90, 94",Television,Episodic series,United States of America,"10019, 11211, 11222, 11249"
+647655,Shooting Permit,05/18/2022 04:00:00 PM,05/19/2022 01:00:00 AM,05/15/2022 05:24:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between GOUVERNEUR LANE and WALL STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between PEARL STREET and WATER STREET, MAIDEN LANE between WATER STREET and FRONT STREET, JOHN STREET between WATER STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET, PEARL STREET between BEEKMAN STREET and PECK SLIP, SOUTH STREET between JOHN STREET and FULTON STREET, SOUTH STREET between FULTON STREET and BEEKMAN STREET, PEARL STREET between PECK SLIP and DOVER STREET, DOVER STREET between PEARL STREET and WATER STREET, DOVER STREET between WATER STREET and FRONT STREET, WATER STREET between PECK SLIP and DOVER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10005, 10038"
+647631,DCAS Prep/Shoot/Wrap Permit,05/18/2022 06:00:00 PM,05/18/2022 10:00:00 PM,05/15/2022 12:10:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between DUANE STREET and READE STREET,Manhattan,1,5,Television,Episodic series,United States of America,10007
+647623,Shooting Permit,05/18/2022 12:00:00 PM,05/19/2022 03:00:00 AM,05/15/2022 11:02:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between NOSTRAND AVENUE and ROGERS AVENUE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, NOSTRAND AVENUE between PARK PLACE and PROSPECT PLACE, NOSTRAND AVENUE between PARK PLACE and STERLING PLACE, STERLING PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, STERLING PLACE between ROGERS AVENUE and NOSTRAND AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, FULTON STREET between NEW YORK AVENUE and BEDFORD AVENUE",Brooklyn,"3, 8","77, 79",Television,Not Applicable,United States of America,11216
+647448,Theater Load in and Load Outs,05/17/2022 06:00:00 AM,05/17/2022 11:59:00 PM,05/13/2022 05:08:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,20,Theater,Theater,United States of America,10023
+647449,Theater Load in and Load Outs,05/22/2022 06:00:00 AM,05/22/2022 11:59:00 PM,05/13/2022 05:08:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,7,20,Theater,Theater,United States of America,10023
+647435,Shooting Permit,05/20/2022 11:00:00 AM,05/21/2022 01:00:00 AM,05/13/2022 04:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 4 STREET and EAST 5 STREET, EAST 3 STREET between BOWERY and 2 AVENUE, EAST 5 STREET between COOPER SQUARE and 2 AVENUE, EAST 4 STREET between BOWERY and 2 AVENUE",Manhattan,"2, 3",9,Film,Feature,United States of America,10003
+647419,Shooting Permit,05/20/2022 12:00:00 PM,05/21/2022 05:00:00 AM,05/13/2022 03:54:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARCUS GARVEY BOULEVARD between BROADWAY and PARK AVENUE, PARK AVENUE between MARCUS GARVEY BOULEVARD and THROOP AVENUE, PARK AVENUE between MARCUS GARVEY BOULEVARD and BROADWAY",Brooklyn,3,"79, 81",Film,Feature,United States of America,11206
+647418,Shooting Permit,05/19/2022 12:00:00 PM,05/20/2022 04:00:00 AM,05/13/2022 03:50:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between MALCOLM X BOULEVARD and 5 AVENUE, 5 AVENUE between WEST 135 STREET and WEST 132 STREET, LENOX TERRACE PLACE between WEST 135 STREET and WEST 134 STREET, LENOX TERRACE PLACE between WEST 134 STREET and WEST 135 STREET, WEST 13 STREET between 7 AVENUE and GREENWICH AVENUE, 7 AVENUE between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"10, 11, 2","25, 32, 6",Film,Feature,United States of America,"10011, 10037"
+647407,Shooting Permit,05/19/2022 08:00:00 AM,05/19/2022 10:00:00 PM,05/13/2022 03:25:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+647393,Shooting Permit,05/18/2022 09:00:00 AM,05/18/2022 11:59:00 PM,05/13/2022 03:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 PLACE between CLINTON STREET and HENRY STREET, 3 PLACE between HENRY STREET and CLINTON STREET, COURT STREET between 1 PLACE and 3 PLACE, COURT STREET between 4 PLACE and LUQUER STREET, COURT STREET between 3 PLACE and 4 PLACE, HENRY STREET between 2 PLACE and 4 PLACE, SMITH STREET between HUNTINGTON STREET and 3 STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+647365,Theater Load in and Load Outs,05/17/2022 12:01:00 AM,05/17/2022 11:59:00 PM,05/13/2022 02:11:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+647362,Theater Load in and Load Outs,05/17/2022 02:01:00 AM,05/17/2022 11:59:00 PM,05/13/2022 02:03:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+647354,Shooting Permit,05/17/2022 07:00:00 AM,05/17/2022 09:00:00 PM,05/13/2022 01:47:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CARROLL STREET between CLINTON STREET and COURT STREET, CLINTON STREET between CARROLL STREET and PRESIDENT STREET, CLINTON STREET between CARROLL STREET and 1 PLACE, CARROLL STREET between HENRY STREET and CLINTON STREET, HICKS STREET between KANE STREET and RAPELYE STREET, COURT STREET between DE GRAW STREET and 2 PLACE",Brooklyn,"6, 7","72, 76",Television,Episodic series,United States of America,"11231, 11232"
+647348,Shooting Permit,05/18/2022 06:00:00 AM,05/18/2022 11:59:00 PM,05/13/2022 01:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODPOINT ROAD between FROST STREET and MASPETH AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and WOODPOINT ROAD, SKILLMAN AVENUE between WOODPOINT ROAD and KINGSLAND AVENUE, CONSELYEA STREET between HUMBOLDT STREET and WOODPOINT ROAD, HUMBOLDT STREET between CONSELYEA STREET and MASPETH AVENUE, JACKSON STREET between HUMBOLDT STREET and WOODPOINT ROAD, WITHERS STREET between HUMBOLDT STREET and WOODPOINT ROAD, HUMBOLDT STREET between FROST STREET and WITHERS STREET, CONSELYEA STREET between LEONARD STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11211
+647340,Shooting Permit,05/19/2022 09:00:00 AM,05/19/2022 11:59:00 PM,05/13/2022 01:15:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELDRIDGE STREET between DELANCEY STREET and BROOME STREET, ELDRIDGE STREET between BROOME STREET and GRAND STREET, ELDRIDGE STREET between GRAND STREET and HESTER STREET, FORSYTH STREET between BROOME STREET and GRAND STREET",Manhattan,3,5,Film,Feature,United States of America,10002
+647337,Shooting Permit,05/24/2022 08:00:00 AM,05/24/2022 10:00:00 PM,05/13/2022 12:57:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 104 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 105 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, MADISON AVENUE between EAST 106 STREET and EAST 102 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 102 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 49 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 49 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"11, 5, 6, 64","17, 18, 22, 23",Television,Episodic series,United States of America,"10017, 10022, 10029, 10152, 10171, 10172"
+647331,Shooting Permit,05/22/2022 12:00:00 PM,05/23/2022 02:00:00 AM,05/13/2022 12:41:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 47 STREET between 1 AVENUE and 2 AVENUE, 1 AVE between EAST 46 STREET and EAST 45 STREET, United Nations Plaza between E 46 Street and E 47 Street",Manhattan,6,17,Film,Feature,United States of America,10017
+647278,Theater Load in and Load Outs,05/14/2022 06:00:00 AM,05/21/2022 11:00:00 PM,05/13/2022 10:56:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 60 STREET and EAST 61 STREET, EAST 60 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,8,19,Television,Cable-other,United States of America,"10022, 10065"
+647270,Shooting Permit,05/18/2022 08:00:00 AM,05/18/2022 11:00:00 PM,05/13/2022 10:28:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+647268,Shooting Permit,05/17/2022 07:00:00 AM,05/17/2022 10:00:00 PM,05/13/2022 10:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+647234,Shooting Permit,05/19/2022 05:00:00 PM,05/20/2022 07:00:00 AM,05/13/2022 09:05:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and LAIGHT STREET, SOUTH END AVENUE between LIBERTY STREET and WEST THAMES STREET, WEST 27 STREET between 11 AVENUE and 10 AVENUE",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10001, 10013, 10280, 10282"
+647231,Shooting Permit,05/22/2022 06:00:00 AM,05/22/2022 11:59:00 PM,05/13/2022 08:55:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between GREENWICH STREET and COLLISTER STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET",Manhattan,1,1,Television,Cable-other,United States of America,10013
+647230,Shooting Permit,05/21/2022 06:00:00 AM,05/21/2022 11:59:00 PM,05/13/2022 08:55:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between GREENWICH STREET and COLLISTER STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET",Manhattan,1,1,Television,Cable-other,United States of America,10013
+647227,Shooting Permit,05/18/2022 04:00:00 AM,05/18/2022 07:00:00 PM,05/13/2022 08:35:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROAD STREET between SOUTH STREET and WATER STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10004, 10005, 10041"
+647226,Shooting Permit,05/17/2022 07:00:00 AM,05/17/2022 07:00:00 PM,05/13/2022 08:35:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROAD STREET between SOUTH STREET and WATER STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10004, 10005, 10041"
+647216,Shooting Permit,05/17/2022 06:00:00 AM,05/17/2022 09:00:00 PM,05/13/2022 07:05:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between DOUGHTY STREET and CRANBERRY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+647205,Shooting Permit,05/16/2022 07:00:00 AM,05/16/2022 10:00:00 PM,05/12/2022 11:44:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MCGUINNESS BOULEVARD and ECKFORD STREET, NORMAN AVENUE between ECKFORD STREET and MCGUINNESS BOULEVARD, NORMAN AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MESEROLE AVENUE between JEWEL STREET and DIAMOND STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+647200,Shooting Permit,05/17/2022 12:00:00 PM,05/18/2022 03:00:00 AM,05/12/2022 11:20:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between NEW YORK AVENUE and BEDFORD AVENUE, PROSPECT PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST MARKS AVENUE between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between BERGEN STREET and PROSPECT PLACE, NOSTRAND AVENUE between PARK PLACE and PROSPECT PLACE, PARK PLACE between NOSTRAND AVENUE and NEW YORK AVENUE, ST MARKS AVENUE between NOSTRAND AVENUE and NEW YORK AVENUE, BERGEN STREET between NOSTRAND AVENUE and NEW YORK AVENUE",Brooklyn,"3, 8","77, 79",Television,Not Applicable,United States of America,11216
+647179,Shooting Permit,05/18/2022 11:00:00 AM,05/19/2022 03:00:00 AM,05/12/2022 07:46:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between MALCOLM X BOULEVARD and 5 AVENUE, 5 AVENUE between WEST 135 STREET and WEST 132 STREET, LENOX TERRACE PLACE between WEST 135 STREET and WEST 134 STREET, LENOX TERRACE PLACE between WEST 135 STREET and WEST 134 STREET",Manhattan,"10, 11","25, 32",Film,Feature,United States of America,10037
+647172,Shooting Permit,05/17/2022 05:00:00 PM,05/18/2022 03:00:00 AM,05/12/2022 07:12:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","CARLTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE, CARLTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE, CARLTON AVENUE between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between CARLTON AVENUE and ADELPHI STREET",Brooklyn,2,88,Television,Variety,United States of America,11205
+647171,Shooting Permit,05/20/2022 06:30:00 AM,05/20/2022 11:30:00 PM,05/12/2022 07:08:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+647169,Theater Load in and Load Outs,05/21/2022 05:00:00 AM,05/22/2022 11:00:00 PM,05/12/2022 06:52:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between ROCKEFELLER PLAZA and 6 AVENUE, WEST 50 STREET between ROCKEFELLER PLAZA and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+647164,Shooting Permit,05/14/2022 05:00:00 AM,05/14/2022 11:00:00 AM,05/12/2022 06:17:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+647161,Shooting Permit,05/20/2022 06:00:00 AM,05/20/2022 04:00:00 PM,05/12/2022 05:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH,Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+647120,Shooting Permit,05/22/2022 06:00:00 AM,05/23/2022 06:00:00 PM,05/12/2022 04:30:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 8 STREET between SURF AVENUE and SHEEPSHEAD BAY ROAD,Brooklyn,13,60,Film,Feature,United States of America,11224
+647118,Shooting Permit,05/17/2022 06:00:00 AM,05/17/2022 11:00:00 PM,05/12/2022 04:26:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ORCHARD STREET between CANAL STREET and DIVISION STREET, ALLEN STREET between CANAL STREET and DIVISION STREET, ORCHARD STREET between CANAL STREET and HESTER STREET",Manhattan,3,"5, 7",Commercial,Commercial,United States of America,10002
+647117,Shooting Permit,05/18/2022 07:00:00 AM,05/18/2022 07:00:00 PM,05/12/2022 04:26:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 28 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,5,13,Commercial,Commercial,United States of America,"10001, 10016"
+647114,Shooting Permit,05/23/2022 06:00:00 AM,05/24/2022 06:00:00 PM,05/12/2022 04:23:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 8 STREET between SURF AVENUE and SHEEPSHEAD BAY ROAD,Brooklyn,13,60,Film,Feature,United States of America,11224
+647110,Theater Load in and Load Outs,05/18/2022 06:00:00 AM,05/19/2022 05:30:00 AM,05/12/2022 04:07:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+647107,Theater Load in and Load Outs,05/17/2022 05:45:00 AM,05/18/2022 05:30:00 PM,05/12/2022 03:58:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+647105,Theater Load in and Load Outs,05/16/2022 06:00:00 AM,05/17/2022 05:30:00 AM,05/12/2022 03:51:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+647098,Theater Load in and Load Outs,05/14/2022 05:00:00 AM,05/15/2022 11:00:00 PM,05/12/2022 03:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+647095,Shooting Permit,05/17/2022 08:00:00 AM,05/18/2022 01:00:00 AM,05/12/2022 03:29:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between ELIZABETH STREET and MOTT STREET, KENMARE STREET between ELIZABETH STREET and BOWERY, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between GRAND STREET and BROOME STREET, BOWERY between BROOME STREET and DELANCEY STREET, BOWERY between KENMARE STREET and SPRING STREET, BOWERY between SPRING STREET and PRINCE STREET, BOWERY between PRINCE STREET and EAST HOUSTON STREET, ELDRIDGE STREET between DELANCEY STREET and RIVINGTON STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+647078,Shooting Permit,05/18/2022 08:00:00 AM,05/18/2022 11:00:00 PM,05/12/2022 03:07:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 23 ROAD and 23 TERRACE, 23 DRIVE between 21 STREET and 23 STREET, 21 STREET between 23 ROAD and 23 TERRACE, 19 STREET between DITMARS BOULEVARD and 23 ROAD",Queens,1,114,Television,Cable-episodic,United States of America,11105
+647076,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 07:30:00 PM,05/12/2022 03:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between VANDERBILT AVENUE and PARK HILL AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+647057,Shooting Permit,05/17/2022 06:00:00 AM,05/17/2022 08:00:00 PM,05/12/2022 02:31:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 STREET between 7 AVENUE and 8 AVENUE,Brooklyn,6,78,Commercial,Commercial,United States of America,11215
+647035,Shooting Permit,05/18/2022 09:30:00 AM,05/18/2022 11:30:00 PM,05/12/2022 01:59:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+647031,Shooting Permit,05/17/2022 09:00:00 AM,05/17/2022 10:00:00 PM,05/12/2022 01:50:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+647020,Shooting Permit,05/17/2022 06:00:00 AM,05/17/2022 06:00:00 PM,05/12/2022 01:17:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 12 AVENUE and 11 AVENUE,Manhattan,4,18,Commercial,Promo,United States of America,10019
+647017,Shooting Permit,05/20/2022 06:00:00 AM,05/20/2022 01:00:00 PM,05/12/2022 01:05:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",GERARD AVENUE between EAST 158 STREET and EAST 161 STREET,Bronx,4,44,Film,Feature,United States of America,10451
+647004,Shooting Permit,05/17/2022 07:00:00 AM,05/18/2022 01:00:00 PM,05/12/2022 12:41:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, SMITH STREET between BAY STREET and HALLECK STREET, COLUMBIA STREET between DEAD END and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+646999,Shooting Permit,05/13/2022 11:00:00 AM,05/14/2022 03:00:00 AM,05/12/2022 12:31:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE",Brooklyn,"18, 5","69, 75",Television,Episodic series,United States of America,"11207, 11236"
+646986,Shooting Permit,05/17/2022 10:00:00 AM,05/18/2022 02:00:00 AM,05/12/2022 12:08:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 32 STREET between MADISON AVENUE and PARK AVENUE, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET",Manhattan,5,14,Film,Feature,United States of America,10016
+646919,Shooting Permit,05/18/2022 05:00:00 PM,05/19/2022 07:00:00 AM,05/12/2022 09:34:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and LAIGHT STREET, SOUTH END AVENUE between LIBERTY STREET and WEST THAMES STREET, WEST 27 STREET between 11 AVENUE and 10 AVENUE",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10001, 10013, 10280, 10282"
+646916,Shooting Permit,05/13/2022 02:00:00 PM,05/14/2022 04:00:00 AM,05/12/2022 09:26:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+646911,Shooting Permit,05/16/2022 09:00:00 AM,05/16/2022 11:59:00 PM,05/12/2022 09:03:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 80 STREET and EAST 84 STREET, EAST 80 STREET between 1 AVENUE and YORK AVENUE, 1 AVENUE between EAST 83 STREET and EAST 84 STREET, 1 AVENUE between EAST 84 STREET and EAST 86 STREET, EAST 83 STREET between 1 AVENUE and YORK AVENUE, EAST 84 STREET between 1 AVENUE and 2 AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 84 STREET between YORK AVENUE and 1 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075"
+646907,Shooting Permit,05/16/2022 11:00:00 AM,05/17/2022 02:00:00 AM,05/12/2022 08:51:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 120 STREET and WEST 119 STREET, WEST 119 STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, CLAREMONT AVENUE between WEST 120 STREET and WEST 119 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 121 STREET and LA SALLE STREET, EAST 11 STREET between 4 AVENUE and 5 AVENUE, EAST 12 STREET between BROADWAY and 3 AVENUE, 4 AVENUE between EAST 12 STREET and EAST 10 STREET, 3 AVENUE between EAST 12 STREET and EAST 9 STREET, 3 AVENUE between EAST 12 STREET and EAST 14 STREET, EAST 13 STREET between 4 AVENUE and 3 AVENUE, EAST 10 STREET between 4 AVENUE and 3 AVENUE, EAST 9 STREET between 4 AVENUE and 3 AVENUE, IRVING PLACE between EAST 15 STREET and EAST 16 STREET",Manhattan,"2, 3, 5, 6, 9","13, 26, 6, 9",Television,Episodic series,United States of America,"10003, 10027, 10115"
+646901,Shooting Permit,05/18/2022 08:00:00 AM,05/18/2022 10:00:00 PM,05/12/2022 08:33:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+646899,Shooting Permit,05/17/2022 01:00:00 PM,05/18/2022 03:00:00 AM,05/12/2022 08:29:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 57 STREET and EAST 51 STREET, EAST 54 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 53 STREET, EAST 55 STREET between 5 AVENUE and MADISON AVENUE, WEST 14 STREET between 10 AVENUE and 9 AVENUE, WEST 14 STREET between HUDSON STREET and 8 AVENUE, WEST 12 STREET between HUDSON STREET and WEST 4 STREET, 8 AVENUE between JANE STREET and WEST 12 STREET, 8 AVENUE between WEST 12 STREET and HUDSON STREET, HUDSON STREET between BLEEKER STREET and BANK STREET, BLEEKER STREET between BANK STREET and WEST 11 STREET, HUDSON ST between JANE STREET and 8 AVENUE, WEST 12 STREET between GREENWICH STREET and HUDSON STREET, JANE STREET between HUDSON STREET and 8 AVENUE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"2, 4, 5","10, 18, 6",Television,Episodic series,United States of America,"10001, 10011, 10014, 10022, 10152"
+646897,Shooting Permit,05/17/2022 08:00:00 AM,05/17/2022 10:00:00 PM,05/12/2022 08:18:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOW AVENUE between EAST 138 STREET and EAST 135 STREET, EAST 136 STREET between BRUCKNER BOULEVARD and WILLOW AVENUE, BRUCKNER BOULEVARD between EAST 137 STREET and EAST 135 STREET, EAST 137 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 135 STREET between BRUCKNER BOULEVARD and WILLOW AVENUE, WALNUT AVENUE between EAST 134 STREET and EAST 133 STREET, EAST 133 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 134 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,"1, 2, 9","40, 41, 43",Television,Episodic series,United States of America,"10454, 10455, 10459, 10473, 10474"
+646890,Shooting Permit,05/16/2022 08:00:00 AM,05/16/2022 08:00:00 PM,05/12/2022 05:28:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and RIVINGTON STREET, EAST 6 STREET between 1 AVENUE and 2 AVENUE",Manhattan,3,"5, 9",Commercial,Commercial,United States of America,"10002, 10003, 10009"
+646889,Shooting Permit,05/15/2022 10:00:00 AM,05/15/2022 10:00:00 PM,05/12/2022 05:11:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE, HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE",Brooklyn,2,88,Commercial,Commercial,United States of America,11217
+646886,Shooting Permit,05/17/2022 08:00:00 AM,05/17/2022 10:00:00 PM,05/12/2022 01:38:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between RUTHERFORD PLACE and THIRD AVENUE, SECOND AVENUE between EAST 15 STREET and EAST 17 STREET, THIRD AVENUE between EAST 18 STREET and EAST 19 STREET, THIRD AVENUE between EAST 17 STREET and EAST 18 STREET, THIRD AVENUE between EAST 16 STREET and EAST 17 STREET, THIRD AVENUE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between THIRD AVENUE and RUTHERFORD PLACE, EAST 15 STREET between RUTHERFORD PLACE and SECOND AVENUE, EAST 18 STREET between SECOND AVENUE and THIRD AVENUE, EAST 17 STREET between THIRD AVENUE and RUTHERFORD PLACE",Manhattan,"3, 6","13, 5",Television,Episodic series,United States of America,"10002, 10003"
+646836,Shooting Permit,05/17/2022 06:00:00 AM,05/18/2022 12:00:00 AM,05/11/2022 07:13:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between BROOME STREET and GRAND STREET, GRAND STREET between ELDRIDGE STREET and ALLEN STREET, ALLEN STREET between GRAND STREET and HESTER STREET, GRAND STREET between ALLEN STREET and ORCHARD STREET, GRAND STREET between ORCHARD STREET and LUDLOW STREET",Brooklyn,"1, 3","5, 7, 90",Film,Feature,United States of America,"10002, 11211"
+646827,Shooting Permit,05/24/2022 06:00:00 AM,05/24/2022 09:00:00 PM,05/11/2022 06:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 9 STREET and VERNON BOULEVARD",Queens,2,108,WEB,Not Applicable,United States of America,11101
+646828,Shooting Permit,05/25/2022 06:00:00 AM,05/25/2022 09:00:00 PM,05/11/2022 06:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET",Queens,2,108,WEB,Not Applicable,United States of America,11101
+646821,Shooting Permit,05/19/2022 08:00:00 AM,05/19/2022 11:00:00 PM,05/11/2022 06:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646820,Shooting Permit,05/17/2022 02:30:00 PM,05/18/2022 03:00:00 AM,05/11/2022 06:16:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between GRAND AVENUE and FLUSHING AVENUE, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, WOODWARD AVENUE between STARR STREET and DEKALB AVENUE, WILLOUGHBY AVENUE between BUSHWICK AVENUE and MYRTLE AVENUE, BUSHWICK AVENUE between SUYDAM STREET and WILLOUGHBY AVENUE, WILLOUGHBY AVENUE between BROADWAY and BUSHWICK AVENUE, SUYDAM STREET between BROADWAY and MYRTLE AVENUE, DITMARS STREET between BROADWAY and MYRTLE AVENUE, BROADWAY between SUYDAM STREET and WILLOUGHBY AVENUE, MARCUS GARVEY BOULEVARD between VERNON AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between THROOP AVENUE and BROADWAY",Queens,"3, 4, 5","104, 79, 81, 83",Television,Episodic series,United States of America,"11206, 11221, 11378, 11385"
+646810,Shooting Permit,05/16/2022 07:00:00 AM,05/16/2022 09:00:00 PM,05/11/2022 05:25:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between WATTS STREET and HUBERT STREET, DEBROSSES STREET between GREENWICH STREET and HUDSON STREET, VESTRY STREET between WASHINGTON STREET and HUDSON STREET, WEST STREET between LAIGHT STREET and CHAMBERS STREET, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE",Manhattan,"1, 2","1, 108",Television,Episodic series,United States of America,"10013, 11101"
+646803,Shooting Permit,05/14/2022 08:00:00 AM,05/14/2022 11:00:00 PM,05/11/2022 05:08:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646797,Shooting Permit,05/18/2022 07:00:00 AM,05/18/2022 09:00:00 PM,05/11/2022 05:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONGRESS STREET between HICKS STREET and HENRY STREET, HICKS STREET between CONGRESS STREET and WARREN STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11201
+646798,Shooting Permit,05/19/2022 07:00:00 AM,05/19/2022 09:00:00 PM,05/11/2022 05:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONGRESS STREET between HICKS STREET and HENRY STREET, HICKS STREET between CONGRESS STREET and WARREN STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11201
+646799,Shooting Permit,05/20/2022 07:00:00 AM,05/20/2022 09:00:00 PM,05/11/2022 05:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONGRESS STREET between HICKS STREET and HENRY STREET, HICKS STREET between CONGRESS STREET and WARREN STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11201
+646793,Shooting Permit,05/15/2022 07:00:00 AM,05/15/2022 08:00:00 PM,05/11/2022 05:00:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 69 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 68 STREET and EAST 69 STREET, 2 AVENUE between EAST 69 STREET and EAST 70 STREET, 2 AVENUE between EAST 70 STREET and EAST 71 STREET",Manhattan,8,19,Commercial,Promo,United States of America,"10021, 10065"
+646776,Shooting Permit,05/15/2022 08:00:00 AM,05/15/2022 09:00:00 PM,05/11/2022 04:21:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Commercial,Promo,United States of America,"11101, 11106"
+646772,Shooting Permit,05/16/2022 06:00:00 AM,05/16/2022 10:00:00 PM,05/11/2022 04:16:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between ELIZABETH STREET and MOTT STREET, KENMARE STREET between ELIZABETH STREET and BOWERY, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between GRAND STREET and BROOME STREET, BOWERY between BROOME STREET and DELANCY STREET, BOWERY between KENMARE STREET and SPRING STREET, BOWERY between SPRING STREET and PRINCE STREET, BOWERY between PRINCE STREET and EAST HOUSTON STREET, ELDRIDGE STREET between DELANCEY STREET and RIVINGTON STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+646769,Shooting Permit,05/14/2022 08:00:00 AM,05/14/2022 09:00:00 PM,05/11/2022 04:12:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 TH ST between 34TH AVE and 35TH AVE,Queens,1,114,Commercial,Promo,United States of America,"11101, 11106"
+646752,Shooting Permit,05/16/2022 06:00:00 AM,05/16/2022 09:00:00 PM,05/11/2022 03:27:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11205
+646738,Shooting Permit,05/14/2022 07:00:00 AM,05/14/2022 07:00:00 PM,05/11/2022 03:03:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEWIS AVENUE between VAN BUREN STREET and LAFAYETTE AVENUE, VAN BUREN STREET between LEWIS AVENUE and STUYVESANT AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11221
+646723,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 09:00:00 PM,05/11/2022 02:40:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646712,Shooting Permit,05/15/2022 06:00:00 PM,05/16/2022 05:00:00 AM,05/11/2022 02:20:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",149 PLACE between ROOSEVELT AVENUE and 41 AVENUE,Queens,7,109,Film,Short,United States of America,11354
+646706,Shooting Permit,05/14/2022 06:00:00 PM,05/15/2022 05:00:00 AM,05/11/2022 02:14:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",149 PLACE between ROOSEVELT AVENUE and 41 AVENUE,Queens,7,109,Film,Short,United States of America,11354
+646689,Theater Load in and Load Outs,05/19/2022 12:01:00 AM,05/19/2022 11:59:00 PM,05/11/2022 01:41:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+646687,Shooting Permit,05/17/2022 05:00:00 AM,05/17/2022 02:00:00 PM,05/11/2022 01:35:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+646676,Theater Load in and Load Outs,05/18/2022 12:01:00 AM,06/01/2022 11:59:00 PM,05/11/2022 01:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+646668,Shooting Permit,05/13/2022 06:00:00 PM,05/16/2022 05:00:00 AM,05/11/2022 12:51:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",149 PLACE between ROOSEVELT AVENUE and 41 AVENUE,Queens,7,109,Film,Short,United States of America,11354
+646667,Theater Load in and Load Outs,05/29/2022 12:01:00 AM,06/05/2022 11:59:00 PM,05/11/2022 12:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+646657,Theater Load in and Load Outs,05/14/2022 12:01:00 AM,05/28/2022 11:59:00 PM,05/11/2022 12:32:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+646650,Shooting Permit,05/19/2022 10:00:00 AM,05/20/2022 12:00:00 AM,05/11/2022 12:26:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 19 STREET and EAST 18 STREET, EAST 18 STREET between 2 AVENUE and 1 AVENUE, EAST 17 STREET between NATHAN D PERLMAN PLACE and 1 AVENUE, 2 AVENUE between EAST 17 STREET and EAST 15 STREET, AVENUE A between EAST 10 STREET and EAST 7 STREET, EAST 7 STREET between AVENUE A and AVENUE B",Manhattan,"3, 6","13, 9",Television,Cable-episodic,United States of America,"10003, 10009"
+646622,Shooting Permit,05/15/2022 07:00:00 AM,05/15/2022 07:00:00 PM,05/11/2022 11:45:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+646621,Shooting Permit,05/13/2022 05:00:00 PM,05/14/2022 06:00:00 AM,05/11/2022 11:44:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between SOUTH STREET and WATER STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and WALL STREET, WATER STREET between GOUVERNEUR LANE and WALL STREET, MAIDEN LANE between WATER STREET and FRONT STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,"1, 4","1, 10",Television,Pilot,United States of America,"10004, 10005, 10036, 10038"
+646615,Shooting Permit,05/15/2022 07:00:00 AM,05/15/2022 09:00:00 PM,05/11/2022 11:35:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, ATLANTIC AVENUE between CLINTON STREET and HENRY STREET, STATE STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+646614,Shooting Permit,05/14/2022 07:00:00 AM,05/14/2022 07:00:00 PM,05/11/2022 11:35:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+646608,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 09:00:00 PM,05/11/2022 11:23:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between CLINTON STREET and HENRY STREET, CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, STATE STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+646594,Shooting Permit,05/12/2022 09:00:00 AM,05/12/2022 11:00:00 PM,05/11/2022 10:59:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 207 STREET and ISHAM STREET, VERMILYEA AVENUE between WEST 211 STREET and ISHAM STREET, BROADWAY between WEST 207 STREET and ISHAM STREET, BROADWAY between ISHAM STREET and WEST 214 STREET, BROADWAY between WEST 204 STREET and WEST 207 STREET, WEST 211 STREET between BROADWAY and VERMILYEA AVENUE, WEST 211 STREET between VERMILYEA AVENUE and 10 AVENUE, SHERMAN AVENUE between 10 AVENUE and ISHAM STREET, ISHAM STREET between SHERMAN AVENUE and 10 AVENUE, SHERMAN AVENUE between ISHAM STREET and WEST 207 STREET, VERMILYEA AVENUE between ISHAM STREET and WEST 207 STREET, ISHAM STREET between VERMILYEA AVENUE and SHERMAN AVENUE, ISHAM STREET between VERMILYEA AVENUE and SHERMAN AVENUE, NAGLE AVENUE between DYCKMAN STREET and THAYER STREET, NAGLE AVENUE between THAYER STREET and ARDEN STREET, NAGLE AVENUE between ARDEN STREET and SICKLES STREET, NAGLE AVENUE between SICKLES STREET and ELLWOOD STREET, NAGLE AVENUE between ELLWOOD STREET and BROADWAY",Manhattan,12,34,Television,Pilot,United States of America,"10034, 10040"
+646591,Shooting Permit,05/12/2022 03:30:00 PM,05/13/2022 05:30:00 AM,05/11/2022 10:51:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 104 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 105 STREET, 5 AVENUE between EAST 75 STREET and EAST 73 STREET, 5 AVENUE between EAST 75 STREET and EAST 74 STREET, 5 AVENUE between EAST 76 STREET and EAST 75 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 74 STREET between 5 AVENUE and MADISON AVENUE, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 70 STREET, PARK AVENUE between EAST 80 STREET and EAST 72 STREET",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10021, 10023, 10029, 10075"
+646566,Shooting Permit,05/15/2022 05:00:00 AM,05/15/2022 11:00:00 AM,05/11/2022 09:31:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+646552,Shooting Permit,05/13/2022 01:00:00 PM,05/14/2022 01:00:00 AM,05/11/2022 08:39:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 150 STREET and WEST 151 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and WEST 112 STREET, MANHATTAN AVENUE between WEST 113 STREET and WEST 114 STREET",Manhattan,"10, 9","28, 30",Television,Episodic series,United States of America,"10026, 10031"
+646542,Shooting Permit,05/14/2022 08:00:00 AM,05/14/2022 08:00:00 PM,05/11/2022 06:48:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST JOHNS PLACE between ALBANY AVENUE and HAMPTON PLACE, ALBANY AVENUE between STERLING PLACE and ST JOHNS PLACE, STERLING PLACE between ALBANY AVENUE and HAMPTON PLACE, STERLING PLACE between HAMPTON PLACE and KINGSTON AVENUE",Brooklyn,8,77,Still Photography,Not Applicable,United States of America,11213
+646541,Shooting Permit,05/13/2022 03:30:00 PM,05/14/2022 04:30:00 AM,05/11/2022 06:06:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","UNIVERSITY AVENUE between WEST 170 STREET and MERRIAM AVENUE, WEST 170 STREET between UNIVERSITY AVENUE and MERRIAM AVENUE, UNIVERSITY AVENUE between WEST 170 STREET and WEST 169 STREET, MERRIAM AVENUE between WEST 170 STREET and WEST 169 STREET, EAST 135 STREET between WILLOW AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 135 STREET and EAST 134 STREET, EAST 134 STREET between WILLOW AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 134 STREET and EAST 133 STREET, EAST 133 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 134 STREET between WALNUT AVENUE and LOCUST AVENUE, SEDGWICK AVENUE between WEST 167 STREET and WEST 176 STREET",Bronx,"1, 4","40, 44",Television,Episodic series,United States of America,"10452, 10454"
+646513,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 07:00:00 PM,05/10/2022 09:01:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between VANDERBILT AVENUE and PARK HILL AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+646476,Shooting Permit,05/16/2022 07:00:00 AM,05/16/2022 10:00:00 PM,05/10/2022 06:20:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646472,Shooting Permit,05/19/2022 12:00:00 PM,05/19/2022 10:00:00 PM,05/10/2022 05:23:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+646466,Shooting Permit,05/13/2022 11:00:00 AM,05/14/2022 03:00:00 AM,05/10/2022 05:09:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 80 STREET between 5 AVENUE and MADISON AVENUE, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 80 STREET and EAST 81 STREET, MADISON AVENUE between EAST 80 STREET and EAST 79 STREET, MADISON AVENUE between EAST 79 STREET and EAST 78 STREET, MADISON AVENUE between EAST 78 STREET and EAST 77 STREET, MADISON AVENUE between EAST 77 STREET and EAST 75 STREET, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+646465,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 07:00:00 PM,05/10/2022 05:03:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE,Bronx,2,41,WEB,Not Applicable,United States of America,10474
+646460,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 07:00:00 PM,05/10/2022 04:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10021
+646459,Shooting Permit,05/14/2022 07:00:00 AM,05/14/2022 08:00:00 PM,05/10/2022 04:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 69 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 69 STREET and EAST 68 STREET, 2 AVENUE between EAST 69 STREET and EAST 70 STREET, 2 AVENUE between EAST 70 STREET and EAST 71 STREET, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET",Manhattan,8,19,Commercial,Promo,United States of America,"10021, 10065"
+646439,Shooting Permit,05/16/2022 06:00:00 AM,05/16/2022 06:00:00 PM,05/10/2022 03:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 35 AVENUE between 37 STREET and 38 STREET, 35 AVENUE between 36 STREET and 37 STREET, 37 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+646436,Shooting Permit,05/13/2022 10:00:00 AM,05/13/2022 11:59:00 PM,05/10/2022 03:39:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PLACE between SIXTH AVENUE and WASHINGTON SQUARE WEST, WASHINGTON PLACE between SIXTH AVENUE and WASHINGTON SQUARE WEST, SIXTH AVENUE between WEST FOURTH STREET and WASHINGTON PLACE, WEST 10 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 8 STREET between FIFTH AVENUE and UNIVERSITY PLACE, EAST 8 STREET between UNIVERSITY PLACE and BROADWAY, WEST 11 STREET between FIFTH AVENUE and SIXTH AVENUE, LAGUARDIA PLACE between WEST THIRD STREET and WEST HOUSTON STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10003, 10011, 10012, 10014"
+646435,Theater Load in and Load Outs,05/16/2022 12:01:00 AM,05/16/2022 11:59:00 PM,05/10/2022 03:38:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+646426,Shooting Permit,05/13/2022 07:00:00 PM,05/13/2022 11:00:00 PM,05/10/2022 03:18:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 32 STREET between PARK AVENUE and MADISON AVENUE,Manhattan,5,14,Film,Feature,United States of America,10016
+646422,Theater Load in and Load Outs,05/18/2022 12:01:00 AM,05/20/2022 06:00:00 AM,05/10/2022 03:14:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, DRIGGS AVENUE between ECKFORD STREET and LEONARD STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+646413,Shooting Permit,05/16/2022 07:00:00 AM,05/16/2022 10:00:00 PM,05/10/2022 02:42:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOUGLASTON PARKWAY between NORTHERN BOULEVARD and CHURCH STREET, NORTHERN BOULEVARD between DOUGLASTON PARKWAY and 244 STREET, DOUGLASTON PARKWAY between NORTHERN BOULEVARD and CHURCH STREET, 244 STREET between NORTHERN BOULEVARD and CHURCH STREET, BEVERLY ROAD between WEST DRIVE and CENTER DRIVE, MANOR ROAD between CENTER DRIVE and WEST DRIVE",Queens,11,111,Television,Episodic series,United States of America,"11362, 11363"
+646408,Shooting Permit,05/13/2022 08:00:00 AM,05/13/2022 10:00:00 PM,05/10/2022 02:38:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY STREET between FLATBUSH AVENUE EXTENSION and FLEET PLACE, WILLOUGHBY STREET between FLEET PLACE and ASHLAND PLACE",Brooklyn,2,"84, 88",Film,Feature,United States of America,11201
+646348,Shooting Permit,05/11/2022 07:00:00 AM,05/11/2022 08:00:00 PM,05/10/2022 12:59:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MORNINGSIDE AVENUE between WEST 115 STREET and WEST 116 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 139 STREET and WEST 140 STREET, 9 STREET between 43 AVENUE and 43 ROAD",Manhattan,"10, 11, 2, 9","108, 25, 26, 28, 32",Television,Episodic series,United States of America,"10026, 10027, 10030, 11101"
+646342,Shooting Permit,05/16/2022 06:00:00 AM,05/17/2022 07:00:00 PM,05/10/2022 12:51:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, WEST 8 STREET between SURF AVENUE and NEPTUNE AVENUE, SURF AVENUE between WEST 12 STREET and JONES WALK, SURF AVENUE between WEST 12 STREET and STILLWELL AVENUE, STILLWELL AVENUE between SURF AVENUE and RIEGELMANN BOARDWALK, BRIGHTON BEACH AVENUE between BRIGHTON 6 STREET and BRIGHTON 7 STREET, Shore Parkway between Ocean Parkway and East 6th Street",Brooklyn,13,60,Film,Feature,United States of America,"11224, 11235"
+646335,Shooting Permit,05/13/2022 06:00:00 AM,05/13/2022 11:59:00 PM,05/10/2022 12:42:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 3 STREET between BERRY STREET and WYTHE AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11249
+646328,Shooting Permit,05/12/2022 06:00:00 AM,05/12/2022 11:59:00 PM,05/10/2022 12:32:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 3 STREET between WYTHE AVENUE and BERRY STREET,Brooklyn,1,90,WEB,Not Applicable,United States of America,11249
+646319,Shooting Permit,05/13/2022 06:00:00 AM,05/13/2022 08:00:00 PM,05/10/2022 12:20:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",MORNINGSIDE DRIVE between WEST 114 STREET and WEST 115 STREET,Manhattan,"10, 12, 7, 9","24, 26, 28, 33, 34",Still Photography,Not Applicable,United States of America,"10025, 10026, 10027, 10032, 10033, 10040"
+646294,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 10:00:00 PM,05/10/2022 11:47:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, DEKALB AVENUE between CLINTON AVENUE and WAVERLY AVENUE, CLINTON AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11205
+646257,Shooting Permit,05/13/2022 11:00:00 AM,05/14/2022 01:00:00 AM,05/10/2022 10:29:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+646248,Shooting Permit,05/17/2022 07:00:00 AM,05/17/2022 09:00:00 PM,05/10/2022 10:18:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+646242,Shooting Permit,05/17/2022 04:30:00 PM,05/18/2022 06:30:00 AM,05/10/2022 09:56:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 181 STREET between CABRINI BOULEVARD and RIVERSIDE DRIVE, CABRINI BOULEVARD between WEST 181 STREET and WEST 186 STREET, CABRINI BOULEVARD between WEST 181 STREET and WEST 180 STREET, WEST 180 STREET between CABRINI BOULEVARD and PINEHURST AVENUE, FORT WASHINGTON AVENUE between WEST 177 STREET and WEST 176 STREET, FORT WASHINGTON AVENUE between WEST 176 STREET and WEST 173 STREET, FORT WASHINGTON AVENUE between WEST 173 STREET and WEST 172 STREET",Manhattan,12,"33, 34",Television,Pilot,United States of America,"10032, 10033"
+646206,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 08:00:00 PM,05/10/2022 07:10:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+646201,Shooting Permit,05/13/2022 02:00:00 AM,05/13/2022 09:00:00 PM,05/10/2022 02:29:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between SPRING STREET and BROOME STREET, GARDNER AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between RANDOLPH STREET and FLUSHING AVENUE",Manhattan,"1, 2","1, 90",Commercial,Commercial,United States of America,"10012, 11237"
+646200,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 08:00:00 PM,05/10/2022 02:14:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 55 AVENUE, SHARON STREET between MORGAN AVENUE and OLIVE STREET",Queens,"1, 2","108, 90",Commercial,Commercial,United States of America,"11101, 11211"
+646184,Shooting Permit,05/11/2022 10:00:00 AM,05/11/2022 10:00:00 PM,05/09/2022 10:57:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",SURF AVENUE between WEST 10 STREET and JONES WALK,Brooklyn,13,60,Television,Episodic series,United States of America,11224
+646129,Shooting Permit,05/13/2022 08:00:00 AM,05/13/2022 11:00:00 PM,05/09/2022 05:50:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646127,Shooting Permit,05/12/2022 08:00:00 AM,05/12/2022 11:00:00 PM,05/09/2022 05:36:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+646111,Shooting Permit,05/16/2022 02:30:00 PM,05/17/2022 03:00:00 AM,05/09/2022 04:56:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between GRAND AVENUE and FLUSHING AVENUE, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, WOODWARD AVENUE between STARR STREET and DEKALB AVENUE, FLUSHING AVENUE between 53 STREET and 54 STREET",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+646088,Shooting Permit,05/14/2022 07:00:00 AM,05/14/2022 07:00:00 PM,05/09/2022 03:58:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Still Photography,Not Applicable,United States of America,10023
+646087,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 07:00:00 PM,05/09/2022 03:58:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Still Photography,Not Applicable,United States of America,10023
+646082,Shooting Permit,05/12/2022 08:00:00 AM,05/12/2022 09:00:00 PM,05/09/2022 03:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between UNDERHILL AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between EASTERN PARKWAY and CARROLL STREET",Brooklyn,"55, 8, 9","71, 77, 78",Television,Cable-episodic,United States of America,"11225, 11238"
+646066,Shooting Permit,05/12/2022 09:00:00 AM,05/13/2022 01:00:00 AM,05/09/2022 03:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 80 STREET between 5 AVENUE and MADISON AVENUE, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 80 STREET and EAST 81 STREET, MADISON AVENUE between EAST 80 STREET and EAST 79 STREET, MADISON AVENUE between EAST 79 STREET and EAST 78 STREET, MADISON AVENUE between EAST 78 STREET and EAST 77 STREET, MADISON AVENUE between EAST 77 STREET and EAST 75 STREET, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+646065,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 10:00:00 PM,05/09/2022 03:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between BUSHWICK PLACE and WATERBURY STREET,Brooklyn,1,90,Commercial,Commercial,United States of America,11206
+646030,Shooting Permit,05/13/2022 10:00:00 AM,05/14/2022 01:00:00 AM,05/09/2022 02:25:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 46 STREET between LEXINGTON AVENUE and 2 AVENUE, 3 AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 45 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 45 STREET and EAST 47 STREET, EAST 47 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 53 STREET and EAST 48 STREET, EAST 47 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10171"
+646029,Shooting Permit,05/16/2022 04:30:00 PM,05/17/2022 06:30:00 AM,05/09/2022 02:23:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between SPRING STREET and BROOME STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between GRAND STREET and HOWARD STREET, LAFAYETTE STREET between HOWARD STREET and CANAL STREET, BROADWAY between GRAND STREET and HOWARD STREET, HOWARD STREET between BROADWAY and CROSBY STREET, HOWARD STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between GRAND STREET and HOWARD STREET",Manhattan,2,"1, 5",Television,Pilot,United States of America,"10012, 10013"
+646017,Shooting Permit,05/16/2022 06:00:00 AM,05/16/2022 10:00:00 PM,05/09/2022 02:06:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",35 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,11106
+645999,Theater Load in and Load Outs,05/14/2022 12:01:00 AM,05/15/2022 06:00:00 AM,05/09/2022 01:38:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+645997,Shooting Permit,05/13/2022 12:00:00 PM,05/14/2022 02:00:00 AM,05/09/2022 01:35:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAURICE AVENUE between 53 DRIVE and TYLER AVENUE, 65 PLACE between 53 DRIVE and 53 AVENUE, 65 PLACE between 53 AVENUE and 52 AVENUE, 53 DRIVE between 65 PLACE and 66 STREET, 66 STREET between 53 DRIVE and 53 ROAD, 53 DRIVE between 66 STREET and 67 STREET, 53 ROAD between 66 STREET and 68 STREET",Queens,"2, 5","104, 108",Television,Cable-episodic,United States of America,11378
+645996,Theater Load in and Load Outs,05/13/2022 12:01:00 AM,05/13/2022 11:59:00 PM,05/09/2022 01:32:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+645995,Theater Load in and Load Outs,05/14/2022 12:01:00 AM,05/15/2022 06:00:00 AM,05/09/2022 01:25:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+645989,Shooting Permit,05/12/2022 11:00:00 AM,05/13/2022 03:00:00 AM,05/09/2022 01:00:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+645988,Shooting Permit,05/13/2022 07:00:00 AM,05/13/2022 10:15:00 PM,05/09/2022 12:59:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, COURT SQUARE between THOMSON AVENUE and DEAD END, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+645987,Shooting Permit,05/11/2022 11:00:00 AM,05/12/2022 03:00:00 AM,05/09/2022 12:51:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between LIBERTY AVENUE and PITKIN AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between PENNSYLVANIA AVENUE and GEORGIA AVENUE, BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+645923,Shooting Permit,05/20/2022 07:30:00 AM,05/20/2022 08:00:00 PM,05/09/2022 10:53:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",UNION AVENUE between DRIGGS AVENUE and BAYARD STREET,Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222"
+645892,Shooting Permit,05/11/2022 08:00:00 AM,05/11/2022 10:00:00 PM,05/09/2022 09:30:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between HUDSON STREET and 8 AVENUE, 8 AVENUE between JANE STREET and HUDSON STREET, HUDSON STREET between HORATIO STREET and JANE STREET, HUDSON STREET between JANE STREET and 8 AVENUE",Manhattan,"1, 2","1, 6",Commercial,Commercial,United States of America,"10013, 10014"
+645792,Theater Load in and Load Outs,05/12/2022 12:01:00 AM,05/12/2022 11:59:00 PM,05/07/2022 07:51:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+645791,Theater Load in and Load Outs,05/14/2022 12:01:00 AM,05/15/2022 06:00:00 AM,05/07/2022 07:36:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+645705,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 09:00:00 PM,05/06/2022 09:14:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 79 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 80 STREET and EAST 81 STREET, EAST 80 STREET between MADISON AVENUE and PARK AVENUE, EAST 78 STREET between 3 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10028, 10075"
+645684,Shooting Permit,05/12/2022 09:00:00 AM,05/13/2022 12:00:00 AM,05/06/2022 05:19:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAURICE AVENUE between 53 DRIVE and TYLER AVENUE, 65 PLACE between 53 DRIVE and 53 AVENUE, 65 PLACE between 53 AVENUE and 52 AVENUE, 53 DRIVE between 65 PLACE and 66 STREET, 66 STREET between 53 DRIVE and 53 ROAD, 53 DRIVE between 66 STREET and 67 STREET, 53 ROAD between 66 STREET and 68 STREET",Queens,"2, 5","104, 108",Television,Cable-episodic,United States of America,"11378, 11385"
+645680,Shooting Permit,05/11/2022 06:30:00 AM,05/11/2022 07:00:00 PM,05/06/2022 05:14:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between VANDERBILT AVENUE and PARK HILL AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+645660,Shooting Permit,05/11/2022 10:00:00 AM,05/12/2022 02:30:00 AM,05/06/2022 04:10:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, MONITOR STREET between DRIGGS AVENUE and ENGERT AVENUE, KINGSLAND AVENUE between DRIGGS AVENUE and MEEKER AVENUE, ENGERT AVENUE between RUSSELL STREET and MEEKER AVENUE, MEEKER AVENUE between RUSSELL STREET and ENGERT AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+645657,Shooting Permit,05/10/2022 09:00:00 AM,05/10/2022 11:00:00 PM,05/06/2022 04:06:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, DEKALB AVENUE between FT GREENE PLACE and CUMBERLAND STREET, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,"11205, 11217"
+645655,Shooting Permit,05/17/2022 06:00:00 PM,05/18/2022 06:00:00 AM,05/06/2022 03:59:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",CANAL STREET between MOTT STREET and MULBERRY STREET,Manhattan,"2, 3",5,Music Video,Independent Artist,United States of America,10013
+645642,Shooting Permit,05/11/2022 08:00:00 AM,05/11/2022 11:59:00 PM,05/06/2022 03:31:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and ST FELIX STREET, ST FELIX STREET between HANSON PLACE and LAFAYETTE AVENUE, ALBEE SQUARE WEST between WILLOUGHBY STREET and FULTON STREET, FULTON STREET between SOUTH ELLIOTT PLACE and SOUTH OXFORD STREET, FULTON STREET between GREENE AVENUE and CLERMONT AVENUE, HANSON PLACE between ST FELIX STREET and FORT GREENE PLACE",Brooklyn,2,"78, 84, 88",Television,Cable-episodic,United States of America,"11201, 11217, 11238"
+645637,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 06:00:00 PM,05/06/2022 03:21:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 181 STREET between RIVERSIDE DRIVE and HAVEN AVENUE, VALENTINE AVENUE between EAST 196 STREET and EAST 194TH STREET",Manhattan,"12, 7","30, 34, 52",Film,Feature,United States of America,"10033, 10034, 10458"
+645629,Shooting Permit,05/12/2022 06:00:00 AM,05/12/2022 09:00:00 PM,05/06/2022 02:58:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and DUPONT STREET, PROVOST STREET between DUPONT STREET and EAGLE STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+645608,Theater Load in and Load Outs,05/20/2022 08:00:00 AM,05/20/2022 11:59:00 PM,05/06/2022 02:04:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+645607,Shooting Permit,05/10/2022 08:30:00 AM,05/10/2022 10:30:00 PM,05/06/2022 02:00:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET STREET between MADISON STREET and MONROE STREET, MARKET STREET between MADISON STREET and MONROE STREET, HENRY STREET between MARKET STREET and FORSYTH STREET, MECHANICS ALLEY between HENRY STREET and MADISON STREET, MADISON STREET between CATHERINE STREET and MARKET STREET, MONROE STREET between MARKET STREET and MECHANICS ALLEY, EAST BROADWAY between CATHERINE STREET and PIKE STREET, MONROE STREET between CATHERINE STREET and MARKET STREET, PIKE STREET between MADISON STREET and MONROE STREET, CHERRY STREET between CATHERINE STREET and MARKET STREET, CHERRY STREET between MARKET STREET and PIKE STREET, MARKET SLIP between CHERRY STREET and SOUTH STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+645605,Theater Load in and Load Outs,05/11/2022 12:01:00 AM,05/11/2022 11:59:00 PM,05/06/2022 01:59:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+645601,Theater Load in and Load Outs,05/13/2022 12:01:00 AM,05/13/2022 11:59:00 PM,05/06/2022 01:52:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+645600,Shooting Permit,05/09/2022 12:00:00 PM,05/10/2022 03:00:00 AM,05/06/2022 01:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOWNSEND AVENUE between EAST 171 STREET and EAST 170 STREET, WYTHE PLACE between EAST 172 STREET and EAST 171 STREET, WYTHE PLACE between EAST 171 STREET and EAST 170 STREET, EAST 170 STREET between WALTON AVENUE and WYTHE PLACE, EAST 170 STREET between WYTHE PLACE and GRAND CONCOURSE, GERARD AVENUE between EAST 167 STREET and MCCLELLAN STREET, WALTON AVENUE between TUDOR PLACE and MCCLELLAN STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 165 STREET, GRAND CONCOURSE between EAST 167 STREET and TUDOR PLACE, GRAND CONCOURSE between TUDOR PLACE and MCCLELLAN STREET, GRAND CONCOURSE between MCCLELLAN STREET and EAST 166 STREET",Bronx,4,44,Film,Feature,United States of America,"10452, 10456"
+645598,Theater Load in and Load Outs,05/12/2022 12:01:00 AM,05/12/2022 11:59:00 PM,05/06/2022 01:40:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+645594,Shooting Permit,05/12/2022 08:00:00 AM,05/12/2022 10:00:00 PM,05/06/2022 01:31:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, WEST 63 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 64 STREET and WEST 61 STREET, WEST 100 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 101 STREET and WEST 100 STREET, CENTRAL PARK WEST between WEST 100 STREET and WEST 97 STREET, CENTRAL PARK WEST between WEST 102 STREET and WEST 101 STREET, WEST 102 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, WEST 101 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 106 STREET and WEST 100 STREET",Manhattan,"64, 7","20, 22, 24",Television,Cable-episodic,United States of America,"10023, 10025"
+645588,Shooting Permit,05/10/2022 11:00:00 AM,05/11/2022 03:00:00 AM,05/06/2022 01:18:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between JAMAICA AVENUE and FULTON STREET, SHEFFIELD AVENUE between FULTON STREET and ATLANTIC AVENUE, ALABAMA AVENUE between FULTON STREET and ATLANTIC AVENUE, ATLANTIC AVENUE between WILLIAMS AVENUE and ALABAMA AVENUE, ATLANTIC AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, ATLANTIC AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, ATLANTIC AVENUE between NEW JERSEY AVENUE and VERMONT STREET, ATLANTIC AVENUE between VERMONT STREET and WYONA STREET, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE, North 3rd Street between Bedford Avenne and Driggs Avennue, BEDFORD AVENUE between NORTH 4 STREET and NORTH 3 STREET, BEDFORD AVENUE between NORTH 5 STREET and NORTH 4 STREET",Brooklyn,"1, 5","75, 90, 94",Film,Feature,United States of America,"11207, 11211, 11249"
+645585,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 09:00:00 PM,05/06/2022 01:14:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and DUPONT STREET, PROVOST STREET between DUPONT STREET and EAGLE STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+645582,Theater Load in and Load Outs,05/11/2022 12:01:00 AM,05/11/2022 11:59:00 PM,05/06/2022 01:12:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+645575,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 11:00:00 PM,05/06/2022 12:55:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+645574,Shooting Permit,05/09/2022 07:00:00 AM,05/09/2022 09:00:00 PM,05/06/2022 12:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+645571,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 01:00:00 PM,05/06/2022 12:54:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",SAULTELL AVENUE between WALDRON STREET and HORACE HARDING EXPRESSWAY,Queens,4,110,Film,Feature,United States of America,"11368, 11375"
+645565,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 10:00:00 PM,05/06/2022 12:43:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+645548,Theater Load in and Load Outs,05/16/2022 12:01:00 AM,05/17/2022 06:00:00 AM,05/06/2022 12:11:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+645541,Theater Load in and Load Outs,05/15/2022 12:01:00 AM,05/15/2022 11:59:00 PM,05/06/2022 11:52:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+645533,Theater Load in and Load Outs,05/13/2022 12:01:00 AM,05/14/2022 11:59:00 PM,05/06/2022 11:22:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+645530,Theater Load in and Load Outs,05/12/2022 12:01:00 AM,05/12/2022 11:59:00 PM,05/06/2022 11:16:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+645520,Theater Load in and Load Outs,05/10/2022 12:01:00 AM,05/11/2022 06:00:00 AM,05/06/2022 10:54:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+645503,Shooting Permit,05/12/2022 06:00:00 PM,05/13/2022 06:00:00 AM,05/06/2022 10:15:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","Bushwick Avenue between Reverend Doctor Jeremiah Fennell Street and Flushing Avenue, FLUSHING AVENUE between BUSHWICK AVENUE and HUMBOLDT STREET",Brooklyn,"1, 3, 4","79, 83, 90",Film,Feature,United States of America,11206
+645500,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 09:00:00 PM,05/06/2022 10:13:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 83 STREET and WEST 84 STREET, CENTRAL PARK WEST between WEST 84 STREET and WEST 85 STREET, WEST 84 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10024
+645493,Shooting Permit,05/11/2022 11:00:00 AM,05/12/2022 03:00:00 AM,05/06/2022 09:45:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","GERARD AVENUE between EAST 167 STREET and MCCLELLAN STREET, WALTON AVENUE between TUDOR PLACE and MCCLELLAN STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 165 STREET, GRAND CONCOURSE between EAST 167 STREET and TUDOR PLACE, GRAND CONCOURSE between TUDOR PLACE and MCCLELLAN STREET, GRAND CONCOURSE between MCCLELLAN STREET and EAST 166 STREET",Bronx,4,44,Film,Feature,United States of America,"10452, 10456"
+645489,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 09:00:00 PM,05/06/2022 09:23:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 59 STREET and EAST 60 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, MADISON AVENUE between EAST 57 STREET and EAST 58 STREET, PARK AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 8","18, 19",Film,Feature,United States of America,10022
+645487,Shooting Permit,05/13/2022 06:00:00 AM,05/13/2022 09:00:00 PM,05/06/2022 09:14:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between B'WAY and FIFTH AVENUE, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, BROADWAY between EAST 19 STREET and EAST 18 STREET",Manhattan,5,13,Commercial,Commercial,United States of America,10003
+645484,Shooting Permit,05/12/2022 06:00:00 AM,05/12/2022 09:00:00 PM,05/06/2022 08:45:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and FIFTH AVENUE, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, BROADWAY between EAST 19 STREET and EAST 18 STREET",Manhattan,5,13,Commercial,Commercial,United States of America,10003
+645464,Shooting Permit,05/12/2022 11:00:00 AM,05/13/2022 01:00:00 AM,05/06/2022 12:11:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+645414,Shooting Permit,05/10/2022 10:30:00 AM,05/11/2022 03:00:00 AM,05/05/2022 08:00:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between TROUTMAN STREET and HART STREET, KNICKERBOCKER AVENUE between HART STREET and DEKALB AVENUE, KNICKERBOCKER AVENUE between DEKALB AVENUE and STOCKHOLM STREET, SUYDAM STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, IRVING AVENUE between SUYDAM STREET and HART STREET, HART STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, HART STREET between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between HART STREET and DEKALB AVENUE, JEFFERSON STREET between IRVING AVENUE and WYCKOFF AVENUE, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+645355,Shooting Permit,05/09/2022 06:30:00 AM,05/09/2022 11:30:00 PM,05/05/2022 06:09:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","12 STREET between EIGHTH AVENUE and PROSPECT PARK WEST, EIGHTH AVENUE between 12 STREET and 13 STREET, 13 STREET between EIGHTH AVENUE and PROSPECT PARK WEST, 13 STREET between EIGHTH AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between 12 STREET and 14 STREET, PROSPECT PARK SOUTHWEST between PROSPECT PARK WEST and 11 AVENUE",Brooklyn,"55, 6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+645350,Shooting Permit,05/13/2022 08:00:00 AM,05/13/2022 07:00:00 PM,05/05/2022 05:56:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+645348,Shooting Permit,05/28/2022 07:00:00 AM,05/28/2022 08:00:00 PM,05/05/2022 05:49:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERDALE AVENUE between WATKINS STREET and OSBORN STREET,Brooklyn,16,73,Film,Feature,United States of America,11212
+645320,Shooting Permit,05/09/2022 07:00:00 AM,05/09/2022 07:00:00 PM,05/05/2022 04:52:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE,Bronx,2,41,WEB,Not Applicable,United States of America,10474
+645314,Shooting Permit,05/11/2022 09:00:00 AM,05/11/2022 11:00:00 PM,05/05/2022 04:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, BOWERY between EAST HOUSTON STREET and DELANCY STREET, DELANCY STREET between CHRYSTIE STREET and FORSYTH STREET, DELANCY STREET between BOWERY and CHRYSTIE STREET, DELANCY STREET between FORSYTH STREET and ALLEN STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, FORSYTH STREET between BROOME STREET and GRAND STREET, BUSHWICK AVENUE between STAGG STREET and SCHOLES STREET, BUSHWICK AVENUE between SCHOLES STREET and MESEROLE STREET, BUSHWICK AVENUE between MESEROLE STREET and MONTROSE AVENUE, MONTROSE AVENUE between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK AVENUE between MONTROSE AVENUE and MCKIBBIN STREET, MCKIBBIN STREET between BUSHWICK AVENUE and WHITE STREET, MESEROLE STREET between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK PLACE between MESEROLE STREET and JOHNSON AVENUE, JOHNSON AVENUE between BUSHWICK AVENUE and BUSHWICK PLACE",Manhattan,"1, 2, 3","5, 90",Television,Episodic series,United States of America,"10002, 10012, 11206"
+645306,Shooting Permit,05/10/2022 08:00:00 AM,05/10/2022 02:00:00 PM,05/05/2022 04:36:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 44 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,5,14,Television,Cable-episodic,United States of America,10017
+645288,Shooting Permit,05/11/2022 05:00:00 AM,05/11/2022 09:00:00 PM,05/05/2022 04:13:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, 43RD ST between TUDOR CITY PLACE and 1 AVENUE",Manhattan,6,17,WEB,Not Applicable,United Kingdom,10017
+645267,Shooting Permit,05/12/2022 07:30:00 AM,05/12/2022 11:45:00 PM,05/05/2022 03:53:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 39 STREET and 40 STREET, 39 STREET between 3 AVENUE and 2 AVENUE",Brooklyn,"12, 7","66, 72",Film,Feature,United States of America,11232
+645264,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 09:00:00 PM,05/05/2022 03:51:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 18 STREET and EAST 19 STREET, EAST 18 STREET between BROADWAY and 5 AVENUE, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH",Manhattan,5,13,Commercial,Commercial,United States of America,10003
+645257,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 10:00:00 PM,05/05/2022 03:44:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 17 STREET and EAST 19 STREET, EAST 19 STREET between BROADWAY and PARK AVENUE SOUTH, EAST 20 STREET between BROADWAY and 5 AVENUE, WEST 20 STREET between 5 AVENUE and 6 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5",13,Television,Cable-episodic,United States of America,"10003, 10011"
+645241,Shooting Permit,05/06/2022 11:00:00 AM,05/07/2022 01:00:00 AM,05/05/2022 03:20:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+645236,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 08:00:00 PM,05/05/2022 03:05:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH AVENUE between JANE STREET and WEST 13 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10011, 10014"
+645226,Shooting Permit,05/08/2022 04:00:00 AM,05/08/2022 11:00:00 AM,05/05/2022 02:41:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+645204,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 09:00:00 PM,05/05/2022 02:16:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE",Manhattan,6,17,WEB,Not Applicable,United Kingdom,10017
+645167,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 08:00:00 PM,05/05/2022 01:48:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between HOYT STREET and BOND STREET, ATLANTIC AVENUE between SMITH STREET and HOYT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, STATE STREET between HOYT STREET and BOND STREET, ATLANTIC AVENUE between HOYT STREET and BOND STREET, ATLANTIC AVENUE between BOND STREET and NEVINS STREET, ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE",Brooklyn,2,84,Television,Pilot,United States of America,"11201, 11217"
+645165,Shooting Permit,05/11/2022 08:00:00 AM,05/11/2022 11:00:00 PM,05/05/2022 01:48:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, BORDEN AVENUE between REVIEW AVENUE and BRADLEY AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, THOMSON AVENUE between 30 PLACE and 31 STREET, THOMSON AVENUE between 31 STREET and VAN DAM STREET, 47 AVENUE between 31 STREET and VAN DAM STREET, 31 STREET between THOMSON AVENUE and 47 AVENUE, VAN DAM STREET between THOMSON AVENUE and 47 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+645164,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 08:00:00 PM,05/05/2022 01:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHERMERHORN STREET between HOYT STREET and BOND STREET, ATLANTIC AVENUE between SMITH STREET and HOYT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, ATLANTIC AVENUE between HOYT STREET and BOND STREET, ATLANTIC AVENUE between BOND STREET and NEVINS STREET, ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE",Brooklyn,2,84,Television,Pilot,United States of America,"11201, 11217"
+645159,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 09:00:00 PM,05/05/2022 01:43:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 177 STREET between BROADWAY and WADSWORTH AVENUE, WEST 177 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 176 STREET and WEST 175 STREET, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 174 STREET, ST NICHOLAS AVENUE between WEST 174 STREET and WEST 173 STREET, ST NICHOLAS AVENUE between WEST 173 STREET and WEST 172 STREET, ST NICHOLAS AVENUE between WEST 172 STREET and WEST 171 STREET, ST NICHOLAS AVENUE between WEST 171 STREET and WEST 170 STREET, BROADWAY between WEST 177 STREET and WEST 176 STREET, ST NICHOLAS AVENUE between WEST 178 STREET and WEST 179 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, WEST 176 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 176 STREET, FORT WASHINGTON AVENUE between WEST 177 STREET and WEST 176 STREET, FORT WASHINGTON AVENUE between WEST 176 STREET and WEST 173 STREET, FORT WASHINGTON AVENUE between WEST 173 STREET and WEST 172 STREET, WEST 180 STREET between FORT WASHINGTON AVENUE and BROADWAY",Manhattan,12,"33, 34",Television,Pilot,United States of America,"10032, 10033"
+645117,Shooting Permit,05/09/2022 06:30:00 AM,05/09/2022 09:00:00 PM,05/05/2022 12:53:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 92 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 91 STREET and EAST 92 STREET, EAST 91 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 85 STREET, 3 AVENUE between EAST 87 STREET and EAST 89 STREET, 3 AVENUE between EAST 90 STREET and EAST 92 STREET, EAST 87 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 92 STREET and EAST 93 STREET, LEXINGTON AVENUE between EAST 93 STREET and EAST 94 STREET, LEXINGTON AVENUE between EAST 94 STREET and EAST 95 STREET, EAST 94 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+645088,Shooting Permit,05/16/2022 07:00:00 AM,05/16/2022 10:00:00 PM,05/05/2022 12:23:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+645087,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 09:00:00 PM,05/05/2022 12:23:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+645083,Shooting Permit,05/11/2022 07:00:00 AM,05/11/2022 08:00:00 PM,05/05/2022 12:14:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between CLINTON STREET and HENRY STREET, CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, SIDNEY PLACE between STATE STREET and AITKEN PLACE, STATE STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+645014,Shooting Permit,05/11/2022 08:00:00 AM,05/11/2022 10:00:00 PM,05/05/2022 10:29:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+645008,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 09:00:00 PM,05/05/2022 10:17:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644970,Shooting Permit,05/11/2022 11:00:00 AM,05/12/2022 01:00:00 AM,05/04/2022 11:53:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+644968,Shooting Permit,05/09/2022 10:00:00 AM,05/09/2022 06:00:00 PM,05/04/2022 11:28:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between 44 STREET and 43 STREET, 42 STREET between 1 AVENUE and 2 AVENUE",Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+644966,Shooting Permit,05/10/2022 09:00:00 AM,05/10/2022 11:00:00 PM,05/04/2022 11:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+644963,Shooting Permit,05/09/2022 07:00:00 AM,05/09/2022 09:00:00 PM,05/04/2022 11:02:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+644943,Shooting Permit,05/12/2022 06:00:00 AM,05/13/2022 02:00:00 AM,05/04/2022 09:24:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+644909,Shooting Permit,05/07/2022 02:00:00 PM,05/07/2022 08:00:00 PM,05/04/2022 06:28:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between RUTLEDGE STREET and HEYWARD STREET,Brooklyn,1,90,Film,Feature,United States of America,"11206, 11211"
+644907,Shooting Permit,05/10/2022 08:00:00 AM,05/10/2022 08:00:00 PM,05/04/2022 06:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WINDSOR PLACE and PROSPECT AVENUE,Brooklyn,7,72,Television,Reality,United States of America,11215
+644904,Shooting Permit,05/11/2022 08:00:00 AM,05/11/2022 08:00:00 PM,05/04/2022 06:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between EAST 9 STREET and ST MARKS PLACE,Manhattan,3,9,Television,Reality,United States of America,10003
+644905,Shooting Permit,05/12/2022 08:00:00 AM,05/12/2022 08:00:00 PM,05/04/2022 06:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",TARAS SHEVCHENKO PLACE between EAST 7 STREET and EAST 6 STREET,Manhattan,3,9,Television,Reality,United States of America,10003
+644838,Shooting Permit,05/11/2022 06:00:00 AM,05/12/2022 01:00:00 AM,05/04/2022 04:00:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 ROAD and 44 DRIVE, 44 DRIVE between 10 STREET and 11 STREET, 44 ROAD between 11 STREET and 10 STREET, 44 DRIVE between 11 STREET and 21 STREET, 11 STREET between 44 AVENUE and 44 ROAD, 11 STREET between 44 DRIVE and 45 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+644829,Shooting Permit,05/10/2022 12:00:00 PM,05/10/2022 11:00:00 PM,05/04/2022 03:43:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between JACOBUS STREET and IRELAND STREET, EAST 61 STREET between 3 AVENUE and 2 AVENUE",Queens,"4, 8","110, 19",Film,Feature,United States of America,"10022, 10065, 11373"
+644810,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 10:00:00 PM,05/04/2022 03:23:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 65 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 65 STREET and EAST 64 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 68 STREET and EAST 65 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, EAST 69 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 62 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 62 STREET and EAST 61 STREET, EAST 61 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+644799,Shooting Permit,05/18/2022 06:30:00 AM,05/18/2022 07:30:00 PM,05/04/2022 03:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Film,Short,United States of America,11205
+644784,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 11:00:00 PM,05/04/2022 02:49:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between KANE STREET and DEGRAW STREET, KANE STREET between HICKS STREET and STRONG PLACE, COLUMBIA STREET between CONGRESS STREET and PRESIDENT STREET, COURT STREET between SACKETT STREET and KANE STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11231"
+644783,Shooting Permit,05/10/2022 07:00:00 AM,05/10/2022 09:00:00 PM,05/04/2022 02:48:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 72 STREET and WEST 73 STREET, WEST 73 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10023
+644782,Shooting Permit,05/06/2022 02:30:00 PM,05/07/2022 03:00:00 AM,05/04/2022 02:48:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between DEAD END and GREENPOINT AVE, GREENPOINT AVE between DEAD END and RAILROAD AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+644775,Rigging Permit,05/16/2022 06:00:00 AM,05/20/2022 06:00:00 PM,05/04/2022 02:37:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 106 STREET and EAST 107 STREET,Manhattan,11,23,Television,Talk Show,United States of America,10029
+644768,Shooting Permit,05/09/2022 09:00:00 AM,05/09/2022 11:00:00 PM,05/04/2022 02:20:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+644732,Shooting Permit,05/11/2022 02:30:00 AM,05/11/2022 09:00:00 PM,05/04/2022 01:20:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST FIRST STREET between FIRST AVENUE and LUDLOW STREET,Manhattan,3,"7, 9",Film,Feature,United States of America,"10002, 10003, 10009"
+644731,Shooting Permit,06/09/2022 07:00:00 AM,06/09/2022 07:00:00 PM,05/04/2022 01:18:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WADSWORTH TERRACE between FAIRVIEW AVENUE and WEST 190 STREET,Manhattan,12,34,Film,Feature,United States of America,10040
+644712,Shooting Permit,05/05/2022 11:00:00 AM,05/05/2022 11:00:00 PM,05/04/2022 12:40:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between 14 STREET and 15 STREET, FIFTH AVENUE between 15 STREET and 16 STREET, FIFTH AVENUE between 15 STREET and 16 STREET, 14 STREET between 5 AVENUE and 6 AVENUE, 14 STREET between 4 AVENUE and 5 AVENUE",Brooklyn,"6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+644683,Shooting Permit,05/06/2022 08:00:00 AM,05/06/2022 10:00:00 PM,05/04/2022 11:55:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, WEST 26 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 37 STREET between 34 AVENUE and 35 AVENUE",Manhattan,"1, 4","10, 114",Television,Episodic series,United States of America,"10001, 10011, 11101, 11106"
+644643,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 11:00:00 PM,05/04/2022 10:33:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITESTONE EXPRESSWAY SR NB between 20TH AVE and 14TH AVE, 15 AVENUE between 141 STREET and 138 STREET, PETRACCA PLACE between 20 AVENUE and DEAD END",Queens,7,109,Television,Episodic series,United States of America,11357
+644609,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 06:00:00 PM,05/04/2022 09:26:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 44 STREET and 47 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+644601,Shooting Permit,05/07/2022 07:00:00 AM,05/07/2022 09:00:00 PM,05/04/2022 08:49:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",PLYMOUTH STREET between BRIDGE STREET and JAY STREET,Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+644532,Theater Load in and Load Outs,05/12/2022 06:00:00 AM,05/14/2022 11:59:00 PM,05/03/2022 07:31:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",8 AVENUE between WEST 45 STREET and WEST 46 STREET,Manhattan,"4, 5",18,Theater,Theater,United States of America,10036
+644528,Shooting Permit,05/05/2022 10:30:00 AM,05/06/2022 02:00:00 AM,05/03/2022 06:28:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between BROADWAY and TROUTMAN STREET, TROUTMAN STREET between MYRTLE AVENUE and BUSHWICK AVENUE, BUSHWICK AVENUE between STANWIX STREET and TROUTMAN STREET, BUSHWICK AVENUE between TROUTMAN STREET and MYRTLE AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, Marcy Avenue between BROADWAY and Division Avenue, Division Avenue between HAVEMEYER STREET and Marcy Avenue, Rodney Street between SOUTH 9 STREET and Division Avenue, Rodney Street between MARCY AVENUE and Division Avenue, Division Avenue between Rodney Street and Keap Street",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11211, 11221"
+644478,Shooting Permit,05/06/2022 10:00:00 AM,05/06/2022 11:00:00 PM,05/03/2022 04:06:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","CAMPUS ROAD between EAST 23 STREET and EAST 27 STREET, BEDFORD AVENUE between CAMPUS ROAD and AVENUE I",Brooklyn,14,70,Television,Cable-episodic,United States of America,11210
+644470,Shooting Permit,05/06/2022 06:00:00 AM,05/06/2022 09:00:00 PM,05/03/2022 03:55:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between DUPONT STREET and EAGLE STREET, PROVOST STREET between EAGLE STREET and FREEMAN STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+644468,Shooting Permit,05/05/2022 07:00:00 AM,05/06/2022 01:00:00 AM,05/03/2022 03:52:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","OLD SLIP between WATER STREET and FRONT STREET, OLD SLIP between FRONT STREET and SOUTH STREET, BROAD STREET between SOUTH STREET and WATER STREET, SOUTH STREET between WHITEHALL STREET and OLD SLIP, WATER STREET between BROAD STREET and COENTIES SLIP, WATER STREET between COENTIES SLIP and OLD SLIP, PEARL STREET between BROAD STREET and COENTIES SLIP, PEARL ST between OLD SLIP and COENTIES SLIP",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10041"
+644465,Shooting Permit,05/06/2022 10:00:00 AM,05/07/2022 02:00:00 AM,05/03/2022 03:49:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 10 STREET and WEST 12 STREET, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 11 STREET and WEST 10 STREET, 6 AVENUE between WEST 10 STREET and WEST 9 STREET, WEST 18 STREET between 7 AVENUE and 6 AVENUE, PERRY STREET between WEST 4 STREET and WAVERLY PLACE, 7 AVENUE SOUTH between PERRY STREET and WEST 11 STREET, WAVERLY PLACE between PERRY STREET and WEST 11 STREET, WEST 4 STREET between PERRY STREET and CHARLES STREET, CHARLES STREET between BLEECKER STREET and WEST 4 STREET, 6 AVENUE between WASHINGTON PLACE and WEST 9 STREET, 6 AVENUE between WEST 3 STREET and WASHINGTON PLACE, WAVERLY PLACE between WASHINGTON SQUARE WEST and 6 AVENUE, PERRY STREET between WEST 4 STREET and BLEECKER STREET",Manhattan,"2, 4","13, 6",Television,Cable-episodic,United States of America,"10003, 10011, 10014"
+644448,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 09:00:00 PM,05/03/2022 03:34:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between COFFEY STREET and VAN DYKE STREET, WATER STREET between ADAMS STREET and WASHINGTON STREET, NASSAU STREET between GOLD STREET and NAVY STREET",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,"11201, 11231"
+644436,Shooting Permit,05/09/2022 07:00:00 AM,05/09/2022 11:00:00 PM,05/03/2022 03:16:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644433,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 11:00:00 PM,05/03/2022 03:10:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644432,Shooting Permit,05/06/2022 11:00:00 AM,05/07/2022 03:00:00 AM,05/03/2022 03:09:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between PUTNAM AVENUE and GATES AVENUE, GRAND AVENUE between GATES AVENUE and GREENE AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11238
+644429,Theater Load in and Load Outs,05/07/2022 12:01:00 AM,05/07/2022 11:59:00 PM,05/03/2022 03:07:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+644426,Shooting Permit,05/05/2022 07:00:00 AM,05/05/2022 11:00:00 PM,05/03/2022 03:02:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644425,Theater Load in and Load Outs,05/08/2022 12:01:00 AM,05/09/2022 11:59:00 PM,05/03/2022 03:01:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+644415,Shooting Permit,05/09/2022 07:00:00 AM,05/09/2022 09:00:00 PM,05/03/2022 02:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 131 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 129 STREET and WEST 131 STREET, WEST 129 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 128 STREET and WEST 136 STREET",Manhattan,10,32,Television,Cable-episodic,United States of America,"10027, 10030"
+644401,Theater Load in and Load Outs,05/10/2022 12:01:00 AM,05/10/2022 11:59:00 PM,05/03/2022 02:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+644393,Theater Load in and Load Outs,05/06/2022 07:00:00 AM,05/10/2022 11:50:00 PM,05/03/2022 02:13:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+644385,Theater Load in and Load Outs,05/09/2022 12:01:00 AM,05/09/2022 11:59:00 PM,05/03/2022 02:00:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+644377,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 10:00:00 PM,05/03/2022 01:53:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between DITMAS AVENUE and AVENUE F, DITMAS AVENUE between MCDONALD AVENUE and EAST 2 STREET, DITMAS AVENUE between DAHILL ROAD and MCDONALD AVENUE, EAST 2 STREET between DITMAS AVENUE and AVENUE F, DITMAS AVENUE between EAST 2 STREET and EAST 5 STREET, CONEY ISLAND AVENUE between SLOCUM PLACE and DORCHESTER ROAD",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11218
+644356,Theater Load in and Load Outs,05/08/2022 12:01:00 AM,05/08/2022 11:59:00 PM,05/03/2022 01:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+644353,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 09:00:00 PM,05/03/2022 01:25:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between 5 AVENUE and BROADWAY, EAST 19 STREET between BROADWAY and PARK AVENUE SOUTH, EAST 18 STREET between 5 AVENUE and BROADWAY, EAST 18 STREET between 5 AVENUE and BROADWAY, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH",Manhattan,5,13,Film,Feature,United States of America,10003
+644351,Shooting Permit,05/05/2022 06:00:00 PM,05/06/2022 02:00:00 AM,05/03/2022 01:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",11th ST between 53 AVENUE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+644335,Theater Load in and Load Outs,05/10/2022 12:01:00 AM,05/10/2022 11:59:00 PM,05/03/2022 12:57:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+644318,Theater Load in and Load Outs,05/08/2022 12:01:00 AM,05/09/2022 11:59:00 PM,05/03/2022 12:33:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+644305,Theater Load in and Load Outs,05/07/2022 12:01:00 AM,05/07/2022 11:59:00 PM,05/03/2022 12:15:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+644303,Shooting Permit,05/13/2022 09:00:00 AM,05/13/2022 11:00:00 PM,05/03/2022 12:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Television,Episodic series,United States of America,11101
+644297,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 08:00:00 PM,05/03/2022 12:10:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Television,Episodic series,United States of America,11101
+644295,Shooting Permit,05/11/2022 07:00:00 AM,05/11/2022 07:00:00 PM,05/03/2022 12:04:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Television,Episodic series,United States of America,11101
+644292,Shooting Permit,05/06/2022 06:00:00 PM,05/07/2022 01:00:00 AM,05/03/2022 12:00:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644288,Shooting Permit,05/06/2022 08:00:00 AM,05/06/2022 11:00:00 PM,05/03/2022 11:55:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644287,Shooting Permit,05/05/2022 08:00:00 AM,05/05/2022 11:00:00 PM,05/03/2022 11:55:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644283,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/06/2022 11:59:00 PM,05/03/2022 11:51:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+644277,Shooting Permit,05/04/2022 10:00:00 AM,05/04/2022 11:30:00 PM,05/03/2022 11:41:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 121 STREET and WEST 120 STREET, WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE",Manhattan,10,28,Television,Pilot,United States of America,10027
+644270,Shooting Permit,05/04/2022 08:00:00 AM,05/04/2022 10:00:00 PM,05/03/2022 11:34:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",PAYSON AVENUE between RIVERSIDE DRIVE and DYCKMAN STREET,Manhattan,12,34,Music Video,Signed Artist,United States of America,10034
+644219,Shooting Permit,05/05/2022 09:00:00 AM,05/05/2022 11:00:00 PM,05/03/2022 10:22:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST END AVENUE between EAST 84 STREET and EAST 86 STREET, EAST END AVENUE between EAST 80 STREET and EAST 82 STREET, EAST 81 STREET between YORK AVENUE and EAST END AVENUE, EAST END AVENUE between EAST 79 STREET and EAST 80 STREET, EAST 80 STREET between EAST END AVENUE and YORK AVENUE, YORK AVENUE between EAST 79 STREET and EAST 84 STREET, EAST 80 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 87 STREET and EAST 88 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075, 10128"
+644212,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 07:00:00 PM,05/03/2022 10:15:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",BRIDGE STREET between WHITEHALL STREET and BROAD STREET,Manhattan,1,1,Television,Variety,United States of America,"10004, 10005, 10006"
+644173,Shooting Permit,05/08/2022 07:00:00 AM,05/08/2022 08:00:00 PM,05/03/2022 07:59:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,Commercial,Commercial,United States of America,"11220, 11232"
+644168,Shooting Permit,05/07/2022 07:00:00 AM,05/07/2022 08:00:00 PM,05/03/2022 07:43:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 14TH STREET between 9TH AVE and WASHINGTON STREET,Manhattan,4,10,Commercial,Commercial,United States of America,"10001, 10011, 10014"
+644163,Theater Load in and Load Outs,05/07/2022 06:00:00 AM,05/08/2022 11:00:00 AM,05/03/2022 05:12:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+644156,Shooting Permit,05/08/2022 07:00:00 AM,05/08/2022 09:00:00 PM,05/03/2022 12:25:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 70 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,8,19,Television,Not Applicable,United States of America,10021
+644149,Shooting Permit,05/06/2022 10:00:00 AM,05/06/2022 11:59:00 PM,05/02/2022 11:33:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between CLARK STREET and LOVE LANE, HENRY STREET between CLARK STREET and PINEAPPLE STREET, HENRY STREET between PINEAPPLE STREET and ORANGE STREET, CLARK STREET between HENRY STREET and MONROE PLACE, CLARK STREET between HENRY STREET and MONROE PLACE, MONTAGUE STREET between HENRY STREET and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+644128,Shooting Permit,05/16/2022 03:30:00 PM,05/16/2022 10:00:00 PM,05/02/2022 09:04:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between BROADWAY and 8 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+644127,Shooting Permit,05/09/2022 08:00:00 AM,05/09/2022 10:00:00 PM,05/02/2022 09:02:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+644125,Shooting Permit,05/05/2022 12:00:00 PM,05/06/2022 02:00:00 AM,05/02/2022 09:02:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between WILLIAM STREET and PEARL STREET, BEAVER STREET between PEARL STREET and HANOVER STREET, PEARL STREET between WALL STREET and HANOVER STREET, PEARL STREET between WALL STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between CEDAR STREET and PINE STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, MAIDEN LANE between WILLIAM STREET and PEARL STREET, PEARL STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and PINE STREET, HANOVER STREET between WALL STREET and EXCHANGE PLACE, BEAVER STREET between WILLIAM STREET and HANOVER STREET, FRONT STREET between WALL STREET and GOUVERNEUR LANE, CEDAR STREET between WILLIAM STREET and PEARL STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038, 10045"
+644121,Shooting Permit,05/06/2022 08:30:00 AM,05/06/2022 10:00:00 PM,05/02/2022 08:41:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREEN PLACE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between FORT GREENE PLACE and WASHINGTON PARK",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+644097,Shooting Permit,05/11/2022 06:00:00 AM,05/11/2022 10:00:00 PM,05/02/2022 05:52:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between EAGLE STREET and HURON STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+644085,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 09:00:00 PM,05/02/2022 04:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, BRADLEY AVENUE between GREENPOINT AVENUE and VAN DAM STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+644075,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 10:00:00 PM,05/02/2022 04:29:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644063,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 11:00:00 PM,05/02/2022 03:56:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+644055,Theater Load in and Load Outs,05/04/2022 05:00:00 AM,05/05/2022 01:00:00 PM,05/02/2022 03:48:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+644052,Shooting Permit,05/04/2022 02:00:00 PM,05/05/2022 02:00:00 AM,05/02/2022 03:46:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between KENT AVENUE and RIVER STREET, RIVER STREET between NORTH 1 STREET and METROPOLITAN AVENUE, NORTH 1 STREET between KENT AVENUE and RIVER STREET, RIVER STREET between NORTH 1 STREET and GRAND STREET, KENT AVENUE between NORTH 1 STREET and GRAND STREET, SOUTH 2 STREET between WYTHE AVENUE and KENT AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+644048,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 09:00:00 PM,05/02/2022 03:31:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between 7 STREET and 4 STREET, 5 AVENUE between CARROLL STREET and UNION STREET, 44 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between 44 STREET and 47 STREET",Brooklyn,"6, 7","72, 78",Commercial,Commercial,United States of America,"11215, 11220, 11232"
+644009,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 10:00:00 PM,05/02/2022 02:31:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+643999,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 07:00:00 PM,05/02/2022 02:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 90 STREET and EAST 91 STREET, MADISON AVENUE between EAST 93 STREET and EAST 94 STREET",Manhattan,"11, 64, 8","19, 22, 23",Still Photography,Not Applicable,United States of America,10128
+643995,Theater Load in and Load Outs,05/05/2022 12:01:00 AM,05/05/2022 11:59:00 PM,05/02/2022 02:05:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+643985,Shooting Permit,05/04/2022 11:00:00 AM,05/04/2022 11:00:00 PM,05/02/2022 01:45:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MIDWOOD STREET between BEDFORD AVENUE and ROGERS AVENUE, BEDFORD AVENUE between MAPLE STREET and RUTLAND ROAD, NOSTRAND AVENUE between LINCOLN ROAD and HAWTHORNE STREET, MAPLE STREET between BEDFORD AVENUE and ROGERS AVENUE",Brooklyn,9,71,Television,Cable-episodic,United States of America,11225
+643975,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/07/2022 06:00:00 AM,05/02/2022 01:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+643972,Theater Load in and Load Outs,05/04/2022 12:01:00 AM,05/04/2022 11:59:00 PM,05/02/2022 01:01:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+643969,Shooting Permit,05/05/2022 02:00:00 PM,05/06/2022 04:00:00 AM,05/02/2022 12:56:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST BROADWAY and CHURCH STREET, WEST BROADWAY between WARREN STREET and MURRAY STREET, CHAMBERS STREET between WEST BROADWAY and CHURCH STREET, PARK PLACE between GREENWICH STREET and WEST BROADWAY, LEONARD STREET between CHURCH STREET and WEST BROADWAY, BROADWAY between READE STREET and CHAMBERS STREET, CHAMBERS STREET between CHURCH STREET and BROADWAY, MURRAY STREET between WEST BROADWAY and CHURCH STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, CHURCH STREET between MURRAY STREET and DUANE STREET, WARREN STREET between GREENWICH STREET and WEST BROADWAY, WEST BROADWAY between THOMAS STREET and LEONARD STREET, WORTH STREET between WEST BROADWAY and CHURCH STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, CHURCH STREET between WORTH STREET and LEONARD STREET, THOMAS STREET between HUDSON STREET and WEST BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+643960,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 10:00:00 PM,05/02/2022 12:32:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between EAGLE STREET and HURON STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+643953,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 09:00:00 PM,05/02/2022 12:22:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+643946,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 11:00:00 PM,05/02/2022 12:05:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 58 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, ROOSEVELT AVENUE between 56 STREET and 59 STREET, WOODSIDE AVENUE between 58 STREET and 59 STREET, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 55 STREET between WOODSIDE AVENUE and 39 AVENUE, QUEENS BOULEVARD between 50 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+643929,Shooting Permit,05/10/2022 07:30:00 AM,05/10/2022 08:00:00 PM,05/02/2022 11:34:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE A between EAST 7 STREET and EAST 6 STREET,Manhattan,"3, 4, 5","13, 14, 9",Film,Feature,United States of America,"10001, 10009, 10010"
+643924,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/06/2022 11:59:00 PM,05/02/2022 11:25:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+643915,Theater Load in and Load Outs,05/07/2022 12:01:00 AM,05/07/2022 11:59:00 PM,05/02/2022 11:02:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+643910,Shooting Permit,05/05/2022 11:00:00 AM,05/06/2022 02:00:00 AM,05/02/2022 10:56:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","PULASKI STREET between MALCOLM X BOULEVARD and STUYVESANT AVENUE, MALCOLM X BOULEVARD between DEKALB AVENUE and BROADWAY",Brooklyn,3,81,Film,Feature,United States of America,11221
+643909,Theater Load in and Load Outs,05/08/2022 12:01:00 AM,05/08/2022 11:59:00 PM,05/02/2022 10:56:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+643905,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 09:00:00 PM,05/02/2022 10:55:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE A between EAST 9 STREET and EAST 10 STREET,Manhattan,3,9,WEB,Not Applicable,United States of America,10009
+643904,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/07/2022 06:00:00 AM,05/02/2022 10:49:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+643891,Theater Load in and Load Outs,05/07/2022 12:01:00 AM,05/07/2022 11:59:00 PM,05/02/2022 10:32:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+643890,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 01:00:00 PM,05/02/2022 10:32:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",RAILROAD AVE between DEAD END and GREENPOINT AVE,Queens,2,108,Television,Episodic series,United States of America,11101
+643889,Shooting Permit,05/03/2022 10:00:00 AM,05/03/2022 11:30:00 PM,05/02/2022 10:31:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 120 STREET between ADAM CLAYTON POWELL BOULEVARD and MALCOLM X BOULEVARD,Manhattan,10,28,Television,Pilot,United States of America,"10026, 10027"
+643882,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/06/2022 11:59:00 PM,05/02/2022 10:14:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+643876,Shooting Permit,05/12/2022 07:00:00 AM,05/12/2022 07:00:00 PM,05/02/2022 10:06:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA HEIGHTS between CRANBERRY STREET and VINE STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+643871,Theater Load in and Load Outs,05/05/2022 12:01:00 AM,05/05/2022 11:59:00 PM,05/02/2022 09:59:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+643869,Shooting Permit,05/05/2022 08:00:00 AM,05/05/2022 09:00:00 PM,05/02/2022 09:54:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREEN PLACE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between FORT GREEN PLACE and WASHINGTON PARK, LAFAYETTE AVENUE between ASHLAND PLACE and ST FELIX STREET",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+643857,Shooting Permit,05/09/2022 07:30:00 AM,05/09/2022 11:00:00 PM,05/02/2022 09:23:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Film,Feature,United States of America,11226
+643847,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 09:00:00 PM,05/02/2022 09:04:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between 3 PLACE and 4 PLACE, COURT STREET between FOURTH PLACE and HUNTINGTON STREET, COURT STREET between SECOND PLACE and THIRD PLACE, CLINTON STREET between THIRD PLACE and LUQUER STREET, FOURTH PLACE between HENRY STREET and CLINTON STREET, ATLANTIC AVENUE between SMITH STREET and BOND STREET",Brooklyn,"2, 6","76, 84",Television,Cable-episodic,United States of America,"11201, 11217, 11231"
+643828,Theater Load in and Load Outs,05/04/2022 12:01:00 AM,05/04/2022 11:59:00 PM,05/02/2022 01:39:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+643827,Theater Load in and Load Outs,05/03/2022 12:01:00 AM,05/03/2022 11:59:00 PM,05/02/2022 01:29:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+643758,Shooting Permit,05/04/2022 11:00:00 AM,05/05/2022 02:00:00 AM,05/01/2022 06:05:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PULASKI STREET between MALCOLM X BOULEVARD and STUYVESANT AVENUE, MALCOLM X BOULEVARD between DEKALB AVENUE and BROADWAY",Brooklyn,3,81,Film,Feature,United States of America,11221
+643743,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 07:00:00 PM,05/01/2022 04:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK HILL LANE between VANDERBILT AVENUE and PARK HILL AVENUE, PARK HILL AVENUE between PARK HILL LANE and OSGOOD AVENUE, PARK HILL LANE between PARK HILL AVENUE and FAIRWAY AVENUE, PARK HILL AVENUE between PARK HILL LANE and PARK HILL COURT, OSGOOD AVENUE between VANDERBILT AVENUE and PARK HILL AVENUE",Staten Island,1,120,Film,Feature,United States of America,10304
+643603,Shooting Permit,05/11/2022 06:00:00 AM,05/12/2022 01:00:00 AM,04/29/2022 07:58:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643602,Shooting Permit,05/10/2022 06:00:00 AM,05/11/2022 01:00:00 AM,04/29/2022 07:53:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643573,Shooting Permit,05/04/2022 01:00:00 PM,05/04/2022 10:00:00 PM,04/29/2022 05:22:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",DECATUR STREET between LEWIS AVENUE and STUYVESANT AVENUE,Brooklyn,3,81,Film,Feature,United States of America,11233
+643566,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 08:00:00 PM,04/29/2022 05:04:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643561,Shooting Permit,05/04/2022 09:00:00 AM,05/05/2022 12:00:00 AM,04/29/2022 04:47:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMAS S BOYLAND STREET between DUMONT AVENUE and LIVONIA AVENUE, THOMAS S BOYLAND STREET between BLAKE AVENUE and DUMONT AVENUE, DUMONT AVENUE between THOMAS S BOYLAND STREET and BRISTOL STREET, BRISTOL STREET between DUMONT AVENUE and LIVONIA AVENUE, DUMONT AVENUE between BRISTOL STREET and CHESTER STREET, DUMONT AVENUE between CHESTER STREET and ROCKAWAY AVENUE, East 98th Street between Sutter Avenue and Rutland Road, East 98th Street between Sutter Avenue and Rutland Road",Brooklyn,16,73,Film,Feature,United States of America,11212
+643559,Shooting Permit,05/04/2022 12:00:00 PM,05/05/2022 02:00:00 AM,04/29/2022 04:43:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 14 STREET and EAST 12 STREET, EAST 13 STREET between 3 AVENUE and 2 AVENUE, EAST 12 STREET between 3 AVENUE and 2 AVENUE, EAST 11 STREET between 3 AVENUE and 2 AVENUE, EAST 12 STREET between 2 AVENUE and 1 AVENUE, 5 AVENUE between EAST 14 STREET and EAST 13 STREET, EAST 13 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 13 STREET between UNIVERSITY PLACE and BROADWAY, UNIVERSITY PLACE between EAST 13 STREET and EAST 12 STREET, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, UNIVERSITY PLACE between EAST 12 STREET and EAST 11 STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10011"
+643557,Theater Load in and Load Outs,05/02/2022 06:00:00 AM,05/09/2022 11:59:00 PM,04/29/2022 04:39:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 60 STREET and EAST 61 STREET, EAST 60 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-other,United States of America,"10022, 10065"
+643548,Shooting Permit,05/06/2022 07:00:00 AM,05/06/2022 10:30:00 PM,04/29/2022 04:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Film,Feature,United States of America,11226
+643542,Shooting Permit,05/02/2022 06:30:00 AM,05/02/2022 09:00:00 PM,04/29/2022 04:16:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+643539,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 09:00:00 PM,04/29/2022 03:58:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","APOLLO STREET between DEAD END and BRIDGEWATER STREET, HAUSMAN STREET between NASSAU AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643535,Shooting Permit,05/22/2022 12:00:00 AM,05/22/2022 06:00:00 PM,04/29/2022 03:55:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between FIFTH AVENUE and MADISON AVENUE,Manhattan,8,19,Television,News,United States of America,10021
+643533,Shooting Permit,05/02/2022 10:00:00 AM,05/02/2022 10:00:00 PM,04/29/2022 03:53:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",FULTON STREET between CLAVER PLACE and FRANKLIN AVENUE,Brooklyn,3,79,Commercial,Promo,United States of America,11238
+643531,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,04/30/2022 11:59:00 PM,04/29/2022 03:51:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+643522,Shooting Permit,05/05/2022 07:00:00 AM,05/05/2022 09:00:00 PM,04/29/2022 03:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MONTAGUE STREET and PIERREPONT STREET, REMSEN STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between REMSEN STREET and MONTAGUE STREET, HENRY STREET between REMSEN STREET and MONTAGUE STREET, MONTAGUE STREET between HENRY STREET and CLINTON STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+643515,Theater Load in and Load Outs,05/11/2022 12:01:00 AM,05/19/2022 06:00:00 AM,04/29/2022 03:21:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 31 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+643477,Theater Load in and Load Outs,05/04/2022 12:01:00 AM,05/04/2022 11:59:00 PM,04/29/2022 02:02:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+643476,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 08:00:00 PM,04/29/2022 01:59:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",6TH AVE between MINETTA ST and WEST HOUSTON,Manhattan,2,6,Commercial,Commercial,United States of America,"10012, 10014"
+643472,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 08:00:00 PM,04/29/2022 01:53:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",6TH AVE between MINETTA ST and WEST HOUSTON,Manhattan,2,6,Commercial,Commercial,United States of America,"10012, 10014"
+643462,Theater Load in and Load Outs,05/08/2022 12:01:00 AM,05/08/2022 11:59:00 PM,04/29/2022 01:32:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+643461,Theater Load in and Load Outs,05/03/2022 12:01:00 AM,05/03/2022 11:59:00 PM,04/29/2022 01:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 ST between 11 AVE and 12 AVE, WEST 56 ST between 11 AVE and 12 AVE, 11 AVE between WEST 55 ST and WEST 56 ST",Manhattan,4,18,Theater,Theater,United States of America,10019
+643457,Theater Load in and Load Outs,05/03/2022 12:01:00 AM,05/04/2022 11:59:00 PM,04/29/2022 01:07:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 ST between 3 AVE and 4 AVE, 3 AVE between 11 ST and 12 ST",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+643437,Shooting Permit,05/04/2022 02:00:00 PM,05/05/2022 04:00:00 AM,04/29/2022 12:35:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST BROADWAY and CHURCH STREET, WARREN STREET between GREENWICH STREET and WEST BROADWAY, CHURCH STREET between MURRAY STREET and READE STREET, MURRAY STREET between WEST BROADWAY and CHURCH STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, WEST BROADWAY between THOMAS STREET and LEONARD STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, WORTH STREET between WEST BROADWAY and CHURCH STREET, HUDSON STREET between THOMAS STREET and LEONARD STREET, THOMAS STREET between HUDSON STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+643408,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 06:00:00 PM,04/29/2022 11:10:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MORNINGSIDE AVENUE between WEST 114 STREET and WEST 115 STREET, WEST 113 STREET between MANHATTAN AVENUE and FREDERICK DOUGLASS BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 112 STREET and WEST 113 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 113 STREET and WEST 114 STREET, MANHATTAN AVENUE between WEST 110 STREET and WEST 111 STREET, MANHATTAN AVENUE between WEST 111 STREET and WEST 112 STREET, MANHATTAN AVENUE between WEST 114 STREET and WEST 115 STREET, MANHATTAN AVENUE between WEST 115 STREET and WEST 116 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 116 STREET and WEST 117 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 117 STREET and WEST 118 STREET, W. 116TH STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, W. 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, FREDERICK DOUGLASS BOULEVARD between WEST 115 STREET and WEST 116 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,10026
+643390,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 09:00:00 PM,04/29/2022 10:04:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","PLYMOUTH STREET between JAY STREET and BRIDGE STREET, TILLARY STREET between FLATBUSH AVENUE EXTENSION and GOLD STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+643385,Shooting Permit,05/07/2022 06:00:00 AM,05/08/2022 09:00:00 PM,04/29/2022 09:58:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between ERASMUS STREET and SNYDER AVENUE,Brooklyn,"14, 17","67, 70",Film,Feature,United States of America,11226
+643382,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 08:00:00 PM,04/29/2022 09:46:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLERMONT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+643381,Shooting Permit,05/05/2022 07:00:00 AM,05/05/2022 09:00:00 PM,04/29/2022 09:46:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",CHAUNCEY STREET between STUYVESANT AVENUE and MALCOM X BOULEVARD,Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11233
+643325,Shooting Permit,05/05/2022 09:30:00 AM,05/05/2022 10:00:00 PM,04/28/2022 09:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",HANCOCK STREET between THROOP AVENUE and TOMPKINS AVENUE,Brooklyn,3,79,Film,Feature,United States of America,11216
+643307,Shooting Permit,05/05/2022 10:00:00 AM,05/06/2022 01:30:00 AM,04/28/2022 07:47:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between TROUTMAN STREET and STOCKHOLM STREET, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, SUYDAM STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, IRVING AVENUE between HART STREET and SUYDAM STREET, HART STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, JEFFERSON STREET between IRVING AVENUE and WYCKOFF AVENUE, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+643293,Shooting Permit,04/30/2022 06:00:00 AM,04/30/2022 10:00:00 PM,04/28/2022 06:21:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 55 STREET and EAST 56 STREET, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, 3 AVENUE between EAST 53 STREET and EAST 52 STREET",Manhattan,6,17,Commercial,Commercial,United States of America,10022
+643291,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 09:00:00 PM,04/28/2022 06:11:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Still Photography,Not Applicable,United States of America,10474
+643288,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 09:00:00 PM,04/28/2022 06:07:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Still Photography,Not Applicable,United States of America,10474
+643285,Shooting Permit,05/03/2022 06:00:00 AM,05/03/2022 09:00:00 PM,04/28/2022 06:02:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Still Photography,Not Applicable,United States of America,10474
+643283,Shooting Permit,05/13/2022 01:00:00 PM,05/13/2022 10:00:00 PM,04/28/2022 05:57:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",CARROLL STREET between CLINTON STREET and COURT STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+643280,Shooting Permit,05/04/2022 08:00:00 AM,05/04/2022 11:59:00 PM,04/28/2022 05:56:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between CHRYSTIE STREET and BOWERY, BOWERY between BROOME STREET and STANTON STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, BROOME STREET between BOWERY and ELIZABETH STREET, 3 AVENUE between ST MARKS PLACE and EAST 10 STREET, 4 AVENUE between EAST 10 STREET and EAST 12 STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE, EAST 4 STREET between BOWERY and LAFAYETTE STREET, LAFAYETTE STREET between BLEECKER STREET and EAST 4 STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012, 10013"
+643279,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 09:00:00 PM,04/28/2022 05:56:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between TIFFANY STREET and BARRETTO STREET",Bronx,2,41,Still Photography,Not Applicable,United States of America,10474
+643258,Shooting Permit,05/04/2022 09:00:00 AM,05/04/2022 11:30:00 PM,04/28/2022 05:14:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643256,Shooting Permit,05/03/2022 09:00:00 AM,05/03/2022 11:30:00 PM,04/28/2022 05:09:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+643223,Shooting Permit,05/03/2022 06:00:00 AM,05/03/2022 10:00:00 PM,04/28/2022 03:44:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+643221,Theater Load in and Load Outs,04/29/2022 05:00:00 AM,05/02/2022 11:59:00 PM,04/28/2022 03:31:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+643217,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 08:00:00 PM,04/28/2022 03:22:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between RIVERSIDE DRIVE WEST and WEST 134 STREET, RIVERSIDE DRIVE EAST between RIVERSIDE DRIVE and RIVERSIDE DRIVE WEST, CABRINI BOULEVARD between WEST 177 STREET and WEST 178 STREET, WEST 173 STREET between HAVEN AVENUE and FORT WASHINGTON AVENUE, ST NICHOLAS AVENUE between WEST 177 STREET and WEST 176 STREET, ST NICHOLAS AVENUE between WEST 176 STREET and WEST 175 STREET, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 174 STREET, ST NICHOLAS AVENUE between WEST 174 STREET and WEST 173 STREET, ST NICHOLAS AVENUE between WEST 173 STREET and WEST 172 STREET",Manhattan,"12, 9","26, 30, 33",Television,Pilot,United States of America,"10024, 10027, 10031, 10032, 10033, 10034"
+643212,Shooting Permit,05/04/2022 07:30:00 AM,05/04/2022 09:30:00 PM,04/28/2022 03:16:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 6 AVENUE and 5 AVENUE, WEST 37 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 38 STREET and WEST 36 STREET, 12 AVENUE between WEST 40 STREET and WEST 34 STREET, 10 AVENUE between WEST 29 STREET and WEST 25 STREET, WEST 28 STREET between 10 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10011, 10018"
+643207,Shooting Permit,05/05/2022 10:00:00 AM,05/05/2022 11:00:00 PM,04/28/2022 02:55:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST STREET and GREENWICH STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+643186,Shooting Permit,05/03/2022 07:30:00 AM,05/03/2022 08:00:00 PM,04/28/2022 02:17:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREENE PLACE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between FORT GREENE PLACE and WASHINGTON PARK",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+643183,Shooting Permit,05/10/2022 08:00:00 AM,05/10/2022 10:00:00 PM,04/28/2022 02:09:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 13 STREET between AVENUE U and AVENUE V, AVENUE U between EAST 14 STREET and EAST 13 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11229
+643177,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 09:00:00 PM,04/28/2022 01:49:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 4 STREET and WAVERLY PLACE, WAVERLY PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, WASHINGTON SQUARE NORTH between WASHINGTON SQUARE WEST and 5 AVENUE, 6 AVENUE between WEST 8 STREET and WEST 12 STREET, 5 AVENUE between WASHINGTON SQUARE NORTH and WEST 8 STREET, 5 AVENUE between WEST 8 STREET and WEST 11 STREET, 5 AVENUE between WEST 13 STREET and WEST 14 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011, 10014"
+643168,Shooting Permit,05/04/2022 08:00:00 AM,05/04/2022 10:00:00 PM,04/28/2022 01:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREEN PLACE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between FORT GREEN PLACE and WASHINGTON PARK",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+643153,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 09:00:00 PM,04/28/2022 01:23:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 86 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Television,Variety,United States of America,10028
+643144,Shooting Permit,05/06/2022 10:00:00 AM,05/06/2022 11:00:00 PM,04/28/2022 01:07:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",101 STREET between 4 AVENUE and FORT HAMILTON PARKWAY,Brooklyn,10,68,Television,Episodic series,United States of America,11209
+643127,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 11:00:00 PM,04/28/2022 12:42:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+643124,Shooting Permit,05/03/2022 10:00:00 AM,05/03/2022 11:00:00 PM,04/28/2022 12:35:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","HESTER STREET between MOTT STREET and MULBERRY STREET, MOTT STREET between HESTER STREET and CANAL STREET",Manhattan,2,5,Television,Episodic series,United States of America,10013
+643113,Shooting Permit,05/03/2022 07:30:00 AM,05/03/2022 08:30:00 PM,04/28/2022 12:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLARK STREET between MONROE PLACE and HENRY STREET, CLARK STREET between MONROE PLACE and HENRY STREET, HENRY STREET between CLARK STREET and LOVE LANE, HENRY STREET between ORANGE STREET and PINEAPPLE STREET, HENRY STREET between PINEAPPLE STREET and CLARK STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, COLUMBIA HEIGHTS between CRANBERRY STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and VINE STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, MONTAGUE STREET between MONTAGUE TERRACE and HICKS STREET, HENRY STREET between ORANGE STREET and CRANBERRY STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+643091,Shooting Permit,05/03/2022 08:00:00 AM,05/03/2022 09:00:00 PM,04/28/2022 11:44:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between HICKS STREET and HENRY STREET, COLUMBIA STREET between DEGRAW STREET and CONGRESS STREET, JORALEMON STREET between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HICKS STREET and HENRY STREET, CLINTON STREET between ATLANTIC AVENUE and PACIFIC STREET, CLINTON STREET between PACIFIC STREET and AMITY STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11231"
+643081,Shooting Permit,05/03/2022 06:00:00 AM,05/03/2022 07:00:00 PM,04/28/2022 11:18:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",BORDEN AVE between 5 STREET and VERNON BOULEVARD,Queens,2,108,Television,Episodic series,United States of America,11101
+643080,Shooting Permit,04/30/2022 06:00:00 AM,04/30/2022 08:00:00 PM,04/28/2022 11:16:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 11 STREET and 21 STREET, 23 STREET between 45 AVENUE and 45 ROAD, 24 STREET between 43 AVENUE and 44 ROAD",Queens,"1, 2","108, 114",Commercial,Promo,United States of America,11101
+643040,Shooting Permit,04/29/2022 07:30:00 AM,04/29/2022 09:00:00 PM,04/28/2022 10:06:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 17 STREET and EAST 19 STREET, 3 AVENUE between EAST 19 STREET and EAST 20 STREET, EAST 19 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 22 STREET between 2 AVENUE and 3 AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 19 STREET between 5 AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 18 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, 3 AVENUE between EAST 20 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+643039,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 08:00:00 PM,04/28/2022 10:05:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+643029,Shooting Permit,05/03/2022 10:00:00 AM,05/04/2022 02:00:00 AM,04/28/2022 09:53:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","94 AVENUE between 100 STREET and 102 STREET, 95 AVENUE between 100 STREET and 102 STREET, 95 AVENUE between 102 STREET and 103 STREET, 94 AVENUE between 102 STREET and 104 STREET, 104 STREET between 94 AVENUE and 95 AVENUE, 104 STREET between 94 AVENUE and ATLANTIC AVENUE, ATLANTIC AVENUE between 102 STREET and 104 STREET, ATLANTIC AVENUE between 104 STREET and 106 STREET",Queens,9,102,Film,Feature,United States of America,"11416, 11418"
+643019,Shooting Permit,05/01/2022 07:00:00 AM,05/01/2022 07:00:00 PM,04/28/2022 09:35:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Still Photography,Not Applicable,United States of America,10474
+643006,Shooting Permit,05/02/2022 08:00:00 AM,05/02/2022 10:00:00 PM,04/28/2022 08:59:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","PRINCE STREET between MOTT STREET and MULBERRY STREET, RIVERSIDE DRIVE between WEST 119 STREET and WEST 116 STREET",Manhattan,"2, 9","20, 26, 5",Still Photography,Not Applicable,United States of America,"10012, 10024, 10027"
+642994,Shooting Permit,05/03/2022 07:00:00 AM,05/03/2022 11:00:00 PM,04/28/2022 06:04:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642993,Shooting Permit,05/02/2022 07:30:00 AM,05/02/2022 09:00:00 PM,04/28/2022 06:01:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between BROADWAY and CROSBY STREET, PRINCE STREET between CROSBY STREET and LAFAYETTE STREET, WEST HOUSTON STREET between MERCER STREET and BROADWAY, EAST HOUSTON STREET between BROADWAY and CROSBY STREET, EAST HOUSTON STREET between CROSBY STREET and LAFAYETTE STREET, BROADWAY between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between EAST HOUSTON STREET and JERSEY STREET, LAFAYETTE STREET between JERSEY STREET and PRINCE STREET, BOWERY between EAST HOUSTON STREET and KENMARE STREET",Manhattan,"2, 3","1, 5, 6, 9",Television,Episodic series,United States of America,"10002, 10012"
+642983,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 11:00:00 PM,04/27/2022 11:41:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642946,Theater Load in and Load Outs,05/07/2022 06:01:00 AM,05/11/2022 05:59:00 AM,04/27/2022 06:23:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+642941,Shooting Permit,04/30/2022 07:00:00 AM,04/30/2022 09:00:00 PM,04/27/2022 05:44:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642936,Shooting Permit,05/06/2022 06:00:00 AM,05/07/2022 02:00:00 AM,04/27/2022 05:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between NORMAN AVENUE and NASSAU AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642925,Shooting Permit,05/03/2022 01:00:00 PM,05/04/2022 02:30:00 AM,04/27/2022 04:48:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 9 STREET and 8 STREET, 8 STREET between 4 AVENUE and 5 AVENUE, 9 STREET between 4 AVENUE and 5 AVENUE, 12 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between 10 STREET and 5 STREET, 5 STREET between 5 AVENUE and 6 AVENUE, 8 STREET between 5 AVENUE and 6 AVENUE, 3 AVENUE between 9 STREET and 10 STREET, 10 STREET between 3 AVENUE and 4 AVENUE, 9 STREET between 3 AVENUE and 4 AVENUE",Brooklyn,6,78,Television,Episodic series,United States of America,11215
+642914,Shooting Permit,05/01/2022 04:00:00 AM,05/01/2022 10:00:00 PM,04/27/2022 04:24:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between ASTOR PLACE and EAST 6 STREET, WEST 4 STREET between WEST 11 STREET and BANK STREET, PRINCE STREET between MOTT STREET and MULBERRY STREET",Manhattan,"2, 3","5, 6, 9",Still Photography,Not Applicable,United States of America,"10003, 10012, 10014"
+642871,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 11:00:00 PM,04/27/2022 03:36:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 54 STREET and EAST 49 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, 3 AVENUE between EAST 49 STREET and EAST 44 STREET, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+642868,Shooting Permit,05/03/2022 06:00:00 AM,05/03/2022 11:00:00 PM,04/27/2022 03:34:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 55 STREET and 56 STREET, 55 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 58 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, ROOSEVELT AVENUE between 56 STREET and 59 STREET, WOODSIDE AVENUE between 58 STREET and 59 STREET, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, QUEENS BOULEVARD between 50 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+642861,Shooting Permit,04/30/2022 06:00:00 AM,04/30/2022 08:00:00 PM,04/27/2022 03:23:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between MARCUS GARVEY BOULEVARD and THROOP AVENUE, BROOME STREET between ESSEX STREET and LUDLOW STREET, PRINCE STREET between MOTT STREET and MULBERRY STREET",Brooklyn,"2, 3","5, 7, 79",Still Photography,Not Applicable,United States of America,"10002, 10012, 11221"
+642848,Shooting Permit,05/05/2022 07:00:00 AM,05/05/2022 11:00:00 PM,04/27/2022 03:02:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Film,Feature,United States of America,11226
+642842,Theater Load in and Load Outs,05/02/2022 05:00:00 AM,05/08/2022 11:59:00 PM,04/27/2022 02:42:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Theater,Theater,United States of America,11222
+642838,Shooting Permit,04/29/2022 01:00:00 AM,04/29/2022 04:00:00 PM,04/27/2022 02:34:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between CLINTON STREET and PIKE SLIP, WHITE STREET between BROADWAY and LAFAYETTE STREET",Manhattan,"1, 3","5, 7, 9",Still Photography,Not Applicable,United States of America,"10002, 10013"
+642825,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 10:00:00 PM,04/27/2022 02:08:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+642808,Shooting Permit,05/02/2022 08:00:00 AM,05/02/2022 10:00:00 PM,04/27/2022 01:26:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642805,Shooting Permit,04/29/2022 08:00:00 AM,04/29/2022 10:00:00 PM,04/27/2022 01:21:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642804,Shooting Permit,05/02/2022 10:00:00 AM,05/03/2022 02:00:00 AM,04/27/2022 01:18:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between BUSHWICK AVENUE and BROADWAY, JEFFERSON STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between MELROSE STREET and JEFFERSON STREET, BROADWAY between MYRTLE AVENUE and DITMARS STREET, MYRTLE AVENUE between JEFFERSON STREET and TROUTMAN STREET, TROUTMAN STREET between MYRTLE AVENUE and BUSHWICK AVENUE, BUSHWICK AVENUE between TROUTMAN STREET and MYRTLE AVENUE, BUSHWICK AVENUE between STANWIX STREET and TROUTMAN STREET",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,"11206, 11221"
+642800,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 09:00:00 PM,04/27/2022 01:10:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, ATLANTIC AVENUE between CLINTON STREET and HENRY STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+642793,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 08:00:00 PM,04/27/2022 12:52:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",BERRIAN BOULEVARD between 45 STREET and 43 STREET,Queens,1,114,Film,Feature,United States of America,11105
+642764,Shooting Permit,05/04/2022 07:30:00 AM,05/04/2022 11:30:00 PM,04/27/2022 12:13:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 2 AVENUE between 40 STREET and 39 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+642755,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 09:00:00 PM,04/27/2022 11:57:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+642735,DCAS Prep/Shoot/Wrap Permit,04/29/2022 05:00:00 PM,04/29/2022 11:00:00 PM,04/27/2022 11:08:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, WORTH STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, WARREN STREET between BROADWAY and CHURCH STREET, ELK STREET between READE STREET and CHAMBERS STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+642710,Shooting Permit,04/29/2022 09:00:00 AM,04/29/2022 10:00:00 PM,04/27/2022 09:56:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between CLINTON STREET and HICKS STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, CLINTON STREET between STATE STREET and ATLANTIC AVENUE, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+642702,Shooting Permit,05/03/2022 10:00:00 AM,05/04/2022 02:00:00 AM,04/27/2022 09:45:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 32 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 32 STREET and EAST 33 STREET, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET",Manhattan,5,14,Film,Feature,United States of America,10016
+642660,Shooting Permit,04/29/2022 06:00:00 AM,04/29/2022 08:00:00 PM,04/27/2022 07:20:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON SQUARE between SUTTON PLACE and RIVERVIEW TERRACE, SUTTON PLACE between EAST 56TH and EAST 57TH, EAST 57 STREET between 1 AVENUE and SUTTON PLACE",Manhattan,6,17,Commercial,Commercial,United States of America,10022
+642657,Theater Load in and Load Outs,05/01/2022 12:01:00 AM,05/02/2022 06:00:00 AM,04/27/2022 01:16:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+642655,Theater Load in and Load Outs,05/01/2022 12:01:00 AM,05/01/2022 11:59:00 PM,04/27/2022 01:05:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+642633,Shooting Permit,04/29/2022 03:00:00 PM,04/30/2022 05:00:00 AM,04/26/2022 09:51:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 141 STREET between LOCUST AVENUE and WALNUT AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET, EAST 135 STREET between WILLOW AVENUE and WALNUT AVENUE, EAST 133 STREET between WILLOW AVENUE and LOCUST AVENUE, EAST 132 STREET between WILLOW AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 135 STREET and EAST 133 STREET, EAST 134 STREET between WALNUT AVENUE and LOCUST AVENUE, LOCUST AVENUE between EAST 134 STREET and EAST 133 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+642595,Shooting Permit,05/02/2022 07:00:00 AM,05/03/2022 01:00:00 AM,04/26/2022 06:15:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between BEARD STREET and VAN DYKE STREET, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, VERONA STREET between RICHARDS STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+642593,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 11:30:00 PM,04/26/2022 06:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SOUTH OXFORD STREET and VANDERBILT AVENUE, GREENE AVENUE between ADELPHI STREET and VANDERBILT AVENUE, LAFAYETTE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, CLERMONT AVENUE between LAFAYETTE AVENUE and GREENE AVENUE, VANDERBILT AVENUE between LAFAYETTE AVENUE and GREENE AVENUE, CLERMONT AVENUE between LAFAYETTE AVENUE and DEKALB AVENUE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,"11205, 11217, 11238"
+642583,Shooting Permit,04/29/2022 12:00:00 PM,04/29/2022 10:00:00 PM,04/26/2022 05:38:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE, ATLANTIC AVENUE between NEVINS STREET and BOND STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11217
+642576,Shooting Permit,05/02/2022 06:00:00 AM,05/02/2022 03:00:00 PM,04/26/2022 05:25:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",MACDONOUGH STREET between LEWIS AVENUE and STUYVESANT AVENUE,Brooklyn,3,81,WEB,Not Applicable,United States of America,11233
+642548,Shooting Permit,04/29/2022 04:00:00 PM,04/30/2022 06:00:00 AM,04/26/2022 04:44:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","POWELLS COVE BOULEVARD between DEAD END and 126 STREET, POWELL COVE BOULEVARD between LAX AVENUE and CAPSTAN COURT, 11 AVENUE between 135 STREET and 130 STREET",Queens,7,109,Television,Pilot,United States of America,11356
+642532,Shooting Permit,05/02/2022 01:00:00 AM,05/03/2022 07:00:00 PM,04/26/2022 04:31:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHURCH STREET between WALKER STREET and WHITE STREET,Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+642508,Shooting Permit,05/04/2022 07:00:00 AM,05/04/2022 08:00:00 PM,04/26/2022 03:56:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 73 STREET between AVENUE W and AVENUE X, AVENUE W between EAST 73 STREET and EAST 74 STREET",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+642485,Shooting Permit,04/29/2022 12:00:00 PM,04/30/2022 04:00:00 AM,04/26/2022 03:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE, WOODWARD AVENUE between METROPOLITAN AVENUE and FLUSHING AVENUE, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, WOODWARD AVENUE between HART STREET and STARR STREET, NASSAU AVENUE between NORTH HENRY STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between MONITOR STREET and KINGSLAND AVENUE, RUSSELL STREET between NASSAU AVENUE and NORMAN AVENUE, NORTH HENRY STREET between NASSAU AVENUE and NORMAN AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and SUTTON STREET",Queens,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11385"
+642476,Shooting Permit,04/29/2022 08:00:00 AM,04/30/2022 03:00:00 AM,04/26/2022 03:09:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between GREENE AVENUE and GATES AVENUE, GREENE AVENUE between CLERMONT AVENUE and WAVERLY AVENUE, VANDERBILT AVENUE between GREENE AVENUE and GATES AVENUE, GATES AVENUE between VANDERBILT AVENUE and CLINTON AVENUE, MYRTLE AVENUE between WASHINGTON PARK and WASHINGTON AVENUE, MYRTLE AVENUE between WASHINGTON AVENUE and HALL STREET",Brooklyn,2,88,Television,Episodic series,United States of America,"11205, 11238"
+642474,Shooting Permit,04/29/2022 11:30:00 AM,04/29/2022 06:00:00 PM,04/26/2022 03:06:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 1 AVENUE and NATHAN D PERLMAN PLACE, EAST 18 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 17 STREET and EAST 18 STREET, 1 AVENUE between EAST 15 STREET and EAST 17 STREET, 1 AVENUE between EAST 18 STREET and EAST 19 STREET",Manhattan,6,13,Television,Episodic series,United States of America,"10003, 10009"
+642450,Shooting Permit,05/02/2022 10:00:00 AM,05/02/2022 11:00:00 PM,04/26/2022 02:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEPTUNE AVENUE between WEST 15 STREET and STILLWELL AVENUE, STILLWELL AVE between NEPTUNE AVENUE and SHORE PARKWAY NORTH, WEST 15 STREET between NEPTUNE AVENUE and HART PLACE, HESTER STREET between MOTT STREET and MULBERRY STREET, MOTT STREET between HESTER STREET and CANAL STREET",Brooklyn,"13, 2","5, 60",Television,Episodic series,United States of America,"10013, 11214, 11223, 11224"
+642449,Shooting Permit,04/29/2022 03:00:00 PM,04/30/2022 08:00:00 AM,04/26/2022 02:48:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 ROAD and 22 ROAD, 19 STREET between 22 ROAD and DITMARS BOULEVARD, DITMARS BOULEVARD between 19 STREET and 21 STREET, 22 ROAD between 21 STREET and 19 STREET, 21 STREET between DITMARS BOULEVARD and 23 AVENUE, 22 DRIVE between 19 STREET and 21 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+642429,Shooting Permit,04/28/2022 12:00:00 PM,04/28/2022 10:00:00 PM,04/26/2022 02:31:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between 72 STREET and 74 STREET,Brooklyn,10,68,Film,Feature,United States of America,11209
+642391,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 10:00:00 PM,04/26/2022 01:32:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+642388,Shooting Permit,04/29/2022 09:00:00 AM,04/29/2022 11:59:00 PM,04/26/2022 01:27:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHARLES STREET and PERRY STREET, WEST STREET between PERRY STREET and WEST 11 STREET, WEST STREET between WEST 11 STREET and BANK STREET, WEST STREET between BANK STREET and BETHUNE STREET, WASHINGTON STREET between BETHUNE STREET and WEST 12 STREET, BANK STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 14TH STREET between WASHINGTON STREET and 9TH AVE, W. 14TH STREET between WASHINGTON STREET and 10TH AVE, PERRY STREET between WASHINGTON STREET and WEST STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+642314,Shooting Permit,04/29/2022 08:00:00 AM,04/29/2022 10:00:00 PM,04/26/2022 11:26:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 116 STREET, W 116TH ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 125TH ST between AMSTERDAM AVENUE and MORNINGSIDE AVENUE, MADISON AVENUE between EAST 118 STREET and EAST 117 STREET, WEST 123 STREET between MT MORRIS PARK WEST and LENOX AVENUE, MADISON AVENUE between EAST 122 STREET and EAST 124 STREET",Manhattan,"10, 11, 9","25, 26, 28",Commercial,Commercial,United States of America,"10026, 10027, 10035"
+642298,Shooting Permit,04/29/2022 04:00:00 PM,04/30/2022 04:00:00 AM,04/26/2022 11:09:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+642277,Theater Load in and Load Outs,05/06/2022 12:01:00 AM,05/07/2022 06:00:00 AM,04/26/2022 10:33:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+642273,Theater Load in and Load Outs,05/04/2022 12:01:00 AM,05/05/2022 11:59:00 PM,04/26/2022 10:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+642268,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,05/03/2022 11:59:00 PM,04/26/2022 10:24:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 34 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,Theater,Theater,United States of America,10001
+642262,Theater Load in and Load Outs,04/30/2022 05:00:00 AM,05/01/2022 01:00:00 PM,04/26/2022 10:14:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+642259,Theater Load in and Load Outs,04/27/2022 05:00:00 AM,04/28/2022 11:59:00 PM,04/26/2022 10:05:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+642258,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 08:00:00 PM,04/26/2022 10:02:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between ALLEN STREET and ORCHARD STREET, ORCHARD STREET between GRAND STREET and HESTER STREET",Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+642248,Shooting Permit,05/03/2022 06:30:00 AM,05/03/2022 09:30:00 PM,04/26/2022 09:45:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+642237,Shooting Permit,05/01/2022 05:30:00 AM,05/01/2022 02:00:00 PM,04/26/2022 09:01:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 155 STREET and WEST 153 STREET, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"12, 9","30, 33",Television,Pilot,United States of America,"10031, 10032"
+642201,Shooting Permit,04/29/2022 06:00:00 PM,04/30/2022 07:00:00 AM,04/25/2022 09:37:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEWIS AVENUE between MYRTLE AVENUE and VERNON AVENUE, BROADWAY between STOCKTON STREET and MYRTLE AVENUE, BROADWAY between STOCKTON STREET and MYRTLE AVENUE, VERNON AVENUE between LEWIS AVENUE and MARCUS GARVEY BOULEVARD, VERNON AVENUE between LEWIS AVENUE and STUYVESANT AVENUE",Brooklyn,"3, 4","79, 81, 83",Film,Feature,United States of America,11206
+642191,Theater Load in and Load Outs,05/16/2022 06:00:00 AM,05/20/2022 11:59:00 PM,04/25/2022 08:13:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE",Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+642190,Theater Load in and Load Outs,05/09/2022 06:00:00 AM,05/14/2022 11:59:00 PM,04/25/2022 08:10:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE, WEST 48 STREET between BROADWAY and 8 AVENUE, WEST 43 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between BROADWAY and 8 AVENUE",Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+642189,Theater Load in and Load Outs,05/03/2022 06:00:00 AM,05/07/2022 11:59:00 PM,04/25/2022 08:07:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE",Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+642170,Shooting Permit,05/18/2022 06:30:00 AM,05/18/2022 09:00:00 PM,04/25/2022 05:46:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 34 STREET and 35 STREET, 2 AVENUE between 35 STREET and 36 STREET",Brooklyn,"0, 7","0, 72",Film,Feature,United States of America,"0, 11232"
+642160,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 11:00:00 PM,04/25/2022 05:06:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642159,Shooting Permit,04/29/2022 11:00:00 AM,04/30/2022 02:00:00 AM,04/25/2022 05:03:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+642151,Theater Load in and Load Outs,05/02/2022 12:01:00 AM,05/02/2022 11:59:00 PM,04/25/2022 04:45:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+642139,Shooting Permit,04/28/2022 07:00:00 AM,04/29/2022 12:00:00 AM,04/25/2022 04:38:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 45 STREET and EAST 48 STREET, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 47 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 55 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"6, 7","17, 72",Television,Episodic series,United States of America,"10017, 10022, 11220"
+642119,Theater Load in and Load Outs,05/03/2022 12:01:00 AM,05/17/2022 11:59:00 PM,04/25/2022 04:07:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+642117,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 10:00:00 PM,04/25/2022 04:04:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 35 AVENUE between 37 STREET and 38 STREET, 37 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+642084,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 09:00:00 PM,04/25/2022 03:22:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+642082,Theater Load in and Load Outs,04/27/2022 12:01:00 AM,05/02/2022 06:00:00 AM,04/25/2022 03:21:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+642032,Shooting Permit,04/28/2022 06:00:00 AM,04/29/2022 02:00:00 AM,04/25/2022 02:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, 85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 82, 9","102, 94",Television,Episodic series,United States of America,"11222, 11385, 11418"
+642010,Shooting Permit,04/28/2022 06:00:00 PM,04/29/2022 06:00:00 AM,04/25/2022 02:25:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MYRTLE AVENUE and VERNON AVENUE, MYRTLE AVENUE between LEWIS AVENUE and BROADWAY, VERNON AVENUE between LEWIS AVENUE and BROADWAY",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,"11206, 11221"
+641992,Shooting Permit,04/28/2022 11:00:00 AM,04/29/2022 01:30:00 AM,04/25/2022 01:58:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","FREDERICK DOUGLASS BOULEVARD between WEST 114 STREET and WEST 116 STREET, MORNINGSIDE AVENUE between WEST 114 STREET and WEST 115 STREET, WEST 114 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 115 STREET between MANHATTAN AVENUE and MORNINGSIDE AVENUE, FREDERICK DOUGLASS BOULEVARD between WEST 113 STREET and WEST 114 STREET, WEST 114 STREET between FREDERICK DOUGLASS BOULEVARD and MANHATTAN AVENUE, WEST 116 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 116 STREET and WEST 117 STREET, MANHATTAN AVENUE between WEST 113 STREET and WEST 114 STREET, MANHATTAN AVENUE between WEST 114 STREET and WEST 115 STREET, MANHATTAN AVENUE between WEST 115 STREET and WEST 116 STREET, MORNINGSIDE AVENUE between WEST 115 STREET and WEST 116 STREET, WEST 114 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,10026
+641984,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 09:00:00 PM,04/25/2022 01:30:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, ATLANTIC AVENUE between CLINTON STREET and HENRY STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+641977,Shooting Permit,04/28/2022 06:00:00 AM,04/28/2022 05:00:00 PM,04/25/2022 01:23:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 8 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between WEST 8 STREET and WAVERLY PLACE",Manhattan,2,6,Commercial,Commercial,United States of America,"10011, 10014"
+641975,Shooting Permit,04/29/2022 10:00:00 AM,04/29/2022 09:00:00 PM,04/25/2022 01:12:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,5,18,Still Photography,Not Applicable,United States of America,"10022, 10152"
+641974,Shooting Permit,04/29/2022 10:00:00 AM,04/29/2022 11:00:00 PM,04/25/2022 01:11:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 52 STREET",Manhattan,5,18,Still Photography,Not Applicable,United States of America,"10019, 10020, 10119"
+641971,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 10:00:00 PM,04/25/2022 01:07:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, STATE STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+641957,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 08:00:00 PM,04/25/2022 12:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARKET SLIP between SOUTH STREET and CHERRY STREET, CENTER BOULEVARD between 47 AVENUE and 47 ROAD, 47 ROAD between CENTER BOULEVARD and 5 STREET",Manhattan,"2, 3","108, 5",Commercial,Commercial,United States of America,"10002, 10038, 11101, 11109"
+641956,Theater Load in and Load Outs,04/29/2022 12:01:00 AM,05/01/2022 06:00:00 AM,04/25/2022 12:41:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+641952,Shooting Permit,04/28/2022 09:00:00 AM,04/28/2022 10:00:00 PM,04/25/2022 12:33:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 141 STREET between LOCUST AVENUE and WALNUT AVENUE, EAST 140 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+641939,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 11:00:00 PM,04/25/2022 12:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+641928,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 10:00:00 PM,04/25/2022 11:51:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 116 STREET, WEST 116 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, W124TH ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MADISON AVENUE between EAST 122 STREET and EAST 124 STREET, WEST 123 STREET between LENOX AVENUE and MT MORRIS PARK WEST, MADISON AVENUE between EAST 117 STREET and EAST 118 STREET, WEST 125 STREET between FREDERICK DOUGLAS BOULEVARD and ST NICHOLAS AVENUE, SCHURZ AVENUE between HOSMER AVENUE and ROBINSON AVENUE",Manhattan,"10, 11","25, 28, 45",Commercial,Commercial,United States of America,"10026, 10027, 10035, 10465"
+641896,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 11:59:00 PM,04/25/2022 10:56:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and BROADWAY, 7 AVENUE between WEST 55 STREET and WEST 56 STREET, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, PARK AVENUE between EAST 50 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Bronx,"5, 64, 7","18, 22, 52",Television,Episodic series,United States of America,"10019, 10022, 10152, 10467"
+641888,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 11:00:00 PM,04/25/2022 10:48:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641884,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 11:00:00 PM,04/25/2022 10:43:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641881,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 11:00:00 PM,04/25/2022 10:38:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641870,Shooting Permit,04/27/2022 11:00:00 AM,04/27/2022 11:00:00 PM,04/25/2022 10:19:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 65 STREET and EAST 66 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 64 STREET and EAST 67 STREET, EAST 66 STREET between 3 AVENUE and 2 AVENUE, PARK AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 68 STREET and EAST 70 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+641849,Theater Load in and Load Outs,04/27/2022 12:01:00 AM,04/27/2022 11:59:00 PM,04/25/2022 09:44:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+641837,Shooting Permit,04/28/2022 12:00:00 PM,04/29/2022 04:00:00 AM,04/25/2022 09:05:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 23 STREET and CRESCENT STREET, 24 STREET between 43 AVENUE and 44 ROAD, HUNTER STREET between 44 DRIVE and CRESCENT STREET, 23 STREET between 44 ROAD and 44 AVENUE, CRESCENT STREET between 42 ROAD and 44 ROAD, 43 AVENUE between HUNTER STREET and 24 STREET, 44 ROAD between 21 STREET and 23 STREET, 23 STREET between 44 DRIVE and 44 ROAD, 44 DRIVE between 23 STREET and HUNTER STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, THOMSON AVENUE between COURT SQUARE and 44 DRIVE, SKILLMAN AVENUE between PEARSON PLACE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+641836,Shooting Permit,04/30/2022 06:00:00 AM,04/30/2022 08:00:00 PM,04/25/2022 08:42:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","BABBAGE STREET between 85 AVENUE and LEFFERTS BOULEVARD, BESSEMER STREET between 85 AVENUE and HILLSIDE AVENUE, BABBAGE STREET between HILLSIDE AVENUE and LEFFERTS BOULEVARD, HILLSIDE AVENUE between LEFFERTS BOULEVARD and MYRTLE AVENUE, MYRTLE AVENUE between 116 STREET and 117 STREET, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, MYRTLE AVENUE between 114 STREET and 116 STREET, 51 AVENUE between 21 STREET and 27 STREET, 25 STREET between 50 AVENUE and BORDEN AVENUE, 21 STREET between 51 AVENUE and BORDEN AVENUE, MYRTLE AVENUE between 117 STREET and JAMAICA AVENUE",Queens,"2, 9","102, 108",Television,Episodic series,United States of America,"11101, 11418"
+641833,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 11:30:00 PM,04/25/2022 08:29:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641641,Shooting Permit,04/28/2022 08:00:00 AM,04/28/2022 08:30:00 PM,04/22/2022 07:13:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between RIVINGTON STREET and DELANCEY STREET, ESSEX STREET between HESTER STREET and CANAL STREET",Manhattan,"2, 3","5, 7",Still Photography,Not Applicable,United States of America,"10002, 10012, 10013"
+641638,Shooting Permit,04/27/2022 11:00:00 AM,04/28/2022 12:00:00 AM,04/22/2022 06:33:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between CATHERINE STREET and MARKET STREET, CATHERINE STREET between EAST BROADWAY and HENRY STREET, CATHERINE STREET between HENRY STREET and MADISON STREET, HENRY STREET between CATHERINE STREET and MARKET STREET, SOUTH 9 STREET between MARCY AVENUE and RODNEY STREET, SOUTH 9 STREET between MARCY AVENUE and RODNEY STREET, MARCY AVENUE between BROADWAY and SOUTH 9 STREET, MARCY AVENUE between SOUTH 9 STREET and DIVISION AVENUE, MARCY AVENUE between DIVISION AVENUE and RODNEY STREET, RODNEY STREET between DIVISION AVENUE and MARCY AVENUE, DIVISION AVENUE between RODNEY STREET and KEAP STREET, MADISON STREET between CATHERINE STREET and MARKET STREET",Manhattan,"1, 3","5, 90",Film,Feature,United States of America,"10002, 10038, 11211"
+641628,Theater Load in and Load Outs,04/28/2022 12:01:00 AM,04/29/2022 06:00:00 AM,04/22/2022 05:28:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+641581,Shooting Permit,04/27/2022 09:00:00 AM,04/27/2022 01:00:00 PM,04/22/2022 03:03:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 18 STREET between 10 AVENUE and 11 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+641573,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 08:00:00 PM,04/22/2022 02:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 41 AVENUE and 40 AVENUE, 40 AVENUE between VERNON BOULEVARD and 12 STREET, 41 AVENUE between VERNON BOULEVARD and 10 STREET, 10 STREET between 40 AVENUE and 41 AVENUE, 44 DRIVE between 11 STREET and 10 STREET, 11 STREET between 44 ROAD and 44 DRIVE, 11 STREET between 44 AVENUE and 44 ROAD, 44 DRIVE between 11TH ST and 21ST ST, 44 ROAD between 11 STREET and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+641568,Shooting Permit,04/26/2022 09:00:00 AM,04/26/2022 01:00:00 PM,04/22/2022 02:05:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLINTON STREET between STANTON STREET and EAST HOUSTON STREET,Manhattan,3,7,Commercial,Commercial,United States of America,10002
+641558,Shooting Permit,04/28/2022 11:00:00 AM,04/29/2022 02:00:00 AM,04/22/2022 01:37:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY STREET between FLATBUSH AVENUE EXTENSION and FLEET PLACE, WILLOUGHBY STREET between FLEET PLACE and ASHLAND PLACE, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,"1, 2","88, 90",Film,Feature,United States of America,"11201, 11237"
+641533,Shooting Permit,04/26/2022 10:00:00 AM,04/26/2022 06:00:00 PM,04/22/2022 12:32:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",51 STREET between 31 AVENUE and BROADWAY,Queens,1,114,Film,Feature,United States of America,11377
+641524,Shooting Permit,04/28/2022 09:30:00 AM,04/28/2022 10:00:00 PM,04/22/2022 12:04:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+641511,Shooting Permit,04/28/2022 07:00:00 PM,04/29/2022 07:00:00 AM,04/22/2022 11:41:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST WASHINGTON PLACE between BARROW STREET and 6 AVENUE, 6 AVENUE between WEST WASHINGTON PLACE and MINETTA LANE, 6 AVENUE between MINETTA LANE and BLEECKER STREET, BLEECKER STREET between LEROY STREET and 6 AVENUE, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, WEST 4 STREET between 6 AVENUE and MACDOUGAL STREET, WEST 8 STREET between 5 AVENUE and MACDOUGAL STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+641510,Shooting Permit,04/26/2022 09:00:00 AM,04/27/2022 12:00:00 AM,04/22/2022 11:34:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between CATHERINE STREET and MARKET STREET, CATHERINE STREET between EAST BROADWAY and HENRY STREET, Catherine Street between Henry Street and Madison Street, HENRY STREET between CATHERINE STREET and MARKET STREET, SOUTH 9 STREET between MARCY AVENUE and RODNEY STREET, SOUTH 9 STREET between MARCY AVENUE and RODNEY STREET, MARCY AVENUE between BROADWAY and SOUTH 9 STREET, Marcy Avenue between SOUTH 9 STREET and Division Avenue, Marcy Avenue between Divison Avenue and Rodney Street, Rodney Street between Division Street and Marcy Avenue, Division Avenue between Rodney Street and Keap Street, MADISON STREET between CATHERINE STREET and MARKET STREET",Manhattan,"1, 3","5, 90",Film,Feature,United States of America,"10002, 10038, 11211"
+641496,Shooting Permit,04/27/2022 09:30:00 AM,04/28/2022 01:00:00 AM,04/22/2022 10:58:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between SPRING STREET and CANAL STREET, SPRING STREET between WASHINGTON STREET and GREENWICH STREET, SPRING STREET between RENWICK STREET and GREENWICH STREET, GREENWICH STREET between SPRING STREET and CANAL STREET, GREENWICH STREET between SPRING STREET and VANDAM STREET, RENWICK STREET between SPRING STREET and CANAL STREET, CANAL ST between WEST STREET and WASHINGTON STREET, CANAL STREET between WASHINGTON STREET and GREENWICH STREET, CANAL STREET between RENWICK STREET and GREENWICH STREET, CANAL STREET between RENWICK STREET and HUDSON STREET, DEBROSSES STREET between GREENWICH STREET and HUDSON STREET, SPRING STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between SPRING STREET and CANAL STREET, VANDAM STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,"10013, 10014"
+641481,Shooting Permit,04/30/2022 06:00:00 AM,04/30/2022 11:59:00 PM,04/22/2022 10:26:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,8,19,Television,Special/Awards Show,United States of America,"10021, 10065"
+641476,Shooting Permit,04/29/2022 06:00:00 AM,04/29/2022 11:59:00 PM,04/22/2022 10:16:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,8,19,Television,Special/Awards Show,United States of America,"10021, 10065"
+641473,Shooting Permit,04/28/2022 02:00:00 PM,04/29/2022 04:00:00 AM,04/22/2022 10:08:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","STILLWELL AVENUE between SURF AVENUE and BOWERY STREET, WEST 12TH STREET between SURF AVENUE and DEAD END, SURF AVENUE between STILLWELL AVENUE and JONES WALK, SURF AVENUE between WEST 8 STREET and WEST 5TH STREET, SURF AVENUE between WEST 5TH STREET and SEA BREEZE AVENUE",Brooklyn,13,60,Television,Cable-episodic,United States of America,11224
+641469,Shooting Permit,04/28/2022 08:00:00 AM,04/28/2022 10:00:00 PM,04/22/2022 09:57:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641465,Shooting Permit,04/25/2022 08:00:00 AM,04/25/2022 11:59:00 PM,04/22/2022 09:30:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+641415,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 07:00:00 PM,04/21/2022 08:48:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASTORIA PARK SOUTH between 18 STREET and 14 STREET,Queens,1,114,WEB,Not Applicable,United States of America,"11102, 11105"
+641414,Shooting Permit,04/27/2022 10:00:00 AM,04/27/2022 11:59:00 AM,04/21/2022 08:46:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641411,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 10:00:00 PM,04/21/2022 08:00:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11237
+641409,Shooting Permit,04/29/2022 09:30:00 AM,04/30/2022 02:30:00 AM,04/21/2022 07:43:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between NORMAN AVENUE and NASSAU AVENUE, NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, NASSAU AVENUE between MONITOR STREET and SUTTON STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET, BEDFORD AVENUE between SOUTH FIFTH STREET and SOUTH FOURTH STREET, SOUTH SIXTH STREET between BERRY STREET and BEDFORD AVENUE, DRIGGS AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+641408,Shooting Permit,04/27/2022 02:00:00 PM,04/28/2022 04:00:00 AM,04/21/2022 07:27:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and 7 AVENUE, WEST 25 STREET between 6 AVENUE and 7 AVENUE, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 24 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 21 STREET between 6 AVENUE and 7 AVENUE, WEST 21 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5",13,Television,Episodic series,United States of America,"10001, 10010, 10011"
+641407,Shooting Permit,04/28/2022 01:00:00 PM,04/29/2022 01:00:00 AM,04/21/2022 07:25:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between JEFFERSON STREET and TROUTMAN STREET, MYRTLE AVENUE between BROADWAY and DITMARS STREET, BROADWAY between MYRTLE AVENUE and DITMARS STREET, JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE, TROUTMAN STREET between BUSHWICK AVENUE and EVERGREEN AVENUE, MARCUS GARVEY AVENUE between PARK AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between THROOP AVENUE and LEWIS AVENUE, DITMARS STREET between MYRTLE AVENUE and BROADWAY",Brooklyn,"3, 4","79, 81, 83",Television,Episodic series,United States of America,"11206, 11221"
+641405,Shooting Permit,04/27/2022 12:00:00 PM,04/28/2022 03:00:00 AM,04/21/2022 07:21:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","DODWORTH STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between DODWORTH STREET and DEKALB AVENUE, MALCOM X BLVD between BROADWAY and DEKALB AVE, DEKALB AVENUE between MALCOM X BOULEVARD and BUSHWICK AVENUE, BROADWAY between SUYDAM STREET and HART STREET, STUYVESANT AVENUE between HART STREET and DEKALB AVENUE, DEKALB AVENUE between MALCOLM X BOULEVARD and STUYVESANT AVENUE, PULASKI STREET between LEWIS AVENUE and STUYVESANT AVENUE, MYRTLE AVENUE between SUYDAM STREET and BUSHWICK AVENUE, WILLOUGHBY AVENUE between EVERGREEN AVENUE and CHARLES PLACE, CHARLES PLACE between WILLOUGHBY AVENUE and DEAD END, TROUTMAN STREET between BUSHWICK AVENUE and EVERGREEN AVENUE, BUSHWICK AVENUE between TROUTMAN STREET and MYRTLE AVENUE, DITMARS STREET between MYRTLE AVENUE and BROADWAY, BROADWAY between DODWORTH STREET and LAWTON STREET",Brooklyn,"3, 4","81, 83",Television,Episodic series,United States of America,"11206, 11221"
+641395,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 09:00:00 PM,04/21/2022 06:34:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between 3RD PLACE and HAMILTON AVENUE, 4 PLACE between HENRY STREET and CLINTON STREET, CARROLL STREET between HICKS STREET and HENRY STREET, HICKS STREET between CARROLL STREET and HAMILTON AVE",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+641362,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,05/01/2022 06:00:00 AM,04/21/2022 04:46:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+641361,Theater Load in and Load Outs,04/29/2022 12:01:00 AM,04/29/2022 11:59:00 PM,04/21/2022 04:44:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+641360,Theater Load in and Load Outs,04/28/2022 12:01:00 AM,04/28/2022 11:59:00 PM,04/21/2022 04:43:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+641358,Theater Load in and Load Outs,04/29/2022 01:00:00 AM,04/29/2022 11:59:00 PM,04/21/2022 04:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+641353,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 10:00:00 PM,04/21/2022 04:28:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641352,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,05/01/2022 06:00:00 AM,04/21/2022 04:24:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+641349,Theater Load in and Load Outs,04/29/2022 12:01:00 AM,04/29/2022 11:59:00 PM,04/21/2022 04:19:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+641348,Shooting Permit,05/05/2022 12:00:00 PM,05/05/2022 05:00:00 PM,04/21/2022 04:16:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE Y between EAST 73 STREET and EAST 72 STREET,Brooklyn,18,63,Television,Episodic series,United States of America,11234
+641347,Shooting Permit,04/27/2022 06:00:00 AM,04/27/2022 11:30:00 PM,04/21/2022 04:13:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641344,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 09:00:00 PM,04/21/2022 04:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 176 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 177 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+641337,Shooting Permit,04/27/2022 08:00:00 AM,04/27/2022 10:00:00 PM,04/21/2022 03:47:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 116 STREET, W 116TH ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 120 STREET between 5 AVENUE and MT MORRIS PARK WEST, WEST 123 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 123 STREET between MT MORRIS PARK WEST and LENOX AVENUE",Manhattan,"10, 11","25, 28",Commercial,Commercial,United States of America,"10026, 10027, 10035"
+641328,Shooting Permit,04/26/2022 08:30:00 AM,04/26/2022 11:59:00 PM,04/21/2022 03:23:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Film,Feature,United States of America,10018
+641318,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 09:00:00 PM,04/21/2022 02:48:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 176 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 177 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+641313,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 07:00:00 PM,04/21/2022 02:32:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASTORIA PARK SOUTH between 18 STREET and 14 STREET,Queens,1,114,WEB,Not Applicable,United States of America,"11102, 11105"
+641305,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 10:00:00 PM,04/21/2022 02:04:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641304,Shooting Permit,04/26/2022 06:30:00 AM,04/26/2022 08:00:00 PM,04/21/2022 02:02:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 13 STREET and 21 STREET, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, QUEENS PLAZA SOUTH between 13 STREET and 21 STREET, 21 STREET between 43 AVENUE and 44 AVENUE, 12 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 12 STREET between 43 AVENUE and 43 ROAD, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+641280,Shooting Permit,04/29/2022 10:00:00 AM,04/30/2022 02:00:00 AM,04/21/2022 01:07:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GRAVESEND NECK ROAD and AVENUE U, WEST STREET between GRAVESEND NECK ROAD and AVENUE U, GRAVESEND NECK ROAD between VILLAGE ROAD EAST and WEST STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11223
+641275,Shooting Permit,04/23/2022 06:00:00 AM,04/23/2022 11:00:00 AM,04/21/2022 12:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET,Brooklyn,2,84,Television,Pilot,United States of America,11201
+641269,Shooting Permit,05/01/2022 08:00:00 AM,05/01/2022 07:00:00 PM,04/21/2022 12:43:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WOLCOTT STREET between CONOVER STREET and VAN BRUNT STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+641250,Shooting Permit,04/29/2022 03:30:00 PM,04/30/2022 06:30:00 AM,04/21/2022 11:57:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","39 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 39 STREET and 40 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+641247,Theater Load in and Load Outs,04/25/2022 06:00:00 AM,04/26/2022 01:00:00 PM,04/21/2022 11:49:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between FLATBUSH AVENUE and 6 AVENUE, ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+641243,Theater Load in and Load Outs,04/23/2022 06:00:00 AM,04/24/2022 07:00:00 AM,04/21/2022 11:42:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+641224,Theater Load in and Load Outs,04/26/2022 05:00:00 AM,04/27/2022 12:00:00 PM,04/21/2022 10:48:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+641222,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 10:00:00 PM,04/21/2022 10:45:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+641218,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 10:00:00 PM,04/21/2022 10:40:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+641210,Theater Load in and Load Outs,04/23/2022 05:45:00 AM,04/24/2022 12:00:00 PM,04/21/2022 10:27:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+641208,Shooting Permit,04/25/2022 06:30:00 AM,04/25/2022 08:00:00 PM,04/21/2022 10:22:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between WEST 33 STREET and WEST 27 STREET, WEST 30 STREET between 12 AVENUE and 11 AVENUE, WEST 34 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 34 STREET and WEST 30 STREET, WEST 29 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10018"
+641206,Theater Load in and Load Outs,04/22/2022 01:01:00 PM,04/23/2022 05:30:00 AM,04/21/2022 10:19:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+641195,Shooting Permit,04/26/2022 04:00:00 PM,04/27/2022 06:00:00 AM,04/21/2022 09:42:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 13 STREET between 9 AVENUE and 10 AVENUE, WASHINGTON STREET between WEST 12 STREET and WEST 14 STREET, WEST 14TH STREET between 9TH AVENUE and WASHINGTON STREET, WEST 14 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between 8 AVENUE and HUDSON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+641193,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 10:00:00 PM,04/21/2022 09:37:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE R between NOSTRAND AVENUE and HARING STREET, AVENUE R between NOSTRAND AVENUE and EAST 29 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11229
+641192,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 09:00:00 PM,04/21/2022 09:31:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 176 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 177 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+641175,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 08:00:00 PM,04/21/2022 08:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,WEB,Not Applicable,United States of America,10474
+641176,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 09:00:00 PM,04/21/2022 08:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,WEB,Not Applicable,United States of America,10474
+641172,Shooting Permit,04/22/2022 07:00:00 AM,04/22/2022 09:00:00 PM,04/21/2022 08:10:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+641148,Shooting Permit,04/27/2022 10:00:00 AM,04/28/2022 02:00:00 AM,04/20/2022 09:29:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PELL STREET and DOYERS STREET, CHATHAM SQUARE between DOYERS STREET and MOTT STREET, BOWERY between PELL STREET and DOYERS STREET, ALLEN STREET between RIVINGTON STREET and DELANCEY STREET, ALLEN STREET between RIVINGTON STREET and STANTON STREET, DELANCEY STREET between ALLEN STREET and ELDRIDGE STREET, CHATHAM SQUARE between DOYERS STREET and MOTT STREET, MOTT STREET between PELL STREET and MOSCO STREET",Manhattan,3,"5, 7",Film,Feature,United States of America,"10002, 10013, 10038"
+641140,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 08:00:00 PM,04/20/2022 08:32:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between MARKET STREET and FORSYTH STREET, BOWERY between BAYARD STREET and DIVISION STREET, DIVISION STREET between BOWERY and MARKET STREET, DIVISION STREET between MARKET STREET and FORSYTH STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET, CHRYSTIE STREET between HESTER STREET and CANAL STREET",Manhattan,3,5,Film,Feature,United States of America,"10002, 10013"
+641136,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 07:00:00 PM,04/20/2022 07:51:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GREENPOINT AVENUE and MILTON STREET, NOBLE STREET between WEST STREET and DEAD END, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET",Brooklyn,1,94,Still Photography,Not Applicable,United States of America,"11211, 11222"
+641126,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 08:00:00 PM,04/20/2022 06:44:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, COLUMBIA HEIGHTS between VINE STREET and CRANBERRY STREET, EVERIT STREET between COLUMBIA HEIGHTS and OLD FULTON STREET, PLYMOUTH STREET between JAY STREET and GOLD STREET, BRIDGE STREET between PLYMOUTH STREET and JOHN STREET, GOLD STREET between PLYMOUTH STREET and JOHN STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+641113,Shooting Permit,04/26/2022 02:00:00 PM,04/27/2022 02:00:00 AM,04/20/2022 05:51:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between SOUTH 5 STREET and SOUTH 6 STREET, SOUTH FIFTH STREET between KENT AVENUE and BEDFORD AVENUE, BERRY STREET between SOUTH SIXTH STREET and BROADWAY, BERRY STREET between BROADWAY and SOUTH EIGHTH STREET, SOUTH SIXTH STREET between BERRY STREET and BEDFORD AVENUE, BROADWAY between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+641094,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 09:00:00 PM,04/20/2022 04:58:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",VERNON AVENUE between THROOP AVENUE and MARCUS GARVEY BOULEVARD,Brooklyn,3,79,Commercial,Commercial,United States of America,11206
+641086,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 09:00:00 PM,04/20/2022 04:40:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","E. 33rd Street between Broadway and 5th Avenue, EAST 33 STREET between 5 AVENUE and PARK AVENUE, Park Ave between 30th Street and 33rd Street, 5 AVENUE between EAST 33 STREET and EAST 34 STREET, MADISON AVENUE between EAST 34 STREET and EAST 33 STREET, MADISON AVENUE between EAST 32 STREET and EAST 33 STREET, EAST 32 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10118"
+641074,Shooting Permit,04/26/2022 01:30:00 PM,04/27/2022 02:00:00 AM,04/20/2022 04:12:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 33 STREET and WEST 34 STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 25 STREET and WEST 27 STREET, 10 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 25 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 24 STREET and WEST 25 STREET, WEST 25 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Television,Episodic series,United States of America,"10001, 10018"
+641058,Rigging Permit,04/24/2022 07:00:00 AM,04/24/2022 07:00:00 PM,04/20/2022 03:53:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between 5 AVENUE and 6 AVENUE,Manhattan,2,6,Television,Episodic series,United States of America,10011
+641050,Rigging Permit,05/09/2022 06:00:00 AM,05/13/2022 06:00:00 PM,04/20/2022 03:40:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 106 STREET and EAST 107 STREET,Manhattan,11,23,Television,Talk Show,United States of America,10029
+641048,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 11:00:00 PM,04/20/2022 03:31:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 24 AVENUE and HOYT AVENUE S, 24 DRIVE between 21 STREET and 23 STREET, ASTORIA PARK SOUTH between 21 STREET and SHORE BOULEVARD, ASTORIA PARK SOUTH between 18 STREET and 14 PLACE",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+641047,Shooting Permit,04/24/2022 07:00:00 AM,04/24/2022 07:00:00 PM,04/20/2022 03:30:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+641046,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 08:00:00 PM,04/20/2022 03:22:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLARENDON ROAD between EAST 23 STREET and BEDFORD AVENUE, CLARENDON ROAD between BEDFORD AVENUE and EAST 25 STREET, EAST 25 STREET between CLARENDON ROAD and AVENUE D, CLARENDON ROAD between EAST 26 STREET and EAST 25 STREET, CLARENDON ROAD between EAST 26 STREET and ROGERS AVENUE, AVENUE D between BEDFORD AVENUE and EAST 25 STREET, AVENUE D between EAST 25 STREET and EAST 26 STREET, AVENUE D between EAST 26 STREET and ROGERS AVENUE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+641043,Shooting Permit,04/25/2022 08:00:00 AM,04/25/2022 10:00:00 PM,04/20/2022 03:14:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 8 STREET and WEST 12 STREET, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 9 STREET between 5 AVENUE and BROADWAY, UNIVERSITY PLACE between EAST 8 STREET and EAST 10 STREET, BROADWAY between EAST 8 STREET and EAST 9 STREET, WEST 8 STREET between 5 AVENUE and MACDOUGAL STREET",Manhattan,2,"6, 9",Television,Episodic series,United States of America,"10003, 10011"
+641039,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 08:00:00 PM,04/20/2022 03:03:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","CATON AVENUE between FLATBUSH AVENUE and LINDEN BOULEVARD, FLATBUSH AVENUE between WOODRUFF AVENUE and CATON AVENUE, FLATBUSH AVENUE between CATON AVENUE and MARTENSE STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+641037,Theater Load in and Load Outs,04/27/2022 12:01:00 AM,04/28/2022 06:00:00 AM,04/20/2022 02:59:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+641035,Theater Load in and Load Outs,04/27/2022 12:01:00 AM,04/27/2022 11:59:00 PM,04/20/2022 02:57:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+641027,Shooting Permit,05/03/2022 06:00:00 AM,05/03/2022 08:00:00 PM,04/20/2022 02:31:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARADE PLACE between CROOKE AVENUE and WOODRUFF AVENUE, WOODRUFF AVENUE between PARADE PLACE and SAINT PAULS PLACE, CATON AVENUE between PARADE PLACE and SAINT PAULS PLACE, CATON AVENUE between OCEAN AVENUE and SAINT PAULS PLACE, SAINT PAULS PLACE between CATON AVENUE and SAINT PAULS COURT, SAINT PAULS COURT between SAINT PAULS PLACE and OCEAN AVENUE, SAINT PAULS PLACE between SAINT PAULS COURT and CHURCH AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+641023,DCAS Prep/Shoot/Wrap Permit,04/22/2022 04:00:00 PM,04/22/2022 09:30:00 PM,04/20/2022 02:18:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, WORTH STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, READE STREET between BROADWAY and CHURCH STREET, WARREN STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+641019,Shooting Permit,04/22/2022 07:30:00 AM,04/22/2022 05:00:00 PM,04/20/2022 02:13:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between BAXTER STREET and LAFAYETTE STREET, WALKER STREET between BAXTER STREET and MULBERRY STREET, BAXTER STREET between WALKER STREET and WHITE STREET, CENTRE STREET between WALKER STREET and WHITE STREET, LAFAYETTE STREET between WALKER STREET and WHITE STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,10013
+641015,Shooting Permit,05/02/2022 07:00:00 AM,05/02/2022 11:00:00 PM,04/20/2022 02:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORREST STREET between CENTRAL AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between FORREST STREET and WILSON AVENUE, FLUSHING AVENUE between MORGAN AVENUE and BOGART STREET, FLUSHING AVENUE between WILSON AVENUE and NOLL STREET, EVERGREEN AVENUE between FLUSHING AVENUE and NOLL STREET, NOLL STREET between EVERGREEN AVENUE and CENTRAL AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and NOLL STREET, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, WILSON AVENUE between NOLL STREET and GEORGE STREET, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+641013,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 09:00:00 PM,04/20/2022 02:01:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+641012,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 09:00:00 PM,04/20/2022 02:00:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+641011,Shooting Permit,04/27/2022 07:00:00 AM,04/27/2022 09:00:00 PM,04/20/2022 02:00:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+641010,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 08:00:00 PM,04/20/2022 01:59:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+641009,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 08:00:00 PM,04/20/2022 01:59:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+640994,Shooting Permit,04/22/2022 08:00:00 AM,04/22/2022 10:00:00 PM,04/20/2022 01:26:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, KINGSLAND AVENUE between NASSAU AVENUE and NORMAN AVENUE, NASSAU AVENUE between MONITOR STREET and KINGSLAND AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and MORGAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Cable-episodic,United States of America,"11101, 11222"
+640971,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 10:00:00 PM,04/20/2022 12:31:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+640938,Shooting Permit,04/22/2022 08:00:00 AM,04/22/2022 06:00:00 PM,04/20/2022 11:28:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 49 STREET and 51 STREET,Queens,1,114,Film,Feature,United States of America,11377
+640919,Rigging Permit,04/25/2022 08:30:00 AM,04/25/2022 03:00:00 PM,04/20/2022 10:32:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+640917,Shooting Permit,04/23/2022 07:00:00 AM,04/23/2022 07:00:00 PM,04/20/2022 10:25:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+640914,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 10:00:00 PM,04/20/2022 10:23:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 43 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10017
+640913,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 09:00:00 PM,04/20/2022 10:23:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 43 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,5,14,Commercial,Commercial,United States of America,10017
+640899,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 08:00:00 PM,04/20/2022 09:47:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between BLEECKER STREET and WEST HOUSTON STREET, BLEECKER STREET between MERCER STREET and LAGUARDIA PLACE, MERCER STREET between WEST 3 STREET and BLEECKER STREET, BLEECKER STREET between MERCER STREET and BROADWAY, BLEECKER STREET between BROADWAY and CROSBY STREET, BLEECKER STREET between CROSBY STREET and LAFAYETTE STREET, EAST 12 STREET between 4 AVENUE and BROADWAY, BROADWAY between EAST 12 STREET and EAST 13 STREET, 4 AVENUE between EAST 10 STREET and EAST 12 STREET, 4 AVENUE between EAST 12 STREET and EAST 13 STREET, EAST 13 STREET between BROADWAY and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BLEECKER STREET and JONES ALLEY",Manhattan,"2, 3","6, 9",Television,Pilot,United States of America,"10003, 10012"
+640897,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 09:00:00 PM,04/20/2022 09:39:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 31 STREET between 5 AVENUE and BROADWAY,Manhattan,5,14,Film,Feature,United States of America,10001
+640887,Shooting Permit,04/22/2022 10:00:00 AM,04/23/2022 12:00:00 AM,04/20/2022 09:08:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between FERRIS STREET and RICHARD STREET, CONOVER STREET between COFFEY STREET and BEARD STREET, CONOVER STREET between REED STREET and DEAD END, COLUMBIA STREET between HALLECK STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+640873,Theater Load in and Load Outs,04/21/2022 05:00:00 AM,04/22/2022 01:00:00 PM,04/20/2022 04:20:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+640871,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 09:00:00 PM,04/20/2022 01:34:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SMITH STREET between FULTON STREET and LIVINGSTON STREET, LAWRENCE STREET between FULTON STREET and WILLOUGHBY STREET, WILLOUGHBY STREET between BRIDGE STREET and LAWRENCE STREET, WILLOUGHBY STREET between LAWRENCE STREET and JAY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, LIVINGSTON STREET between GALLATIN PLACE and HOYT STREET, DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET, GALLATIN PLACE between FULTON STREET and LIVINGSTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+640846,Shooting Permit,04/23/2022 06:00:00 AM,04/23/2022 06:00:00 PM,04/19/2022 09:23:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 9 STREET between 1 AVENUE and 2 AVENUE, FORT WASHINGTON AVENUE between WEST 161 STREET and WEST 162 STREET, WEST 162 STREET between RIVERSIDE DRIVE and FORT WASHINGTON AVENUE",Manhattan,"12, 3","33, 9",Film,Feature,United States of America,"10003, 10032"
+640844,Shooting Permit,04/25/2022 09:00:00 AM,04/25/2022 09:00:00 PM,04/19/2022 09:12:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST NICHOLAS AVENUE between WEST 154 STREET and WEST 155 STREET,Manhattan,9,30,Film,Feature,United States of America,10032
+640785,Shooting Permit,04/25/2022 06:00:00 AM,04/26/2022 12:01:00 AM,04/19/2022 04:47:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",53 STREET between 1 AVENUE and 2 AVENUE,Brooklyn,7,72,Music Video,Signed Artist,United States of America,"11220, 11232"
+640753,Shooting Permit,04/29/2022 07:00:00 AM,04/29/2022 07:00:00 PM,04/19/2022 03:44:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHATHAM SQUARE between MOTT STREET and DOYERS STREET,Manhattan,3,5,Still Photography,Not Applicable,United States of America,"10002, 10013, 10038"
+640742,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 07:00:00 PM,04/19/2022 03:19:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",FLATBUSH AVENUE between LINCOLN ROAD and BEEKMAN PLACE,Brooklyn,9,71,Still Photography,Not Applicable,United States of America,11225
+640743,Shooting Permit,04/26/2022 07:00:00 AM,04/26/2022 07:00:00 PM,04/19/2022 03:19:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",FULTON STREET between TOMPKINS AVENUE and THROOP AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+640744,Shooting Permit,04/28/2022 07:00:00 AM,04/28/2022 07:00:00 PM,04/19/2022 03:19:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between SENATOR STREET and 68 STREET,Brooklyn,10,68,Still Photography,Not Applicable,United States of America,"11209, 11220"
+640740,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 10:00:00 PM,04/19/2022 03:18:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10036"
+640737,Theater Load in and Load Outs,04/25/2022 12:01:00 AM,04/28/2022 06:00:00 AM,04/19/2022 03:10:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+640713,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,05/01/2022 06:00:00 AM,04/19/2022 02:22:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+640706,Shooting Permit,04/22/2022 09:00:00 AM,04/23/2022 12:00:00 AM,04/19/2022 02:09:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 175 STREET, BROADWAY between WEST 175 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 177 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE",Manhattan,12,33,Film,Feature,United States of America,10033
+640704,Shooting Permit,04/21/2022 08:00:00 AM,04/22/2022 11:00:00 AM,04/19/2022 02:02:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Film,Feature,United States of America,11101
+640699,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 11:59:00 PM,04/19/2022 01:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,WEB,Not Applicable,United Kingdom,10036
+640700,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 11:59:00 PM,04/19/2022 01:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,WEB,Not Applicable,United Kingdom,10036
+640701,Shooting Permit,04/27/2022 06:00:00 AM,04/27/2022 11:59:00 PM,04/19/2022 01:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,WEB,Not Applicable,United Kingdom,10036
+640702,Shooting Permit,04/28/2022 06:00:00 AM,04/28/2022 11:59:00 PM,04/19/2022 01:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,WEB,Not Applicable,United Kingdom,10036
+640693,Theater Load in and Load Outs,04/28/2022 12:01:00 AM,04/28/2022 11:59:00 PM,04/19/2022 01:30:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+640689,Shooting Permit,04/22/2022 12:00:00 PM,04/23/2022 02:00:00 AM,04/19/2022 01:24:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between JAVA STREET and DUPONT STREET",Brooklyn,1,94,Television,Pilot,United States of America,11222
+640687,Shooting Permit,04/22/2022 11:00:00 AM,04/23/2022 02:00:00 AM,04/19/2022 01:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between CONOVER STREET and FERRIS STREET, WOLCOTT STREET between CONOVER STREET and VAN BRUNT STREET, WOLCOTT STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, DIKEMAN STREET between CONOVER STREET and FERRIS STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+640677,Theater Load in and Load Outs,04/26/2022 12:01:00 AM,04/27/2022 11:59:00 PM,04/19/2022 12:59:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+640669,Theater Load in and Load Outs,04/25/2022 12:01:00 AM,04/25/2022 11:59:00 PM,04/19/2022 12:45:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+640651,Theater Load in and Load Outs,04/26/2022 12:01:00 AM,04/26/2022 11:59:00 PM,04/19/2022 12:11:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+640637,Shooting Permit,05/03/2022 11:00:00 AM,05/03/2022 11:00:00 PM,04/19/2022 11:37:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between ELIZABETH STREET and BOWERY, DELANCEY STREET between BOWERY and CHRYSTIE STREET, DELANCEY STREET between CHRYSTIE STREET and FORSYTHE STREET, CHRYSTIE STREET between DELANCEY STREET and GRAND STREET, FORSYTHE STREET between GRAND STREET and DELANCEY STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012"
+640627,Shooting Permit,04/27/2022 02:00:00 PM,04/28/2022 04:00:00 AM,04/19/2022 11:07:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","STILLWELL AVENUE between SURF AVENUE and BOWERY STREET, WEST 12TH STREET between SURF AVENUE and DEAD END, SURF AVENUE between STILLWELL AVENUE and JONES WALK, SURF AVENUE between WEST 8 STREET and WEST 5TH STREET, SURF AVENUE between WEST 5TH STREET and SEA BREEZE AVENUE",Brooklyn,13,60,Television,Cable-episodic,United States of America,11224
+640597,Shooting Permit,04/25/2022 09:30:00 AM,04/25/2022 11:00:00 PM,04/19/2022 10:05:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+640570,Shooting Permit,05/17/2022 06:30:00 AM,05/17/2022 07:00:00 PM,04/19/2022 09:22:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Film,Short,United States of America,11205
+640564,Shooting Permit,04/22/2022 08:00:00 AM,04/22/2022 11:00:00 PM,04/19/2022 09:13:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+640556,Shooting Permit,04/23/2022 06:00:00 AM,04/23/2022 11:00:00 PM,04/19/2022 08:51:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+640554,Shooting Permit,04/22/2022 06:00:00 AM,04/22/2022 11:00:00 PM,04/19/2022 08:42:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+640553,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 08:00:00 PM,04/19/2022 08:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 81 STREET and WEST 80 STREET, WEST 81 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 80 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 82 STREET and WEST 81 STREET, WEST 81 STREET between BROADWAY and WEST END AVENUE, WEST END AVENUE between WEST 81 STREET and WEST 82 STREET, WEST 82 STREET between BROADWAY and WEST END AVENUE, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 124 STREET and WEST 123 STREET, WEST 122 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, WEST 123 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,"10, 7","20, 28",Television,Pilot,United States of America,"10024, 10027"
+640551,Shooting Permit,04/21/2022 07:00:00 AM,04/21/2022 11:00:00 PM,04/19/2022 08:28:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+640549,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 04:00:00 PM,04/19/2022 08:12:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+640545,Shooting Permit,04/24/2022 06:00:00 AM,04/24/2022 05:00:00 PM,04/19/2022 07:29:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, 116TH ST between RIVERSIDE DRIVE and CLAREMONT AVENUE, BROADWAY between WEST 116 STREET and WEST 120 STREET, BROADWAY between WEST 97 STREET and WEST 99 STREET, BROADWAY between WEST 99 STREET and WEST 100 STREET",Manhattan,"7, 9","24, 26",Film,Feature,United States of America,"10024, 10025, 10027"
+640543,Shooting Permit,04/23/2022 06:00:00 AM,04/23/2022 05:00:00 PM,04/19/2022 07:21:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, 116TH STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, BROADWAY between WEST 97 STREET and WEST 99 STREET, BROADWAY between WEST 99 STREET and WEST 100 STREET, BROADWAY between WEST 116 STREET and WEST 120 STREET",Manhattan,"7, 9","24, 26",Film,Feature,United States of America,"10024, 10025, 10027"
+640499,Shooting Permit,04/21/2022 06:00:00 AM,04/21/2022 10:00:00 PM,04/18/2022 07:01:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10011
+640494,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 10:00:00 PM,04/18/2022 06:41:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between SOUTH 4 STREET and SOUTH 5 STREET, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, KENT AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE, BROADWAY between BERRY STREET and BEDFORD AVENUE, BERRY STREET between BROADWAY and SOUTH 8 STREET, BERRY STREET between SOUTH 8 STREET and SOUTH 9 STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+640478,Shooting Permit,04/21/2022 07:00:00 AM,04/21/2022 07:00:00 PM,04/18/2022 05:29:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA STREET between EAST HOUSTON STREET and RIVINGTON STREET, EAST HOUSTON STREET between COLUMBIA STREET and PITT STREET, AVENUE D between EAST HOUSTON STREET and EAST 5 STREET",Manhattan,3,"7, 9",Film,Feature,United States of America,"10002, 10009"
+640474,Theater Load in and Load Outs,04/24/2022 12:01:00 AM,04/26/2022 11:59:00 PM,04/18/2022 05:19:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+640456,Shooting Permit,04/21/2022 06:30:00 AM,04/21/2022 09:00:00 PM,04/18/2022 04:19:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 19 STREET and WEST 18 STREET, WEST 19 STREET between 10 AVENUE and 9 AVENUE, WEST 20 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 20 STREET and WEST 19 STREET, WEST 20 STREET between 10 AVENUE and 9 AVENUE, WEST 19 STREET between 9 AVENUE and 8 AVENUE, WEST 21 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 23 STREET and WEST 20 STREET, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+640447,Shooting Permit,05/01/2022 06:00:00 AM,05/01/2022 06:00:00 PM,04/18/2022 04:07:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",STIER PLACE between PUTNAM AVENUE and DEAD END,Queens,5,104,Film,Short,United States of America,11385
+640434,Shooting Permit,04/20/2022 06:00:00 AM,04/20/2022 06:00:00 PM,04/18/2022 03:55:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CATON AVENUE and CHURCH AVENUE,Brooklyn,14,70,Commercial,Promo,United States of America,11226
+640420,Theater Load in and Load Outs,04/21/2022 12:01:00 AM,04/21/2022 11:59:00 PM,04/18/2022 03:37:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+640411,Shooting Permit,04/21/2022 12:00:00 PM,04/22/2022 02:00:00 AM,04/18/2022 03:20:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,"13, 2","108, 60",Television,Pilot,United States of America,"11101, 11224"
+640410,Theater Load in and Load Outs,04/22/2022 12:01:00 AM,04/23/2022 06:00:00 AM,04/18/2022 03:20:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 13 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+640394,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 09:00:00 PM,04/18/2022 02:51:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+640392,Shooting Permit,04/22/2022 06:00:00 AM,04/22/2022 06:00:00 PM,04/18/2022 02:45:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 72 STREET and EAST 75 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 72 STREET and EAST 71 STREET, MADISON AVENUE between EAST 75 STREET and EAST 73 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 75 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE between EAST 73 STREET and EAST 75 STREET, PARK AVENUE between EAST 73 STREET and EAST 72 STREET, EAST 73 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,10021
+640377,Theater Load in and Load Outs,04/22/2022 12:01:00 AM,05/13/2022 11:59:00 PM,04/18/2022 02:01:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+640337,Shooting Permit,04/22/2022 07:00:00 AM,04/22/2022 11:00:00 PM,04/18/2022 12:44:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+640336,Shooting Permit,04/20/2022 12:00:00 PM,04/21/2022 02:00:00 AM,04/18/2022 12:43:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, ATTORNEY STREET between EAST HOUSTON STREET and STANTON STREET, KENMARE STREET between MOTT STREET and ELIZABETH STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,"2, 3","5, 7, 9",Film,Feature,United States of America,"10002, 10009, 10012"
+640333,Shooting Permit,04/20/2022 06:30:00 AM,04/20/2022 09:00:00 PM,04/18/2022 12:36:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DIAMOND STREET and JEWEL STREET, NORMAN AVENUE between JEWEL STREET and MOULTRIE STREET, NORMAN AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+640314,Shooting Permit,04/21/2022 06:00:00 AM,04/21/2022 10:00:00 PM,04/18/2022 12:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+640288,Shooting Permit,04/21/2022 06:00:00 AM,04/21/2022 09:00:00 PM,04/18/2022 11:53:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",WESTMINSTER ROAD between ALBERMARLE ROAD and BEVERLY ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+640261,Theater Load in and Load Outs,04/25/2022 07:00:00 AM,04/25/2022 07:00:00 PM,04/18/2022 11:07:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+640262,Theater Load in and Load Outs,05/02/2022 07:00:00 AM,05/02/2022 07:00:00 PM,04/18/2022 11:07:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+640251,Shooting Permit,04/19/2022 08:00:00 AM,04/19/2022 04:00:00 PM,04/18/2022 10:41:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, HUNTER STREET between 44 ROAD and 43 AVENUE, CRESCENT STREET between HUNTER STREET and 44 ROAD, CRESCENT STREET between 44 ROAD and 43 AVENUE, 24 STREET between 44 ROAD and 43 AVENUE, 44 ROAD between 23 STREET and CRESCENT STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+640246,Shooting Permit,04/21/2022 12:00:00 PM,04/22/2022 02:00:00 AM,04/18/2022 10:27:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between GREAT JONES STREET and EAST 4 STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET",Manhattan,2,9,Film,Feature,United States of America,"10003, 10012"
+640225,Theater Load in and Load Outs,04/30/2022 12:01:00 AM,05/04/2022 06:00:00 AM,04/18/2022 09:37:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+640223,Theater Load in and Load Outs,05/16/2022 12:01:00 AM,05/20/2022 06:00:00 AM,04/18/2022 09:36:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 55 STREET and WEST 56 STREET, WEST 55 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,10019
+640220,Theater Load in and Load Outs,04/29/2022 12:01:00 AM,05/03/2022 11:59:00 PM,04/18/2022 09:34:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between BROADWAY and COLUMBUS AVENUE,Manhattan,"4, 7","18, 20",Theater,Theater,United States of America,"10019, 10023"
+640219,Theater Load in and Load Outs,04/23/2022 12:01:00 AM,04/24/2022 06:00:00 AM,04/18/2022 09:34:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+640211,Theater Load in and Load Outs,04/23/2022 12:01:00 AM,04/24/2022 06:00:00 AM,04/18/2022 09:18:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+640199,Shooting Permit,04/20/2022 06:00:00 AM,04/20/2022 10:00:00 PM,04/18/2022 08:10:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 42 STREET between 12 AVENUE and 11 AVENUE, WEST 44 STREET between 12 AVENUE and 11 AVENUE, WEST 45 STREET between 12 AVENUE and 11 AVENUE, WEST 46 STREET between 12 AVENUE and 11 AVENUE, WEST 48 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,10036
+640194,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 11:00:00 PM,04/18/2022 07:52:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+640164,Shooting Permit,04/29/2022 02:00:00 PM,04/30/2022 02:00:00 AM,04/17/2022 09:34:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET,Manhattan,10,32,Student,Student Film,United States of America,10030
+640037,Theater Load in and Load Outs,04/22/2022 12:01:00 AM,04/22/2022 11:59:00 PM,04/16/2022 02:08:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+639926,Shooting Permit,04/27/2022 07:30:00 AM,04/27/2022 10:00:00 PM,04/15/2022 05:31:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 16 STREET and EAST 17 STREET",Manhattan,6,13,Film,Feature,United States of America,10003
+639924,Rigging Permit,04/20/2022 10:00:00 AM,04/20/2022 03:00:00 PM,04/15/2022 05:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+639922,Shooting Permit,04/21/2022 08:00:00 AM,04/21/2022 11:00:00 PM,04/15/2022 05:18:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639921,Shooting Permit,04/20/2022 08:00:00 AM,04/20/2022 11:00:00 PM,04/15/2022 05:17:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639919,Shooting Permit,04/28/2022 07:30:00 AM,04/28/2022 10:00:00 PM,04/15/2022 05:11:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 16 STREET and EAST 17 STREET",Manhattan,6,13,Film,Feature,United States of America,10003
+639902,Shooting Permit,04/20/2022 01:00:00 PM,04/21/2022 03:00:00 AM,04/15/2022 04:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EXTERIOR STREET between EAST 135 STREET and EAST 138 STREET, JEROME AVENUE between EAST 161 STREET and MACOMBS DAM BRIDGE, RIVER AVENUE between EAST 158 STREET and EAST 161 STREET, JEROME AVENUE between MACOMBS DAM BRIDGE and W 166 STREET, EAST 164 STREET between JEROME AVENUE and RIVER AVENUE",Bronx,"1, 4","40, 44",Television,Pilot,United States of America,"10451, 10452"
+639886,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 08:00:00 PM,04/15/2022 03:42:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 22 ROAD and DITMARS BOULEVARD, 21 STREET between 22 DRIVE and DITMARS BOULEVARD, DITMARS BOULEVARD between 21 STREET and 19 STREET",Queens,1,114,Television,Not Applicable,United States of America,11105
+639854,Shooting Permit,04/20/2022 08:00:00 AM,04/21/2022 12:00:00 AM,04/15/2022 03:07:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE, MADISON AVENUE between EAST 51 STREET and EAST 53 STREET, PARK AVENUE between EAST 50 STREET and EAST 53 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10152"
+639844,Shooting Permit,04/28/2022 06:00:00 AM,04/28/2022 11:59:00 PM,04/15/2022 02:42:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+639841,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 11:59:00 PM,04/15/2022 02:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+639840,Shooting Permit,04/24/2022 06:00:00 AM,04/24/2022 11:59:00 PM,04/15/2022 02:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+639842,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 11:59:00 PM,04/15/2022 02:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+639843,Shooting Permit,04/27/2022 06:00:00 AM,04/27/2022 11:59:00 PM,04/15/2022 02:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+639821,Theater Load in and Load Outs,04/24/2022 12:01:00 AM,04/25/2022 06:00:00 AM,04/15/2022 02:08:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+639797,Shooting Permit,04/22/2022 04:30:00 PM,04/23/2022 05:00:00 AM,04/15/2022 01:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FISKE PLACE between GARFIELD PLACE and CARROLL STREET, CARROLL STREET between POLHEMUS PLACE and 8 AVENUE, 8 AVENUE between 1 STREET and UNION STREET, 7 AVENUE between BERKELEY PLACE and GARFIELD PLACE, UNION STREET between 7 AVENUE and 6 AVENUE, CARROLL STREET between POLHEMUS PLACE and 7 AVENUE",Brooklyn,6,78,Television,Episodic series,United States of America,"11215, 11217"
+639795,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 10:00:00 PM,04/15/2022 01:44:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between 72 AVENUE and 74 AVENUE, 72 AVENUE between METROPOLITAN AVENUE and NANSEN STREET, 72 AVENUE between INGRAM STREET and MANSE STREET, INGRAM STREET between 71 AVENUE and 72 AVENUE, 71 AVENUE between LOUBET STREET and INGRAM STREET",Queens,"6, 82","102, 112",Television,Episodic series,United States of America,"11375, 11385"
+639765,Shooting Permit,04/20/2022 01:30:00 PM,04/21/2022 03:00:00 AM,04/15/2022 01:19:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, WEST 53 STREET between 7 AVENUE and AVENUE OF THE AMERICAS, WEST 52 STREET between 7 AVENUE and AVENUE OF THE AMERICAS, WEST 51 STREET between 7 AVENUE and AVENUE OF THE AMERICAS, 7 AVENUE between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between AVENUE OF AMERICAS and 5 AVENUE, EAST 43 STREET between MADISON AVENUE and VANDERBILT AVENUE, LEXINGTON AVENUE between EAST 45 STREET and EAST 43 STREET, EAST 42 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 46 STREET and EAST 44 STREET, EAST 46 STREET between 3 AVENUE and 2 AVENUE, EAST 45 STREET between 3 AVENUE and 2 AVENUE, EAST 44 STREET between 3 AVENUE and 2 AVENUE, EAST 42 STREET between VANDERBILT AVENUE and DE PEW PLACE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10017, 10019, 10020, 10165, 10170"
+639762,Shooting Permit,04/20/2022 08:00:00 AM,04/21/2022 12:00:00 AM,04/15/2022 01:18:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+639743,Theater Load in and Load Outs,04/16/2022 04:00:00 AM,04/17/2022 01:00:00 PM,04/15/2022 12:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+639728,Shooting Permit,04/19/2022 09:00:00 AM,04/19/2022 11:00:00 PM,04/15/2022 12:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 77 STREET and EAST 76 STREET, 2 AVENUE between EAST 77 STREET and EAST 76 STREET, EAST 77 STREET between 2 AVENUE and 1 AVENUE, 39 AVENUE between 60 STREET and 61 STREET, 61 STREET between 39 AVENUE and 37 AVENUE",Manhattan,"2, 8","108, 19",Film,Feature,United States of America,"10075, 11377"
+639704,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 10:00:00 PM,04/15/2022 11:50:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639700,Shooting Permit,04/22/2022 09:00:00 AM,04/23/2022 02:00:00 AM,04/15/2022 11:47:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE, LAFAYETTE AVENUE between FRANKLIN AVENUE and BEDFORD AVENUE, NOSTRAND AVENUE between LAFAYETTE AVENUE and CLIFTON PLACE, CLIFTON PLACE between BEDFORD AVENUE and NOSTRAND AVENUE, CLIFTON PLACE between FRANKLIN AVENUE and BEDFORD AVENUE, LAFAYETTE AVENUE between MARCY AVENUE and TOMPKINS AVENUE, LAFAYETTE AVENUE between NOSTRAND AVENUE and MARCY AVENUE, MARCY AVENUE between LAFAYETTE AVENUE and GREENE AVENUE",Brooklyn,3,79,Television,Episodic series,United States of America,"11205, 11216"
+639675,Shooting Permit,04/21/2022 07:00:00 AM,04/21/2022 10:00:00 PM,04/15/2022 11:22:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+639667,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 10:00:00 PM,04/15/2022 11:13:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+639611,Shooting Permit,04/21/2022 10:00:00 AM,04/22/2022 12:00:00 AM,04/15/2022 10:18:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 48 STREET and 58 STREET, 49 STREET between QUEENS BOULEVARD and 47 AVENUE, 50 STREET between QUEENS BOULEVARD and 47 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+639587,Shooting Permit,04/21/2022 08:00:00 AM,04/22/2022 02:00:00 AM,04/15/2022 09:59:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 49 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 57 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+639577,Shooting Permit,04/16/2022 08:00:00 AM,04/16/2022 05:00:00 PM,04/15/2022 09:52:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARKET STREET between MONROE STREET and MADISON STREET,Manhattan,3,5,Film,Short,United States of America,10002
+639494,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 07:00:00 PM,04/15/2022 08:33:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between MADISON AVENUE and 5 AVENUE, FIFTH AVENUE between EAST 63 STREET and EAST 62 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10065
+639486,Shooting Permit,04/25/2022 06:00:00 AM,04/25/2022 08:00:00 PM,04/15/2022 08:13:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22",WEB,Not Applicable,United States of America,10024
+639480,Shooting Permit,04/21/2022 10:00:00 AM,04/21/2022 11:00:00 PM,04/15/2022 07:12:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+639479,Shooting Permit,04/20/2022 10:30:00 AM,04/20/2022 11:00:00 PM,04/15/2022 07:09:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+639446,Shooting Permit,04/19/2022 06:30:00 AM,04/19/2022 09:00:00 PM,04/14/2022 08:43:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIN STREET and BROOKLYN BRIDGE, EVERIT ST between OLD FULTON STREET and VINE ST, OLD FULTON STREET between EVERIT STREET and ELIZABETH PLACE, FRONT STREET between YORK STREET and MAIN STREET, ATLANTIC AVENUE between SMITH STREET and 3 AVENUE",Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+639445,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 11:00:00 PM,04/14/2022 08:37:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639441,Shooting Permit,04/25/2022 07:00:00 AM,04/25/2022 10:00:00 PM,04/14/2022 08:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+639420,Theater Load in and Load Outs,04/21/2022 12:01:00 AM,04/21/2022 11:59:00 PM,04/14/2022 07:04:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+639417,Shooting Permit,04/21/2022 10:00:00 AM,04/22/2022 01:00:00 AM,04/14/2022 06:47:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between CONOVER STREET and FERRIS STREET, WOLCOTT STREET between CONOVER STREET and VAN BRUNT STREET, WOLCOTT STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, DIKEMAN STREET between CONOVER STREET and FERRIS STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+639411,Shooting Permit,04/20/2022 08:00:00 AM,04/20/2022 11:00:00 PM,04/14/2022 06:13:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","Alderton St between TROTTING COURSE LANE and Yellowstone Blvd, POLO PLACE between WOODHAVEN BOULEVARD and TROTTING COURSE LANE, TROTTING COURSE LANE between POLO PLACE and ALDERTON STREET, WOODHAVEN BOULEVARD between 67 ROAD and 68 ROAD",Queens,"5, 6","104, 112",Film,Feature,United States of America,11374
+639402,Theater Load in and Load Outs,05/01/2022 08:00:00 AM,05/02/2022 11:59:00 PM,04/14/2022 05:10:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 84 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"64, 8","19, 22",Theater,Theater,United States of America,10028
+639401,Theater Load in and Load Outs,04/23/2022 12:01:00 AM,04/23/2022 11:59:00 PM,04/14/2022 05:00:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+639393,Shooting Permit,04/21/2022 07:00:00 AM,04/21/2022 08:00:00 PM,04/14/2022 04:36:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 233 STREET between VIREO AVENUE and KATONAH AVENUE, WEBSTER AVENUE between EAST 233 STREET and EAST GUN HILL ROAD",Bronx,"12, 7","47, 52",Television,Cable-episodic,United States of America,"10467, 10470"
+639378,Shooting Permit,04/20/2022 10:00:00 AM,04/20/2022 10:00:00 PM,04/14/2022 03:53:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 6 AVENUE and BROADWAY, WEST 40 STREET between 5 AVENUE and 6 AVENUE, WEST 40 STREET between 6 AVENUE and BROADWAY, WEST 41 STREET between 6 AVENUE and BROADWAY, 9 AVENUE between WEST 38 STREET and WEST 40 STREET, WEST 43 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","10, 14, 18",Television,Episodic series,United States of America,"10018, 10036"
+639374,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 11:30:00 PM,04/14/2022 03:51:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 116 STREET between JAMAICA AVENUE and DEAD END, JAMAICA AVENUE between 115 STREET and 117 STREET, 117 STREET between JAMAICA AVENUE and 89 AVENUE, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, MYRTLE AVENUE between 116 STREET and JAMAICA AVENUE",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+639373,Shooting Permit,04/26/2022 06:00:00 AM,04/26/2022 08:00:00 PM,04/14/2022 03:48:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22",WEB,Not Applicable,United States of America,10024
+639369,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 09:00:00 PM,04/14/2022 03:41:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and NASSAU AVENUE, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between DRIGGS AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NASSAU AVENUE, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE",Brooklyn,1,94,Television,Not Applicable,United States of America,"11211, 11222, 11249"
+639366,Theater Load in and Load Outs,05/02/2022 12:01:00 AM,05/21/2022 06:00:00 AM,04/14/2022 03:38:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH END AVENUE between VESEY STREET and MURRAY STREET, RIVER TERRACE between NORTH END AVENUE and MURRAY STREET, VESEY STREET between NORTH END AVENUE and WEST STREET",Manhattan,1,1,Theater,Theater,United States of America,"10281, 10282"
+639338,Shooting Permit,04/21/2022 11:00:00 AM,04/22/2022 12:00:00 AM,04/14/2022 03:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 137 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, LENOX AVENUE between WEST 137 STREET and WEST 138 STREET, LENOX AVENUE between WEST 137 STREET and WEST 136 STREET, WEST 136 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 135 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 135 STREET and WEST 136 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 136 STREET and WEST 137 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 138 STREET",Manhattan,10,32,Television,Pilot,United States of America,"10030, 10037"
+639336,Theater Load in and Load Outs,04/20/2022 12:01:00 AM,04/20/2022 11:59:00 PM,04/14/2022 03:01:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+639335,Shooting Permit,04/17/2022 05:00:00 AM,04/17/2022 11:00:00 AM,04/14/2022 02:58:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+639318,Theater Load in and Load Outs,04/21/2022 12:01:00 AM,04/21/2022 11:59:00 PM,04/14/2022 02:28:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+639316,Theater Load in and Load Outs,04/23/2022 12:01:00 AM,04/24/2022 06:00:00 AM,04/14/2022 02:12:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+639304,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 10:00:00 PM,04/14/2022 01:50:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between WEST 12 STREET and WEST 11 STREET, WEST 11 STREET between 6 AVENUE and 5 AVENUE, WEST 12 STREET between 6 AVENUE and 5 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 13 STREET between BROADWAY and 4 AVENUE, EAST 13 STREET between BROADWAY and UNIVERSITY PLACE",Manhattan,2,"6, 9",Television,Cable-episodic,United States of America,"10003, 10011"
+639287,Shooting Permit,04/22/2022 06:00:00 AM,04/22/2022 10:00:00 PM,04/14/2022 01:20:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","59 AVENUE between UTOPIA PARKWAY and 175 STREET, 175 STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, HORACE HARDING EXPRESSWAY between 175 PLACE and 174 STREET, 175 PLACE between HORACE HARDING EXPRESSWAY and 59 AVENUE",Queens,"11, 5","104, 111",Television,Cable-episodic,United States of America,"11365, 11385"
+639282,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 09:00:00 PM,04/14/2022 01:09:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10001
+639278,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 09:00:00 PM,04/14/2022 01:05:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,"4, 5",10,Television,Variety,United States of America,10001
+639273,Shooting Permit,04/20/2022 06:00:00 AM,04/20/2022 08:00:00 PM,04/14/2022 12:56:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between WASHINGTON STREET and WEST SIDE HIGHWAY, CANAL STREET between WEST SIDE HIGHWAY and WASHINGTON STREET, CANAL STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CANAL STREET and SPRING STREET",Manhattan,"1, 2",1,WEB,Not Applicable,United States of America,"10013, 10014"
+639269,Theater Load in and Load Outs,04/20/2022 12:01:00 AM,04/21/2022 06:00:00 AM,04/14/2022 12:49:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+639250,Shooting Permit,04/19/2022 09:00:00 AM,04/19/2022 11:59:00 PM,04/14/2022 12:09:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between PARK AVENUE and MADISON AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 53 STREET",Manhattan,5,18,Television,Pilot,United States of America,"10017, 10022, 10152, 10171"
+639249,Shooting Permit,04/15/2022 09:00:00 AM,04/16/2022 02:00:00 AM,04/14/2022 12:09:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639233,Theater Load in and Load Outs,04/19/2022 12:01:00 AM,04/19/2022 11:59:00 PM,04/14/2022 11:45:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+639221,Shooting Permit,04/20/2022 08:00:00 AM,04/20/2022 11:00:00 PM,04/14/2022 11:24:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between BETHUNE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and JANE STREET, WASHINGTON STREET between JANE STREET and HORATIO STREET, JANE STREET between WASHINGTON STREET and WEST STREET, WEST STREET between WEST 12 STREET and JANE STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, W. 14TH STREET between WASHINGTON STREET and 9TH AVE, W. 14TH STREET between WASHINGTON STREET and 10TH AVE, BETHUNE STREET between WEST STREET and WASHINGTON STREET, BANK STREET between WEST STREET and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+639220,Shooting Permit,04/18/2022 06:30:00 AM,04/18/2022 09:00:00 PM,04/14/2022 11:23:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between UNION AVENUE and LORIMER STREET, UNION AVENUE between JACKSON STREET and FROST STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+639217,Theater Load in and Load Outs,04/18/2022 12:01:00 AM,04/18/2022 11:59:00 PM,04/14/2022 11:17:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+639208,Shooting Permit,04/19/2022 07:30:00 AM,04/19/2022 10:30:00 PM,04/14/2022 10:50:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between MADISON AVENUE and 5 AVENUE, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, MADISON AVENUE between EAST 60 STREET and EAST 61 STREET, WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, EAST 56 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10019, 10022, 10065"
+639207,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 09:00:00 PM,04/14/2022 10:49:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","POLO PLACE between WOODHAVEN BOULEVARD and TROTTING COURSE LANE, Alderton St between TROTTING COURSE LANE and Yellowstone Blvd, TROTTING COURSE LANE between POLO PLACE and ALDERTON STREET, WOODHAVEN BOULEVARD between 67 ROAD and 68 ROAD",Queens,"5, 6","104, 112",Film,Feature,United States of America,11374
+639195,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 09:00:00 PM,04/14/2022 09:17:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and 43 ROAD, 43 ROAD between 9 STREET and VERNON BOULEVARD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET, 43 AVENUE between 10 STREET and 11 STREET, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE, VERNON BOULEVARD between 41 AVENUE and 40 AVENUE, 10 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+639181,Theater Load in and Load Outs,04/18/2022 06:00:00 AM,04/20/2022 01:00:00 PM,04/14/2022 07:26:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and ROCKEFELLER PLAZA,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+639174,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 07:00:00 PM,04/14/2022 02:39:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between MADISON AVENUE and FIFTH AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+639140,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 11:00:00 PM,04/13/2022 06:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+639128,Shooting Permit,04/15/2022 12:00:00 PM,04/16/2022 02:00:00 AM,04/13/2022 05:16:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+639108,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 09:00:00 PM,04/13/2022 04:20:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between GREEN STREET and PAIDGE AVENUE, EAGLE ST between PROVOST STREET and MCGUINNESS BLVD, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Not Applicable,United States of America,11222
+639094,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 10:00:00 PM,04/13/2022 03:43:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, 19 STREET between 23 AVENUE and 22 ROAD, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 21 STREET and 19 STREET, 21 STREET between 22 ROAD and 23 AVENUE",Queens,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+639093,Theater Load in and Load Outs,04/21/2022 12:01:00 AM,04/22/2022 06:00:00 AM,04/13/2022 03:35:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+639080,Shooting Permit,04/19/2022 08:00:00 AM,04/19/2022 09:00:00 PM,04/13/2022 02:54:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+639056,Shooting Permit,04/22/2022 06:00:00 AM,04/22/2022 10:00:00 PM,04/13/2022 02:16:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between BANKER STREET and MANHATTAN AVENUE, DOBBIN STREET between MESEROLE AVENUE and NASSAU AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+639041,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 08:00:00 PM,04/13/2022 01:59:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","POLO PLACE between WOODHAVEN BOULEVARD and TROTTING COURSE LANE, Alderton St between TROTTING COURSE LANE and Yellowstone Blvd, TROTTING COURSE LANE between POLO PLACE and ALDERTON STREET, TROTTING COURSE LANE between POLO PLACE and ALDERTON STREET, WOODHAVEN BOULEVARD between 67 ROAD and 68 ROAD",Queens,"5, 6","104, 112",Film,Feature,United States of America,11374
+639038,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 09:00:00 PM,04/13/2022 01:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639037,Shooting Permit,04/15/2022 07:00:00 AM,04/15/2022 09:00:00 PM,04/13/2022 01:50:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+639001,Theater Load in and Load Outs,04/20/2022 12:01:00 AM,04/24/2022 06:00:00 AM,04/13/2022 12:34:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+638997,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 08:00:00 PM,04/13/2022 12:23:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 12 STREET between 2 AVENUE and 3 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 12 STREET and EAST 13 STREET, EAST 23 STREET between 1 AVENUE and FDR, EAST 13 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,"10003, 10010"
+638996,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 10:00:00 PM,04/13/2022 12:16:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between FORSYTH STREET and ELDRIDGE STREET, FORSYTH STREET between HESTER STREET and DELANCEY STREET, ELDRIDGE STREET between GRAND STREET and BROOME STREET, GRAND STREET between ELIZABETH STREET and BOWERY, GRAND STREET between ELDRIDGE STREET and LUDLOW STREET, ALLEN STREET between GRAND STREET and DELANCEY STREET, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 24 STREET between 1 AVENUE and 2 AVENUE, EAST 23 STREET between 1 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 23 STREET and EAST 25 STREET",Manhattan,"2, 3, 6","13, 5, 7",Television,Pilot,United States of America,"10002, 10010, 10013"
+638991,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 11:00:00 PM,04/13/2022 11:56:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+638990,Shooting Permit,04/19/2022 01:00:00 PM,04/19/2022 10:00:00 PM,04/13/2022 11:45:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 65 STREET and WEST 64 STREET, BROADWAY between WEST 63 STREET and WEST 64 STREET, BROADWAY between WEST 63 STREET and WEST 62 STREET, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 62 STREET and WEST 61 STREET, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"5, 64, 7","14, 18, 20, 22",Television,Episodic series,United States of America,"10019, 10023, 10036"
+638984,Shooting Permit,04/21/2022 06:00:00 AM,04/21/2022 09:00:00 PM,04/13/2022 11:27:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11238
+638980,Shooting Permit,04/20/2022 06:00:00 AM,04/20/2022 09:00:00 PM,04/13/2022 11:23:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11238
+638976,Shooting Permit,04/15/2022 05:00:00 AM,04/15/2022 11:00:00 AM,04/13/2022 11:06:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+638937,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 10:00:00 PM,04/13/2022 09:07:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 61 STREET and EAST 59 STREET, EAST 58 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 59 STREET between MADISON AVENUE and PARK AVENUE, EAST 58 STREET between PARK AVENUE and MADISON AVENUE, EAST 60 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+638936,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 10:00:00 PM,04/13/2022 09:07:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 9 STREET and 13 STREET, 9 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+638926,Theater Load in and Load Outs,04/22/2022 12:01:00 AM,04/23/2022 11:59:00 PM,04/13/2022 08:16:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+638920,Shooting Permit,04/23/2022 10:00:00 AM,04/23/2022 10:00:00 PM,04/13/2022 06:33:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 58 STREET and 57 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE",Queens,2,108,Film,Feature,United States of America,11377
+638880,Theater Load in and Load Outs,04/20/2022 12:01:00 AM,04/22/2022 06:00:00 AM,04/12/2022 06:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 54 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+638881,Theater Load in and Load Outs,04/24/2022 12:01:00 AM,04/25/2022 06:00:00 AM,04/12/2022 06:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 54 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+638818,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 11:00:00 PM,04/12/2022 03:12:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 61 STREET and WEST 65 STREET, WEST 61 STREET between BROADWAY and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 61 STREET and WEST 62 STREET, EAST 61 STREET between MADISON AVENUE and 5 AVENUE, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, EAST 56 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 61 STREET",Manhattan,"5, 64, 7, 8","18, 19, 20, 22",Television,Episodic series,United States of America,"10019, 10022, 10023, 10065"
+638797,Shooting Permit,04/16/2022 06:00:00 PM,04/17/2022 08:00:00 AM,04/12/2022 02:32:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 6 STREET and SOUTH 3 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and DEAD END, WEST 3 STREET between MACDOUGAL STREET and 6 AVENUE, 6 AVENUE between WEST 4 STREET and WEST 3 STREET, 6 AVENUE between WEST 3 STREET and MINETTA LANE, WEST 3 STREET between MACDOUGAL STREET and SULLIVAN STREET, MACDOUGAL STREET between WEST 3 STREET and MINETTA LANE",Brooklyn,"1, 2","6, 90",Commercial,Commercial,United States of America,"10012, 10014, 11211, 11249"
+638792,Theater Load in and Load Outs,04/19/2022 12:01:00 AM,04/20/2022 06:00:00 AM,04/12/2022 02:23:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+638789,Theater Load in and Load Outs,04/18/2022 12:01:00 AM,04/18/2022 11:59:00 PM,04/12/2022 02:20:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+638749,Shooting Permit,04/15/2022 06:00:00 PM,04/16/2022 06:00:00 AM,04/12/2022 01:18:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and BROADWAY, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10018"
+638738,Shooting Permit,04/15/2022 08:00:00 AM,04/15/2022 10:00:00 PM,04/12/2022 12:47:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","DAVIS STREET between JACKSON AVENUE and DEAD END, CRANE STREET between JACKSON AVENUE and DEAD END",Queens,2,108,Film,Feature,United States of America,11101
+638732,Shooting Permit,04/22/2022 03:00:00 PM,04/23/2022 03:00:00 AM,04/12/2022 12:27:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 137 STREET and WEST 136 STREET, WEST 137 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 135 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 137 STREET and WEST 138 STREET, WEST 137 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 136 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 134 STREET and WEST 135 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 135 STREET and WEST 136 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 136 STREET and WEST 137 STREET",Manhattan,10,32,Television,Pilot,United States of America,"10030, 10037"
+638727,Shooting Permit,04/18/2022 08:00:00 AM,04/18/2022 09:00:00 PM,04/12/2022 12:07:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+638720,Shooting Permit,04/14/2022 09:30:00 AM,04/14/2022 11:00:00 PM,04/12/2022 11:53:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between BALTIC STREET and KANE STREET, COURT STREET between WARREN STREET and BALTIC STREET, COURT STREET between KANE STREET and UNION STREET, KANE STREET between COURT STREET and TOMPKINS PLACE, BALTIC STREET between COURT STREET and SMITH STREET, BALTIC STREET between COURT STREET and CLINTON STREET, HENRY STREET between DEGRAW STREET and KANE STREET, KANE STREET between CHEEVER PLACE and HENRY STREET, KANE STREET between HENRY STREET and STRONG PLACE",Brooklyn,6,76,Television,Episodic series,United States of America,"11201, 11231"
+638715,Shooting Permit,04/20/2022 09:00:00 AM,04/20/2022 11:59:00 PM,04/12/2022 11:40:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between STARR STREET and GRANDVIEW AVENUE, STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, 54 STREET between FLUSHING AVENUE and GRAND AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+638707,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 08:00:00 PM,04/12/2022 11:24:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+638694,Shooting Permit,04/15/2022 12:00:00 PM,04/16/2022 03:00:00 AM,04/12/2022 10:52:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+638690,Shooting Permit,04/14/2022 05:00:00 PM,04/14/2022 11:59:00 PM,04/12/2022 10:38:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+638680,Shooting Permit,04/20/2022 10:00:00 AM,04/20/2022 10:00:00 PM,04/12/2022 10:04:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 23 STREET and 24 STREET, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET, 42 ROAD between 23 STREET and 24 STREET, 42 ROAD between 23 STREET and 24 STREET, 22 STREET between QUEENS PLAZA NORTH and 41 AVENUE, QUEENS PLAZA NORTH between 24 STREET and 23 STREET, 23 STREET between QUEENS PLAZA NORTH and 41 AVENUE, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 ROAD between 11 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,"1, 2","108, 114",Television,Pilot,United States of America,11101
+638666,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 10:00:00 PM,04/12/2022 09:35:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+638647,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 09:00:00 PM,04/12/2022 07:48:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and PROSPECT STREET, MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, HICKS STREET between GRACE COURT and PIERREPONT STREET, REMSEN STREET between HICKS STREET and HENRY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+638644,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 09:00:00 PM,04/12/2022 07:17:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, HICKS STREET between GRACE COURT and PIERREPONT STREET, REMSEN STREET between HICKS STREET and HENRY STREET, CADMAN PLAZA WEST between TILLARY STREET and PROSPECT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+638631,Shooting Permit,04/14/2022 07:00:00 AM,04/14/2022 09:00:00 PM,04/11/2022 10:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE,Brooklyn,2,84,Film,Feature,United States of America,11201
+638625,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 08:00:00 PM,04/11/2022 10:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE, STATE STREET between HENRY STREET and CLINTON STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+638623,Theater Load in and Load Outs,05/15/2022 12:01:00 AM,05/19/2022 11:59:00 PM,04/11/2022 09:48:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 57 STREET and WEST 56 STREET, 7 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 56 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+638614,Theater Load in and Load Outs,04/16/2022 12:01:00 AM,04/17/2022 06:00:00 AM,04/11/2022 08:37:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+638612,Theater Load in and Load Outs,04/15/2022 12:01:00 AM,04/16/2022 06:00:00 AM,04/11/2022 08:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+638594,Shooting Permit,04/14/2022 10:00:00 AM,04/14/2022 11:00:00 PM,04/11/2022 06:15:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+638593,Shooting Permit,04/18/2022 08:00:00 AM,04/18/2022 10:00:00 PM,04/11/2022 06:08:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 31 STREET between 5 AVENUE and BROADWAY,Manhattan,5,14,Film,Feature,United States of America,10001
+638585,Shooting Permit,04/15/2022 12:00:00 PM,04/16/2022 01:00:00 AM,04/11/2022 05:34:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between FREEDOM DRIVE and PARK LN SOUTH, MEMORIAL DRIVE between FOREST PARK DRIVE and MYRTLE AVENUE",Queens,82,102,Television,Episodic series,United States of America,11385
+638514,Theater Load in and Load Outs,04/14/2022 12:01:00 AM,04/14/2022 11:59:00 PM,04/11/2022 02:06:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+638502,Theater Load in and Load Outs,04/16/2022 12:01:00 AM,04/17/2022 06:00:00 AM,04/11/2022 01:40:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+638499,Theater Load in and Load Outs,04/15/2022 12:01:00 AM,04/15/2022 11:59:00 PM,04/11/2022 01:38:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+638495,Theater Load in and Load Outs,05/09/2022 05:00:00 AM,05/18/2022 11:00:00 PM,04/11/2022 01:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and ROCKEFELLER PLAZA,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+638472,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 08:00:00 PM,04/11/2022 12:48:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+638467,Shooting Permit,04/18/2022 07:00:00 AM,04/18/2022 09:00:00 PM,04/11/2022 12:37:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 61 STREET and EAST 59 STREET, EAST 58 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 60 STREET between PARK AVENUE and MADISON AVENUE, EAST 59 STREET between MADISON AVENUE and PARK AVENUE, EAST 58 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+638459,Shooting Permit,04/15/2022 08:00:00 AM,04/15/2022 11:00:00 PM,04/11/2022 12:11:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+638456,Shooting Permit,04/14/2022 08:00:00 AM,04/14/2022 11:00:00 PM,04/11/2022 12:05:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+638451,Shooting Permit,04/22/2022 07:30:00 AM,04/22/2022 09:30:00 PM,04/11/2022 12:00:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+638444,Shooting Permit,04/14/2022 07:00:00 AM,04/14/2022 09:00:00 PM,04/11/2022 11:50:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and DEAD END, PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+638441,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:00:00 PM,04/11/2022 11:48:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 8 AVENUE and 9 AVENUE, WEST 20 STREET between 8 AVENUE and 9 AVENUE, WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+638440,Shooting Permit,04/13/2022 06:30:00 AM,04/13/2022 09:00:00 PM,04/11/2022 11:46:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVE between 65 STREET and BORDEN AVENUE, FLUSHING AVENUE between 65 STREET and 63 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11378"
+638433,Shooting Permit,04/14/2022 10:00:00 AM,04/15/2022 02:00:00 AM,04/11/2022 11:33:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between SULLIVAN STREET and DIKEMAN STREET, COFFEY STREET between DEAD END and CONOVER STREET, FERRIS STREET between COFFEY STREET and VAN DYKE STREET, VAN DYKE STREET between FERRIS STREET and DEAD END",Brooklyn,6,76,Television,Pilot,United States of America,11231
+638427,Shooting Permit,04/21/2022 07:00:00 AM,04/21/2022 09:00:00 PM,04/11/2022 11:08:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+638424,Shooting Permit,04/20/2022 07:00:00 AM,04/20/2022 09:00:00 PM,04/11/2022 11:01:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+638422,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 08:00:00 PM,04/11/2022 10:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+638420,Shooting Permit,04/14/2022 06:00:00 PM,04/15/2022 06:00:00 AM,04/11/2022 10:58:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and BROADWAY, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10018"
+638408,Shooting Permit,04/14/2022 12:00:00 PM,04/15/2022 03:00:00 AM,04/11/2022 10:33:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+638399,Shooting Permit,04/13/2022 12:00:00 PM,04/13/2022 11:59:00 PM,04/11/2022 10:14:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WATER STREET between NEW DOCK STREET and DOCK STREET,Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+638396,Shooting Permit,04/15/2022 06:00:00 AM,04/15/2022 08:00:00 PM,04/11/2022 10:12:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 44 AVENUE and 43 ROAD, 10 STREET between 44 AVENUE and 43 ROAD, 9 STREET between 43 ROAD and 43 AVENUE, 10 STREET between 43 ROAD and 43 AVENUE, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+638395,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 11:59:00 PM,04/11/2022 10:11:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between PLYMOUTH STREET and WATER STREET, VARICK STREET between NORTH MOORE STREET and FRANKLIN STREET, WATER STREET between NEW DOCK STREET and DOCK STREET",Brooklyn,"1, 2","1, 84",Commercial,Commercial,United States of America,"10013, 11201"
+638385,Theater Load in and Load Outs,04/14/2022 04:00:00 AM,04/15/2022 01:00:00 PM,04/11/2022 09:55:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+638379,Theater Load in and Load Outs,04/12/2022 05:00:00 AM,04/13/2022 07:00:00 PM,04/11/2022 09:43:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+638370,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:00:00 PM,04/11/2022 08:44:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 48 STREET,Brooklyn,7,72,Television,Episodic series,United States of America,11232
+638357,Shooting Permit,04/15/2022 04:00:00 PM,04/16/2022 04:00:00 AM,04/10/2022 10:48:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 75 STREET and EAST 76 STREET, 5 AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 74 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, PARK AVENUE between EAST 72 STREET and EAST 80 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, 5 AVENUE between EAST 83 STREET and EAST 84 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10028, 10075"
+638192,Shooting Permit,04/15/2022 06:30:00 PM,04/16/2022 01:00:00 AM,04/08/2022 07:37:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between SOUTH PORTLAND AVENUE and FORT GREENE PLACE, DEKALB AVENUE between SOUTH PORTLAND AVENUE and WASHINGTON PARK, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, DEKALB AVENUE between ASHLAND PLACE and ROCKWELL PLACE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+638145,Shooting Permit,04/13/2022 08:00:00 AM,04/13/2022 07:30:00 PM,04/08/2022 04:23:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST JAMES PLACE between GATES AVENUE and FULTON STREET, MYRTLE AVENUE between CLERMONT AVENUE and ADELPHI STREET",Brooklyn,2,"84, 88",Commercial,Commercial,United States of America,"11201, 11205, 11238"
+638135,Shooting Permit,04/13/2022 08:30:00 AM,04/13/2022 10:00:00 PM,04/08/2022 03:51:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between WEIRFIELD STREET and HANCOCK STREET, HANCOCK STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between HANCOCK STREET and WEIRFIELD STREET, COVERT ST between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11221, 11237, 11385"
+638123,Shooting Permit,04/14/2022 07:00:00 AM,04/14/2022 10:00:00 PM,04/08/2022 03:22:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 141 STREET and WEST 138 STREET, ST NICHOLAS AVENUE between WEST 145 STREET and WEST 141 STREET, WEST 137 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 135 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 133 STREET and WEST 132 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 132 STREET and WEST 129 STREET, WEST 132 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 131 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 137 STREET and WEST 131 STREET",Manhattan,"10, 9","26, 30, 32",Television,Cable-episodic,United States of America,"10027, 10030, 10031"
+638122,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:00:00 PM,04/08/2022 03:20:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between KENT STREET and JAVA STREET, JAVA STREET between FRANKLIN STREET and WEST STREET, WEST STREET between KENT STREET and JAVA STREET, EAGLE ST between PROVOST STREET and MCGUINNESS BLVD, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between GREENPOINT AVENUE and PAIDGE AVENUE",Brooklyn,1,94,Television,Not Applicable,United States of America,11222
+638121,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:30:00 PM,04/08/2022 03:19:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between BROADWAY and 6 AVENUE, WEST 27 STREET between 5 AVENUE and 6 AVENUE, BROADWAY between WEST 29 STREET and WEST 27 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, 6 AVENUE between WEST 29 STREET and WEST 28 STREET, 6 AVENUE between WEST 27 STREET and WEST 28 STREET, WEST 30 STREET between 8 AVENUE and 9 AVENUE, BROADWAY between WEST 30 STREET and WEST 32 STREET",Manhattan,"4, 5","13, 14",Television,Pilot,United States of America,10001
+638115,Theater Load in and Load Outs,04/18/2022 12:01:00 AM,04/19/2022 04:59:00 AM,04/08/2022 03:08:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+638112,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:00:00 PM,04/08/2022 02:55:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+638095,Shooting Permit,04/12/2022 09:00:00 AM,04/13/2022 01:00:00 AM,04/08/2022 02:08:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, VANDERBILT AVENUE between MYRTLE AVENUE and PARK AVENUE, VANDERBILT AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and WAVERLY AVENUE, MYRTLE AVENUE between WASHINGTON PARK and FLEET PLACE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205"
+638081,Shooting Permit,04/14/2022 09:00:00 AM,04/15/2022 01:00:00 AM,04/08/2022 01:53:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between DEAD END and GREENPOINT AVE, GREENPOINT AVE between DEAD END and RAILROAD AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+638076,Theater Load in and Load Outs,04/15/2022 12:01:00 AM,04/15/2022 11:59:00 PM,04/08/2022 01:40:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+638050,Shooting Permit,04/13/2022 11:00:00 AM,04/14/2022 12:30:00 AM,04/08/2022 12:13:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONVENT AVENUE between WEST 142 STREET and WEST 144 STREET, WEST 144 STREET between AMSTERDAM AVENUE and CONVENT AVENUE, WEST 144 STREET between CONVENT AVENUE and HAMILTON TERRACE, WEST 143 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 141 STREET and WEST 145 STREET, BROADWAY between WEST 141 STREET and WEST 145 STREET",Manhattan,9,30,Television,Episodic series,United States of America,10031
+638043,Shooting Permit,04/12/2022 08:00:00 AM,04/12/2022 09:00:00 PM,04/08/2022 11:43:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+638024,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 09:00:00 PM,04/08/2022 11:11:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 48 STREET,Brooklyn,7,72,Television,Episodic series,United States of America,11232
+638023,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 09:00:00 PM,04/08/2022 11:08:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between NASSAU AVENUE and NORMAN AVENUE, NASSAU AVENUE between HUMBOLDT STREET and MONITOR STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+638013,Shooting Permit,04/13/2022 10:00:00 AM,04/13/2022 11:59:00 PM,04/08/2022 10:47:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, PARK AVENUE between EAST 52 STREET and EAST 56 STREET, EAST 55 STREET between PARK AVENUE and MADISON AVENUE, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, 2 AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+637983,Shooting Permit,04/18/2022 12:00:00 AM,04/18/2022 12:00:00 PM,04/08/2022 09:34:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Television,Morning Show,United States of America,10036
+637974,Shooting Permit,04/12/2022 03:00:00 AM,04/12/2022 11:00:00 PM,04/08/2022 09:01:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN ST between MONTAGUE TERRACE and DEAD END, MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, HICKS STREET between GRACE COURT and CLARK STREET, REMSEN STREET between HICKS STREET and HENRY STREET, CADMAN PLAZA WEST between TILLARY STREET and PROSPECT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+637967,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 10:00:00 PM,04/08/2022 08:16:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, WEST 25 STREET between 8 AVENUE and 9 AVENUE, 9 AVENUE between WEST 25 STREET and WEST 26 STREET, 9 AVENUE between WEST 24 STREET and WEST 25 STREET, WEST 24 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+637942,Shooting Permit,04/14/2022 10:00:00 AM,04/14/2022 11:59:00 PM,04/07/2022 09:08:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 23 STREET and WEST 24 STREET, 6 AVENUE between WEST 24 STREET and WEST 25 STREET, 5 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+637922,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 09:00:00 PM,04/07/2022 07:35:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHIEFFELIN AVENUE between EAST 229 STREET and BAYCHESTER AVENUE, BAYCHESTER AVENUE between SCHIEFFELIN AVENUE and BOSTON ROAD, NEEDHAM AVENUE between EAST 229 STREET and BAYCHESTER AVENUE, EAST 229 STREET between SCHIEFFELIN PLACE and NEEDHAM AVENUE",Bronx,12,47,Television,Episodic series,United States of America,10466
+637921,Shooting Permit,04/12/2022 10:00:00 AM,04/13/2022 01:00:00 AM,04/07/2022 07:34:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between FORREST STREET and WILSON AVENUE, NOLL STREET between WILSON AVENUE and FLUSHING AVENUE, WILSON AVENUE between NOLL STREET and GEORGE STREET, NOLL STREET between CENTRAL AVENUE and WILSON AVENUE, FLUSHING AVENUE between NOLL STREET and WILSON AVENUE, WILSON AVENUE between GEORGE STREET and MELROSE STREET, TROUTMAN STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between JEFFERSON STREET and TROUTMAN STREET, KNICKERBOCKER AVENUE between TROUTMAN STREET and STARR STREET, JEFFERSON STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+637903,Shooting Permit,04/22/2022 09:30:00 AM,04/23/2022 01:00:00 AM,04/07/2022 05:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+637901,Shooting Permit,04/20/2022 08:30:00 AM,04/21/2022 01:00:00 AM,04/07/2022 05:34:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+637887,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 08:00:00 PM,04/07/2022 04:43:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 48 STREET,Brooklyn,7,72,Television,Episodic series,United States of America,11232
+637876,Shooting Permit,04/11/2022 08:00:00 AM,04/11/2022 10:00:00 PM,04/07/2022 04:14:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+637874,Shooting Permit,04/21/2022 08:30:00 AM,04/22/2022 01:00:00 AM,04/07/2022 04:12:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+637869,Shooting Permit,04/19/2022 07:00:00 AM,04/19/2022 10:00:00 PM,04/07/2022 03:53:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST JAMES PLACE between GATES AVENUE and GREENE AVENUE,Brooklyn,2,88,Film,Feature,United States of America,11238
+637867,Shooting Permit,04/13/2022 11:00:00 AM,04/14/2022 12:45:00 AM,04/07/2022 03:50:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","50 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 50 AVENUE and 51 AVENUE, 50 AVENUE between 2 STREET and 5 STREET, BORDEN AVE between 2 STREET and 5 STREET, BORDEN AVE between 2 STREET and 5 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, EAGLE STREET between FRANKLIN STREET and WEST STREET, 51 AVENUE between 2 STREET and 5 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+637861,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 07:00:00 PM,04/07/2022 03:35:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLINTON STREET between ATLANTIC AVENUE and AITKEN PLACE,Brooklyn,2,84,Film,Feature,United States of America,11201
+637859,Shooting Permit,04/12/2022 06:30:00 AM,04/12/2022 09:00:00 PM,04/07/2022 03:33:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between LISPENARD STREET and FRANKLIN STREET, CHURCH STREET between WALKER STREET and LEONARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, WHITE STREET between CHURCH STREET and BROADWAY, FRANKLIN STREET between CHURCH STREET and BROADWAY, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,"1, 2",1,Television,Pilot,United States of America,10013
+637858,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 02:00:00 PM,04/07/2022 03:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIPER BOULEVARD NORTH between DRY HARBOR ROAD and 80 STREET, 80 STREET between JUNIPER BOULEVARD SOUTH and JUNIPER BOULEVARD NORTH, JUNIPER BOULEVARD SOUTH between DRY HARBOR ROAD and 80 STREET",Queens,5,104,Television,Cable-episodic,United States of America,11379
+637856,Shooting Permit,04/08/2022 05:00:00 PM,04/09/2022 05:30:00 AM,04/07/2022 03:23:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 33 STREET and WEST 30 STREET, 7 AVENUE between WEST 45 STREET and WEST 44 STREET, WEST 45 STREET between 9 AVENUE and 8 AVENUE, WEST 45 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 44 STREET and WEST 43 STREET, WEST 44 STREET between BROADWAY and 6 AVENUE",Manhattan,"4, 5","10, 14, 18",Television,Pilot,United States of America,"10001, 10018, 10036"
+637849,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 10:00:00 PM,04/07/2022 02:33:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","38 STREET between 36 AVENUE and 35 AVENUE, 35 AVENUE between STEINWAY STREET and 37 STREET, 33 STREET between 37 AVENUE and 36 AVENUE, 37 AVENUE between 36 STREET and 35 STREET",Queens,1,114,Television,Not Applicable,United States of America,"11101, 11106"
+637846,Shooting Permit,04/13/2022 07:00:00 AM,04/13/2022 09:00:00 PM,04/07/2022 02:26:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 115 STREET and WEST 114 STREET, WEST 114 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 114 STREET between ST NICHOLAS AVENUE and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 115 STREET, WEST 114 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 113 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, CENTRAL PARK NORTH between FREDERICK DOUGLASS CIRCLE and MALCOLM X BOULEVARD, CENTRAL PARK NORTH between MALCOLM X BOULEVARD and DUKE ELLINGTON CIRCLE",Manhattan,"10, 64","22, 28",Television,Cable-episodic,United States of America,10026
+637838,Shooting Permit,04/13/2022 06:30:00 AM,04/13/2022 10:00:00 PM,04/07/2022 02:06:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+637820,Shooting Permit,04/15/2022 11:30:00 AM,04/16/2022 03:00:00 AM,04/07/2022 01:36:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",39 STREET between 3 AVENUE and 2 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+637818,Shooting Permit,04/08/2022 05:00:00 PM,04/09/2022 06:00:00 AM,04/07/2022 01:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+637815,Shooting Permit,04/11/2022 08:00:00 AM,04/11/2022 09:00:00 PM,04/07/2022 01:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 152 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 151 STREET and WEST 152 STREET, BROADWAY between WEST 151 STREET and WEST 153 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET, AMSTERDAM AVENUE between WEST 155 STREET and WEST 156 STREET, WEST 155 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 156 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+637801,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 11:00:00 PM,04/07/2022 01:04:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637797,Shooting Permit,04/18/2022 06:30:00 AM,04/18/2022 08:30:00 PM,04/07/2022 12:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",4 AVENUE between 34 STREET and 35 STREET,Brooklyn,7,72,Film,Feature,United States of America,11232
+637793,Shooting Permit,04/10/2022 05:00:00 AM,04/10/2022 12:00:00 PM,04/07/2022 12:48:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+637790,Shooting Permit,04/09/2022 05:00:00 AM,04/09/2022 12:00:00 PM,04/07/2022 12:45:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+637787,Shooting Permit,04/12/2022 11:00:00 AM,04/13/2022 12:30:00 AM,04/07/2022 12:37:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONVENT AVENUE between WEST 142 STREET and WEST 144 STREET, WEST 144 STREET between AMSTERDAM AVENUE and CONVENT AVENUE, WEST 144 STREET between CONVENT AVENUE and HAMILTON TERRACE, WEST 143 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 141 STREET and WEST 145 STREET, BROADWAY between WEST 141 STREET and WEST 145 STREET",Manhattan,9,30,Television,Episodic series,United States of America,10031
+637780,Shooting Permit,04/13/2022 10:00:00 AM,04/14/2022 02:00:00 AM,04/07/2022 12:21:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 21 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 18 STREET between IRVING PLACE and 3 AVENUE, EAST 18 STREET between 3 AVENUE and 2 AVENUE, IRVING PLACE between EAST 18 STREET and EAST 19 STREET, 3 AVENUE between EAST 18 STREET and EAST 19 STREET, 3 AVENUE between EAST 19 STREET and EAST 20 STREET, IRVING PLACE between EAST 15 STREET and EAST 16 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+637747,Shooting Permit,04/09/2022 06:00:00 AM,04/09/2022 09:00:00 PM,04/07/2022 11:21:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, SEABRING STREET between VAN BRUNT STREET and RICHARD STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+637728,Shooting Permit,04/11/2022 09:00:00 AM,04/11/2022 11:00:00 PM,04/07/2022 10:45:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",COOPER AVENUE between 82 STREET and 83 STREET,Brooklyn,"18, 5","104, 69",Television,Pilot,United States of America,"11236, 11379, 11385"
+637700,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 11:00:00 PM,04/07/2022 09:27:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+637695,Shooting Permit,04/20/2022 06:00:00 AM,04/20/2022 10:00:00 PM,04/07/2022 09:14:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+637694,Shooting Permit,04/19/2022 06:00:00 AM,04/19/2022 10:00:00 PM,04/07/2022 09:14:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+637693,Shooting Permit,04/18/2022 06:00:00 AM,04/18/2022 10:00:00 PM,04/07/2022 09:14:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+637686,Shooting Permit,04/14/2022 06:00:00 AM,04/15/2022 12:00:00 AM,04/07/2022 08:03:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 39 AVENUE and WOODSIDE AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 58 STREET, WOODSIDE AVENUE between 58 STREET and 60 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, 41 DRIVE between 58 STREET and 60 STREET, ROOSEVELT AVENUE between 56 STREET and 59 STREET, 58 STREET between 43 AVENUE and ROOSEVELT AVENUE, 60 STREET between WOODSIDE AVENUE and 41 DRIVE, 43 AVENUE between 58 STREET and 60 STREET, QUEENS BOULEVARD between 50 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+637678,Shooting Permit,04/13/2022 11:00:00 AM,04/14/2022 01:00:00 AM,04/07/2022 07:01:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 23 STREET and WEST 24 STREET, 6 AVENUE between WEST 24 STREET and WEST 25 STREET, 5 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+637656,Shooting Permit,04/14/2022 07:00:00 PM,04/15/2022 02:00:00 AM,04/06/2022 10:07:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between GRAND ARMY PLAZA and 6 AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and COLUMBUS CIRCLE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, 6 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, EAST 59 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 60 STREET and EAST 62 STREET",Manhattan,"5, 64, 8","18, 19, 22",Film,Feature,United States of America,"10019, 10022, 10065"
+637647,Shooting Permit,04/12/2022 09:30:00 AM,04/12/2022 11:59:00 PM,04/06/2022 07:53:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","41 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 34 AVENUE, 36 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 31 AVENUE, BROADWAY between 35 STREET and 36 STREET, BROADWAY between 34 STREET and 35 STREET, 38 STREET between BROADWAY and 31 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+637642,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 08:00:00 PM,04/06/2022 06:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+637638,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 10:00:00 PM,04/06/2022 05:59:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between WHITEHALL STREET and BROAD STREET, WATER STREET between BROAD STREET and COENTIES SLIP, WATER STREET between OLD SLIP and WALL STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, DELANCY STREET between BOWERY and ELDRIDGE STREET, CHRYSTIE STREET between DELANCY STREET and GRAND STREET, FORSYTH STREET between DELANCY STREET and GRAND STREET, GRAND STREET between MOTT STREET and FORSYTH STREET, BOWERY between BROOME STREET and HESTER STREET, BOWERY between HESTER STREET and CANAL STREET, KENMARE STREET between BOWERY and ELIZABETH STREET",Manhattan,"1, 2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10004, 10005, 10012, 10013"
+637628,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 01:00:00 PM,04/06/2022 05:05:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between TRINITY PLACE and BROADWAY, BROADWAY between LIBERTY STREET and JOHN STREET, LIBERTY STREET between BROADWAY and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10007, 10038"
+637616,DCAS Prep/Shoot/Wrap Permit,04/11/2022 12:00:00 PM,04/11/2022 09:00:00 PM,04/06/2022 04:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between BROADWAY and ELK STREET, READE STREET between CENTRE STREET and BROADWAY, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between WARREN STREET and MURRAY STREET, CHAMBERS STREET between CENTRE STREET and ELK STREET, CHURCH STREET between READE STREET and CHAMBERS STREET, CENTRE STREET between CHAMBERS STREET and READE STREET, CENTRE STREET between READE STREET and DUANE STREET, CENTRE STREET between WORTH STREET and PEARL STREET, CENTRE STREET between WORTH STREET and HOGAN PLACE, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+637608,Shooting Permit,04/14/2022 10:00:00 AM,04/15/2022 01:00:00 AM,04/06/2022 04:34:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","34 STREET between 36 AVENUE and 35 AVENUE, 33 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 32 STREET and 33 STREET, 33 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+637607,Shooting Permit,04/13/2022 10:00:00 AM,04/14/2022 01:00:00 AM,04/06/2022 04:34:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","34 STREET between 36 AVENUE and 35 AVENUE, 37 AVENUE between 33 STREET and 32 STREET, 33 STREET between 36 AVENUE and 37 AVENUE, 33 STREET between 35 AVENUE and 36 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+637606,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 11:00:00 PM,04/06/2022 04:25:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637600,Shooting Permit,04/12/2022 11:00:00 AM,04/13/2022 12:30:00 PM,04/06/2022 03:59:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 43RD ST between 1 AVENUE and 2 AVENUE, TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, TUDOR CITY PLACE between DEAD END and EAST 41 STREET, 3 AVENUE between EAST 27 STREET and EAST 26 STREET, EAST 27 STREET between 3 AVENUE and 2 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 26 STREET and EAST 29 STREET, MOUNT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 28 STREET between MOUNT CARMEL PLACE and 1 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 28 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 27 STREET and EAST 28 STREET, PARK AVENUE SOUTH between EAST 28 STREET and EAST 29 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016, 10017"
+637597,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 08:00:00 PM,04/06/2022 03:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and DEAD END, CONOVER STREET between REED STREET and BEARD STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, REED STREET between VAN BRUNT STREET and CONOVER STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+637563,Shooting Permit,04/08/2022 06:30:00 AM,04/08/2022 10:00:00 PM,04/06/2022 02:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DIAMOND STREET and JEWEL STREET, NORMAN AVENUE between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between NORMAN AVENUE and NASSAU AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and NEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637562,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 08:30:00 PM,04/06/2022 02:25:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 46 STREET and EAST 43 STREET, EAST 44 STREET between 6TH AVE and MADISON AVENUE, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, CHURCH STREET between WALKER STREET and LEONARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, WHITE STREET between CHURCH STREET and BROADWAY, FRANKLIN STREET between CHURCH STREET and BROADWAY, EAST 43 STREET between 5 AVENUE and VANDERBILT AVENUE",Manhattan,"1, 5","1, 14, 18",Television,Pilot,United States of America,"10013, 10017, 10036, 10173"
+637559,Shooting Permit,04/12/2022 02:00:00 PM,04/12/2022 07:00:00 PM,04/06/2022 02:16:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUDGE STREET between ELMHURST AVENUE and WHITNEY AVENUE, ELMHURST AVENUE between JUDGE STREET and KETCHAM STREET",Queens,4,110,Film,Feature,United States of America,11373
+637558,Shooting Permit,04/08/2022 11:00:00 AM,04/09/2022 02:00:00 AM,04/06/2022 02:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between SKILLMAN AVENUE and 27 STREET, 27 STREET between 47 AVENUE and AUSTELL PLACE, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+637557,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 09:00:00 PM,04/06/2022 02:14:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between PAIDGE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Not Applicable,United States of America,11222
+637555,Shooting Permit,04/08/2022 10:00:00 AM,04/09/2022 02:00:00 AM,04/06/2022 02:12:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, 79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, FURMANVILLE AVENUE between 78 STREET and 79 PLACE, JUNIPER VALLEY ROAD between 78 STREET and 79 PLACE, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, JUNIPER BLVD SOUTH between 77 STREET and 80 STREET, 79 STREET between JUNIPER VALLEY ROAD and 66 ROAD",Queens,"11, 5","104, 111",Television,Episodic series,United States of America,"11363, 11379"
+637553,Theater Load in and Load Outs,04/14/2022 12:01:00 AM,04/15/2022 05:00:00 AM,04/06/2022 02:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+637532,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 11:00:00 PM,04/06/2022 01:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 121 STREET, LENOX AVENUE between WEST 119 STREET and WEST 121 STREET, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, WEST 125 STREET between FREDERICK DOUGLASS BOULEVARD and 5 AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 124 STREET and WEST 125 STREET",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+637520,Shooting Permit,04/07/2022 06:30:00 AM,04/07/2022 09:30:00 PM,04/06/2022 01:01:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and NEWEL STREET, NEWEL STREET between CALYER STREET and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637517,Shooting Permit,04/08/2022 07:00:00 AM,04/08/2022 05:59:00 PM,04/06/2022 12:57:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 169 STREET and WEST 170 STREET, BROADWAY between WEST 168 STREET and WEST 169 STREET, WEST 169 STREET between BROADWAY and FT WASHINGTON AVENUE",Manhattan,12,33,WEB,Not Applicable,United States of America,10032
+637498,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 10:00:00 PM,04/06/2022 12:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+637497,Shooting Permit,04/12/2022 09:00:00 AM,04/12/2022 11:59:00 PM,04/06/2022 12:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 39 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, EAST 44 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 42 STREET and EAST 41 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017"
+637491,Theater Load in and Load Outs,04/14/2022 12:01:00 AM,04/14/2022 11:59:00 PM,04/06/2022 12:16:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+637475,Shooting Permit,04/10/2022 07:00:00 AM,04/10/2022 05:59:00 PM,04/06/2022 11:48:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 169 STREET and WEST 170 STREET, BROADWAY between WEST 168 STREET and WEST 169 STREET, WEST 169 STREET between BROADWAY and FT WASHINGTON AVENUE",Manhattan,12,33,WEB,Not Applicable,United States of America,10032
+637469,Shooting Permit,04/09/2022 07:00:00 AM,04/09/2022 05:59:00 PM,04/06/2022 11:37:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 169 STREET and WEST 170 STREET, BROADWAY between WEST 168 STREET and WEST 169 STREET, WEST 169 STREET between BROADWAY and FT WASHINGTON AVENUE",Manhattan,12,33,WEB,Not Applicable,United States of America,10032
+637458,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 10:00:00 PM,04/06/2022 11:22:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637434,Shooting Permit,04/08/2022 10:00:00 AM,04/08/2022 06:00:00 PM,04/06/2022 10:04:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","KEW GARDENS ROAD between LEFFERTS BOULEVARD and 84 ROAD, QUEENS BOULEVARD between 83 AVENUE and VAN WYCK EXPRESSWAY, VAN WYCK EXPRESSWAY between QUEENS BOULEVARD and 87 AVENUE, 84 DRIVE between MANTON STREET and QUEENS BOULEVARD, QUEENS BOULEVARD between 84 DRIVE and 86 AVENUE",Queens,"10, 12, 13, 7, 8, 81, 83, 9","102, 103, 106, 107, 110, 113",Television,Episodic series,United States of America,"11354, 11367, 11368, 11415, 11418, 11419, 11420, 11430, 11435, 11436"
+637427,Shooting Permit,04/08/2022 09:00:00 AM,04/08/2022 11:00:00 PM,04/06/2022 09:48:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","JORALEMON STREET between FURMAN STREET and WILLOW PLACE, COLUMBIA STREET between CONGRESS STREET and KANE STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, ATLANTIC AVENUE between HICKS STREET and HENRY STREET, HENRY STREET between ATLANTIC AVENUE and STATE STREET, CADMAN PLAZA between CLARK ST and MIDDAGH ST, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, FURMAN STREET between DOUGHTY STREET and SQUIBB PARK BRIDGE, OLD FULTON STREET between ELIZABETH PLACE and FRONT STREET, WATER STREET between OLD FULTON STREET and MAIN STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+637421,Shooting Permit,04/14/2022 01:00:00 PM,04/15/2022 01:00:00 AM,04/06/2022 09:30:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+637418,Shooting Permit,04/13/2022 01:00:00 PM,04/14/2022 01:00:00 AM,04/06/2022 09:24:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+637416,Shooting Permit,04/11/2022 01:00:00 PM,04/12/2022 01:00:00 AM,04/06/2022 09:08:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+637415,Shooting Permit,04/08/2022 06:00:00 AM,04/08/2022 10:00:00 PM,04/06/2022 08:58:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+637410,Shooting Permit,04/08/2022 03:00:00 PM,04/08/2022 06:00:00 PM,04/06/2022 08:17:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","43 ROAD between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 ROAD and 43 AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, VERNON BOULEVARD between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+637385,Shooting Permit,04/12/2022 09:00:00 AM,04/12/2022 11:00:00 PM,04/05/2022 09:42:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 23 STREET and WEST 24 STREET, 6 AVENUE between WEST 24 STREET and WEST 25 STREET, 5 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+637340,Shooting Permit,04/08/2022 06:00:00 AM,04/08/2022 10:00:00 PM,04/05/2022 05:36:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637316,Shooting Permit,04/13/2022 11:00:00 AM,04/14/2022 01:00:00 AM,04/05/2022 04:31:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PARK between WILLOUGHBY AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between WASHINGTON PARK and CARLTON AVENUE, WASHINGTON PARK between WILLOUGHBY AVENUE and DEKALB AVENUE, DEKALB AVENUE between FORT GREENE PLACE and WASHINGTON PARK, MYRTLE AVENUE between FLEET PLACE and WASHINGTON PARK, VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CARLTON AVE between MYRTLE AVENUE and PARK AVENUE, ADELPHI STREET between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+637315,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 09:00:00 PM,04/05/2022 04:29:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEROME AVENUE between EAST 164 STREET and EAST 165 STREET,Bronx,4,44,WEB,Not Applicable,United States of America,10452
+637296,Shooting Permit,04/08/2022 11:00:00 AM,04/09/2022 01:00:00 AM,04/05/2022 03:43:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 13 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 12 STREET and EAST 13 STREET, 5 AVENUE between EAST 13 STREET and EAST 14 STREET, EAST 13 STREET between 5 AVENUE and UNIVERSITY PLACE, GREENWICH STREET between SPRING STREET and CANAL STREET, UNIVERSITY PLACE between EAST 11 STREET and EAST 12 STREET, 3 AVENUE between EAST 11 STREET and EAST 14 STREET, EAST 13 STREET between 2 AVENUE and 3 AVENUE, SPRING STREET between WASHINGTON STREET and GREENWICH STREET, SPRING STREET between GREENWICH STREET and RENWICK STREET, GREENWICH STREET between SPRING STREET and CANAL STREET, GREENWICH STREET between SPRING STREET and VANDAM STREET, GREENWICH STREET between CANAL STREET and SPRING STREET, RENWICK STREET between SPRING STREET and CANAL STREET, CANAL STREET between WEST STREET and WASHINGTON STREET, CANAL STREET between WASHINGTON STREET and GREENWICH STREET, CANAL STREET between RENWICK STREET and GREENWICH STREET, CANAL STREET between RENWICK STREET and HUDSON STREET, DEBROSSES STREET between GREENWICH STREET and HUDSON STREET, SPRING STREET between WEST STREET and WASHINGTON STREET",Manhattan,"1, 2, 3","1, 6, 9",Television,Episodic series,United States of America,"10003, 10011, 10013, 10014"
+637297,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 08:00:00 PM,04/05/2022 03:43:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+637295,Shooting Permit,04/12/2022 07:00:00 AM,04/12/2022 10:00:00 PM,04/05/2022 03:39:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637292,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 09:00:00 PM,04/05/2022 03:33:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 72 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 71 STREET between COLUMBUS AVENUE and BROADWAY, CENTRAL PARK WEST between WEST 74 STREET and WEST 73 STREET, CENTRAL PARK WEST between WEST 71 STREET and WEST 69 STREET, COLUMBUS AVENUE between WEST 75 STREET and WEST 72 STREET, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, CENTRAL PARK WEST between FREDERICK DOUGLASS CIRCLE and WEST 108 STREET, CENTRAL PARK NORTH between FREDERICK DOUGLASS CIRCLE and ADAM CLAYTON POWELL JR BOULEVARD, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD",Manhattan,"10, 64, 7","20, 22, 24, 28",Television,Cable-episodic,United States of America,"10023, 10025, 10026"
+637289,Shooting Permit,04/07/2022 07:00:00 PM,04/07/2022 11:59:00 PM,04/05/2022 03:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",THELONIOUS SPHERE MONK CIRCLE between WEST END AVENUE and DEAD END,Manhattan,7,20,Student,Student Film,United States of America,10023
+637243,Shooting Permit,04/08/2022 06:00:00 AM,04/08/2022 08:00:00 PM,04/05/2022 01:47:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+637242,Shooting Permit,04/07/2022 06:00:00 AM,04/07/2022 08:00:00 PM,04/05/2022 01:47:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+637235,Theater Load in and Load Outs,04/13/2022 12:01:00 AM,04/21/2022 06:00:00 AM,04/05/2022 01:40:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, BROADWAY between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+637207,Shooting Permit,04/13/2022 12:00:00 PM,04/14/2022 02:00:00 AM,04/05/2022 12:51:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between BEVERLY ROAD and CORTELYOU ROAD, OCEAN AVENUE between CORTELYOU ROAD and DORCHESTER ROAD, FLATBUSH AVENUE between BEVERLY ROAD and CORTELYOU ROAD, OCEAN AVENUE between REGENT PLACE and BEVERLY ROAD, REGENT PLACE between OCEAN AVENUE and EAST 21 STREET, REGENT PLACE between FLATBUSH AVENUE and EAST 21 STREET, BEVERLY ROAD between OCEAN AVENUE and EAST 21 STREET, EAST 21 STREET between REGENT PLACE and BEVERLY ROAD, BEVERLY ROAD between EAST 21 STREET and FLATBUSH AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+637202,Shooting Permit,04/12/2022 11:00:00 AM,04/13/2022 01:00:00 AM,04/05/2022 12:46:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between FLATBUSH AVENUE and EAST 22 STREET, BEVERLY ROAD between FLATBUSH AVENUE and EAST 22 STREET, OCEAN AVENUE between CORTELYOU ROAD and BEVERLY ROAD, BEVERLY ROAD between EAST 22 STREET and EAST 23 STREET, BEVERLY ROAD between EAST 23 STREET and BEDFORD AVENUE, EAST 23 STREET between BEVERLY ROAD and CORTELYOU ROAD, OCEAN AVENUE between CORTELYOU ROAD and DORCHESTER ROAD, EAST 22 STREET between CORTELYOU ROAD and CLARENDON ROAD, CORTELYOU ROAD between FLATBUSH AVENUE and EAST 22 STREET, FLATBUSH AVENUE between CORTELYOU ROAD and CLARENDON ROAD, BEVERLY ROAD between OCEAN AVENUE and EAST 21 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+637193,Shooting Permit,04/11/2022 06:00:00 AM,04/12/2022 12:00:00 AM,04/05/2022 12:35:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 AVENUE between 46 STREET and 48 STREET, QUEENS BOULEVARD between 44 STREET and 48 STREET, QUEENS BOULEVARD between 51 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 47 AVENUE, 58 STREET between 31 AVENUE and 32 AVENUE, 31 AVENUE between 56 STREET and 68 STREET, 32 AVENUE between 56 STREET and 58 STREET, 32 AVENUE between 58 STREET and 60 STREET, 60 STREET between 31 AVENUE and 32 AVENUE, 60 STREET between 32 AVENUE and NORTHERN BOULEVARD, 31 AVENUE between 68 STREET and 69 STREET, 69 STREET between 31 AVENUE and 32 AVENUE",Queens,"1, 2, 3","108, 114, 115",Television,Episodic series,United States of America,"11104, 11377"
+637185,Shooting Permit,04/08/2022 06:00:00 AM,04/08/2022 10:00:00 PM,04/05/2022 12:20:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, WYTHE AVENUE between NORTH 14 STREET and BANKER STREET, 85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE",Brooklyn,"1, 82, 9","102, 94",Television,Episodic series,United States of America,"11211, 11222, 11249, 11385, 11418"
+637177,Shooting Permit,05/11/2022 09:00:00 AM,05/11/2022 10:00:00 PM,04/05/2022 12:13:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 49 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,"10017, 10020, 10022"
+637175,Shooting Permit,04/13/2022 06:00:00 AM,04/13/2022 11:59:00 PM,04/05/2022 12:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+637170,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 08:00:00 PM,04/05/2022 12:05:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+637165,Shooting Permit,04/08/2022 08:00:00 AM,04/08/2022 11:00:00 PM,04/05/2022 12:00:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637164,Shooting Permit,04/07/2022 08:00:00 AM,04/07/2022 11:00:00 PM,04/05/2022 12:00:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+637163,Shooting Permit,04/08/2022 08:00:00 AM,04/08/2022 10:00:00 PM,04/05/2022 12:00:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between DEAD END and HALLECK STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+637162,Theater Load in and Load Outs,04/13/2022 12:01:00 AM,04/13/2022 11:59:00 PM,04/05/2022 11:59:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+637155,Shooting Permit,04/08/2022 09:00:00 AM,04/08/2022 11:30:00 PM,04/05/2022 11:53:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PARKWAY between UNDERHILL AVENUE and WASHINGTON AVENUE, FLATBUSH AVE between PLAZA ST W and OCEAN AVE, PLAZA ST W between LINCOLN PLACE and ST JOHN'S PL",Brooklyn,"55, 6, 8","77, 78",Television,Episodic series,United States of America,"11215, 11217, 11225, 11238"
+637112,Shooting Permit,04/07/2022 06:00:00 AM,04/07/2022 11:00:00 PM,04/05/2022 10:44:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+637094,Shooting Permit,04/09/2022 12:30:00 AM,04/09/2022 10:00:00 PM,04/05/2022 10:16:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, WILLIAM STREET between EXCHANGE PLACE and WALL STREET, HANOVER STREET between EXCHANGE PLACE and WALL STREET, OLD SLIP between WATER STREET and SOUTH STREET, BEAVER STREET between BROAD STREET and BROADWAY",Manhattan,"1, 2, 3","1, 5, 84",Commercial,Commercial,United States of America,"10002, 10004, 10005, 10013, 10014, 10038, 10041, 11201"
+637065,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 06:00:00 PM,04/05/2022 07:33:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between BOARDWALK and SURF AVENUE,Brooklyn,13,60,Commercial,Commercial,United States of America,11224
+637017,Shooting Permit,04/07/2022 10:00:00 AM,04/07/2022 11:59:00 PM,04/04/2022 07:08:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between LOCUST AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+636998,Shooting Permit,04/08/2022 07:00:00 AM,04/09/2022 01:00:00 AM,04/04/2022 05:27:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTPHIN BOULEVARD between 97 AVENUE and 95 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 94 AVENUE and 95 AVENUE, 95 AVENUE between 148 STREET and 149 STREET, 149 STREET between 95 AVENUE and 97 AVENUE, 148 STREET between 90 AVENUE and 88 AVENUE, 89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 97 AVENUE between 149 STREET and 150 STREET",Queens,12,103,Television,Cable-episodic,United States of America,11435
+636997,Shooting Permit,04/07/2022 07:00:00 AM,04/08/2022 01:00:00 AM,04/04/2022 05:27:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTPHIN BOULEVARD between 97 AVENUE and 95 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 94 AVENUE and 95 AVENUE, 95 AVENUE between 148 STREET and 149 STREET, 149 STREET between 95 AVENUE and 97 AVENUE, 97 AVENUE between 149 STREET and 150 STREET, 148 STREET between 90 AVENUE and 88 AVENUE, 89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET",Queens,"12, 5","103, 104",Television,Cable-episodic,United States of America,"11385, 11435"
+636987,Shooting Permit,04/07/2022 10:00:00 AM,04/08/2022 01:00:00 AM,04/04/2022 04:40:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 32 STREET and WEST 31 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE, BROADWAY between WEST 31 STREET and WEST 27 STREET, 6 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 27 STREET between 6 AVENUE and 5 AVENUE, WEST 32 STREET between 6 AVENUE and BROADWAY, WEST 28 STREET between 6 AVENUE and BROADWAY, W. 44TH STREET between 6 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 46 STREET, EAST 43 STREET between 5 AVENUE and VANDERBILT AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, 6 AVENUE between WEST 28 STREET and WEST 29 STREET",Manhattan,5,"13, 14, 18",Television,Pilot,United States of America,"10001, 10016, 10017, 10036, 10173"
+636984,Shooting Permit,04/14/2022 02:00:00 PM,04/15/2022 04:00:00 AM,04/04/2022 04:37:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",39 STREET between 3 AVENUE and 2 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11232
+636971,Shooting Permit,04/07/2022 07:00:00 AM,04/07/2022 11:00:00 PM,04/04/2022 04:09:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 46 STREET and 41 STREET, 34 AVENUE between 46 STREET and 47 STREET, 47 STREET between 34 AVENUE and BROADWAY, 48 STREET between BROADWAY and 34 AVENUE, 43 STREET between QUEENS BOULEVARD and 47 AVENUE, 44 STREET between QUEENS BOULEVARD and 48 AVENUE, 47 AVENUE between 43 STREET and 44 STREET, GREENPOINT AVENUE between 44 STREET and 45 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11103, 11104, 11377"
+636964,Shooting Permit,04/06/2022 11:00:00 AM,04/07/2022 01:00:00 AM,04/04/2022 03:56:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 2 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 3 STREET and EAST 2 STREET, 1 AVENUE between EAST 2 STREET and EAST 1 STREET, 2 AVENUE between EAST 3 STREET and EAST 2 STREET, 2 AVENUE between EAST 2 STREET and EAST 1 STREET, EAST 2 STREET between 2 AVENUE and 1 AVENUE, EAST 1 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 4 STREET and EAST 5 STREET, 1 AVENUE between EAST 4 STREET and EAST 3 STREET, EAST 4 STREET between 1 AVENUE and AVENUE A, EAST 1 STREET between 2 AVENUE and 1 AVENUE",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+636948,Shooting Permit,04/07/2022 11:30:00 AM,04/08/2022 01:30:00 AM,04/04/2022 03:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between WEST STREET and WASHINGTON STREET, CANAL STREET between WEST STREET and WASHINGTON STREET, CANAL STREET between WASHINGTON STREET and GREENWICH STREET, CANAL STREET between GREENWICH STREET and RENWICK STREET, CANAL STREET between RENWICK STREET and HUDSON STREET, GREENWICH STREET between CANAL STREET and SPRING STREET, RENWICK STREET between CANAL STREET and SPRING STREET, DESBROSSES STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,"10013, 10014"
+636946,Shooting Permit,04/08/2022 06:00:00 PM,04/09/2022 06:00:00 AM,04/04/2022 03:23:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and BROADWAY, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 43 STREET between BROADWAY and 6 AVENUE, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET, MADISON AVENUE between EAST 41 STREET and EAST 43 STREET, WEST 42 STREET between 5 AVENUE and 6 AVENUE, EAST 41 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10018, 10036"
+636936,Shooting Permit,04/07/2022 07:00:00 AM,04/07/2022 08:00:00 PM,04/04/2022 03:14:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between DEAD END and HALLECK STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+636935,Theater Load in and Load Outs,04/18/2022 12:01:00 AM,05/02/2022 11:59:00 PM,04/04/2022 03:14:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+636933,Shooting Permit,04/08/2022 11:00:00 AM,04/08/2022 11:59:00 PM,04/04/2022 03:08:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, AMSTERDAM AVENUE between WEST 60 STREET and WEST 61 STREET",Manhattan,"4, 7","18, 20",Television,Pilot,United States of America,"10019, 10023"
+636920,Shooting Permit,04/08/2022 09:00:00 AM,04/08/2022 11:00:00 PM,04/04/2022 02:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+636904,Shooting Permit,04/07/2022 10:00:00 AM,04/07/2022 11:00:00 PM,04/04/2022 02:24:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, AMSTERDAM AVENUE between WEST 60 STREET and WEST 61 STREET",Manhattan,"4, 7","18, 20",Television,Pilot,United States of America,"10019, 10023"
+636903,Shooting Permit,04/06/2022 06:00:00 AM,04/06/2022 10:00:00 PM,04/04/2022 02:20:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636895,Shooting Permit,04/11/2022 06:30:00 AM,04/11/2022 09:00:00 PM,04/04/2022 02:09:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 10 AVENUE and 11 AVENUE, WEST 49 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,10019
+636892,Shooting Permit,04/13/2022 09:00:00 AM,04/13/2022 11:30:00 PM,04/04/2022 02:05:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","13 AVENUE between 80 STREET and 81 STREET, 80 STREET between 13 AVENUE and 14 AVENUE, 78 STREET between 17 AVENUE and 16 AVENUE",Brooklyn,"10, 11","62, 68",Film,Feature,United States of America,"11214, 11228"
+636877,Shooting Permit,04/14/2022 07:00:00 AM,04/14/2022 09:00:00 PM,04/04/2022 01:50:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between VERNON BOULEVARD and 5 STREET, CENTER BOULEVARD between 46 AVENUE and 47 AVENUE",Queens,2,108,Film,Feature,United States of America,"11101, 11109"
+636873,Shooting Permit,04/11/2022 09:00:00 AM,04/11/2022 11:00:00 PM,04/04/2022 01:50:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","69 STREET between 37 ROAD and 38 AVENUE, 69 STREET between 38 AVENUE and ROOSEVELT AVENUE, 70 STREET between ROOSEVELT AVENUE and 41 AVENUE",Queens,2,108,Film,Feature,United States of America,11377
+636874,Shooting Permit,04/12/2022 09:00:00 AM,04/12/2022 10:00:00 PM,04/04/2022 01:50:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","69 STREET between ROOSEVELT AVENUE and 38 AVENUE, 69 STREET between 38 AVENUE and 37 ROAD, 70 STREET between ROOSEVELT AVENUE and 41 AVENUE",Queens,2,108,Film,Feature,United States of America,11377
+636869,Shooting Permit,04/08/2022 03:00:00 PM,04/09/2022 05:00:00 AM,04/04/2022 01:46:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HENRY STREET and BOERUM PLACE, BRIDGE PARK DRIVE WEST between BRIDGE PARK DRIVE NORTH and BRIDGE PARK DRIVE SOUTH, GRACE COURT between HICKS STREET and DEAD END, HICKS STREET between GRACE COURT and JORALEMON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+636858,Shooting Permit,04/12/2022 09:30:00 AM,04/12/2022 11:59:00 PM,04/04/2022 01:29:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 35 STREET and 36 STREET, 41 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 34 AVENUE, 36 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 31 AVENUE, BROADWAY between 34 STREET and 35 STREET, BROADWAY between 32 STREET and 33 STREET, 32 STREET between BROADWAY and 31 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+636846,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/08/2022 11:59:00 PM,04/04/2022 01:10:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+636840,Shooting Permit,04/11/2022 09:00:00 AM,04/11/2022 11:59:00 PM,04/04/2022 01:02:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between MARLBOROUGH ROAD and EAST 19 STREET, MARLBOROUGH ROAD between CATON AVENUE and CHURCH AVENUE, MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+636826,Shooting Permit,04/07/2022 07:00:00 AM,04/07/2022 10:00:00 PM,04/04/2022 12:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636816,Shooting Permit,04/07/2022 09:00:00 AM,04/07/2022 10:00:00 PM,04/04/2022 12:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+636815,Shooting Permit,04/06/2022 09:30:00 AM,04/06/2022 10:30:00 PM,04/04/2022 12:29:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 40 AVENUE and 41 AVENUE, 40 AVENUE between 21 STREET and 23 STREET, 21 STREET between 39 AVENUE and 40 AVENUE, 21 STREET between 38 AVENUE and 39 AVENUE, 30 ROAD between 12 STREET and VERNON BOULEVARD, 14 STREET between 30 DRIVE and 30 ROAD, 14 STREET between 30 ROAD and 30 AVENUE, 30 ROAD between 14 STREET and 21 STREET",Queens,1,114,Television,Pilot,United States of America,"11101, 11102"
+636809,Shooting Permit,04/06/2022 08:00:00 AM,04/06/2022 09:00:00 PM,04/04/2022 12:19:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+636805,Shooting Permit,04/18/2022 08:00:00 AM,04/18/2022 10:00:00 PM,04/04/2022 12:16:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 162 STREET between JUMEL TERRACE and AMSTERDAM AVENUE,Manhattan,12,33,Film,Short,United States of America,10032
+636801,Shooting Permit,04/17/2022 10:00:00 AM,04/17/2022 10:00:00 PM,04/04/2022 12:06:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARKET STREET between MONROE STREET and MADISON STREET,Manhattan,3,5,Film,Short,United States of America,10002
+636795,Theater Load in and Load Outs,04/09/2022 12:01:00 AM,04/10/2022 11:59:00 PM,04/04/2022 12:00:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636794,Shooting Permit,04/07/2022 06:00:00 AM,04/07/2022 08:00:00 PM,04/04/2022 11:55:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 169 STREET and WEST 170 STREET, BROADWAY between WEST 168 STREET and WEST 169 STREET",Manhattan,12,33,WEB,Not Applicable,United States of America,10032
+636776,Shooting Permit,04/06/2022 06:30:00 AM,04/06/2022 11:00:00 PM,04/04/2022 11:18:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, NORMAN AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, NASSAU AVENUE between NORTH HENRY STREET and MONITOR STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636772,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 10:00:00 PM,04/04/2022 11:13:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+636770,Shooting Permit,04/08/2022 07:00:00 AM,04/08/2022 10:00:00 PM,04/04/2022 11:07:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+636764,Shooting Permit,04/07/2022 07:00:00 AM,04/07/2022 10:00:00 PM,04/04/2022 10:44:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+636763,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 10:00:00 PM,04/04/2022 10:39:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+636753,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 09:00:00 PM,04/04/2022 10:20:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between DEAD END and HALLECK STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+636750,Theater Load in and Load Outs,04/13/2022 12:01:00 AM,04/13/2022 11:59:00 PM,04/04/2022 10:14:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+636745,Shooting Permit,04/06/2022 08:30:00 AM,04/06/2022 01:30:00 PM,04/04/2022 10:06:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 8 AVENUE and 9 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, WEST 21 STREET between 10 AVENUE and 11 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, 10 AVENUE between WEST 20 STREET and WEST 21 STREET, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+636743,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/09/2022 06:00:00 AM,04/04/2022 10:01:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636740,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 08:00:00 PM,04/04/2022 09:57:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA STREET between DEAD END and HALLECK STREET, COFFEY STREET between DEAD END and FERRIS STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+636736,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/09/2022 06:00:00 AM,04/04/2022 09:54:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636727,Theater Load in and Load Outs,04/07/2022 12:01:00 AM,04/07/2022 11:59:00 PM,04/04/2022 09:45:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636721,Theater Load in and Load Outs,04/11/2022 12:01:00 AM,04/12/2022 06:00:00 AM,04/04/2022 09:38:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+636719,Theater Load in and Load Outs,04/06/2022 12:01:00 AM,04/06/2022 11:59:00 PM,04/04/2022 09:31:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636712,Shooting Permit,04/07/2022 08:30:00 AM,04/07/2022 11:59:00 PM,04/04/2022 09:08:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+636711,Shooting Permit,04/06/2022 08:00:00 AM,04/06/2022 11:59:00 PM,04/04/2022 09:05:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+636703,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 09:00:00 PM,04/04/2022 08:33:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636693,Theater Load in and Load Outs,04/07/2022 05:45:00 AM,04/08/2022 10:00:00 PM,04/04/2022 05:19:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+636692,Theater Load in and Load Outs,04/06/2022 05:30:00 AM,04/07/2022 05:30:00 AM,04/04/2022 04:57:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+636691,Theater Load in and Load Outs,04/05/2022 12:01:00 AM,04/06/2022 05:00:00 AM,04/04/2022 04:48:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+636690,Shooting Permit,04/06/2022 08:00:00 AM,04/07/2022 02:00:00 AM,04/04/2022 02:38:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 74 STREET and EAST 75 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 75 STREET between MADISON AVENUE and 5 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 52 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"5, 8","18, 19",Commercial,Commercial,United States of America,"10019, 10020, 10021, 10103, 10105, 10119"
+636533,Shooting Permit,04/05/2022 06:00:00 AM,04/05/2022 10:00:00 PM,04/02/2022 03:18:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636497,Shooting Permit,04/07/2022 01:00:00 PM,04/08/2022 01:00:00 AM,04/01/2022 06:59:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+636462,Shooting Permit,04/07/2022 08:00:00 AM,04/07/2022 10:00:00 PM,04/01/2022 04:04:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+636461,Shooting Permit,04/06/2022 02:00:00 PM,04/07/2022 03:00:00 AM,04/01/2022 04:00:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","OLD FULTON STREET between WATER STREET and ELIZABETH PLACE, WATER STREET between OLD FULTON STREET and MAIN STREET, FRONT STREET between PEARL STREET and JAY STREET, PEARL STREET between FRONT STREET and YORK STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+636460,Shooting Permit,04/12/2022 08:00:00 AM,04/12/2022 08:00:00 PM,04/01/2022 03:56:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",54 AVENUE between CENTER BOULEVARD and 2 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,"11101, 11109"
+636459,Shooting Permit,04/13/2022 08:00:00 AM,04/13/2022 08:00:00 PM,04/01/2022 03:56:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",54 AVENUE between 2 STREET and CENTER BOULEVARD,Queens,2,108,Still Photography,Not Applicable,United States of America,"11101, 11109"
+636456,Shooting Permit,04/07/2022 06:00:00 PM,04/08/2022 06:00:00 AM,04/01/2022 03:50:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and BROADWAY, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 43 STREET between BROADWAY and 6 AVENUE, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10018, 10036"
+636450,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 10:00:00 PM,04/01/2022 03:38:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+636442,Shooting Permit,04/12/2022 06:30:00 AM,04/12/2022 08:00:00 PM,04/01/2022 03:16:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD, RUGBY ROAD between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Film,Feature,United States of America,11226
+636441,Shooting Permit,04/04/2022 01:00:00 PM,04/05/2022 01:00:00 AM,04/01/2022 03:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+636424,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 09:00:00 PM,04/01/2022 02:28:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+636414,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 11:00:00 PM,04/01/2022 01:55:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+636411,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 08:00:00 PM,04/01/2022 01:47:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+636409,Shooting Permit,04/06/2022 07:00:00 AM,04/06/2022 10:00:00 PM,04/01/2022 01:42:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+636405,Shooting Permit,04/06/2022 10:00:00 AM,04/06/2022 11:30:00 PM,04/01/2022 01:37:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,"1, 13, 15, 2","60, 61, 88, 94",Television,Episodic series,United States of America,"11205, 11222, 11223"
+636404,Shooting Permit,04/07/2022 06:00:00 AM,04/07/2022 11:59:00 PM,04/01/2022 01:34:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between GREENPOINT AVE and DEAD END, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+636403,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 09:00:00 PM,04/01/2022 01:31:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+636373,Shooting Permit,04/06/2022 10:00:00 AM,04/06/2022 05:00:00 PM,04/01/2022 12:31:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 3 AVENUE and SMITH STREET,Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+636370,Shooting Permit,04/14/2022 07:00:00 AM,04/14/2022 09:00:00 PM,04/01/2022 12:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636368,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 07:00:00 PM,04/01/2022 12:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, COLUMBIA HEIGHTS between VINE STREET and CRANBERRY STREET, EVERIT STREET between COLUMBIA HEIGHTS and OLD FULTON STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+636365,Shooting Permit,04/06/2022 08:00:00 AM,04/07/2022 01:00:00 AM,04/01/2022 11:57:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 13 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, NORTH 11 STREET between BERRY STREET and WYTHE AVENUE, NORTH 11 STREET between WYTHE AVENUE and KENT AVENUE, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between BERRY STREET and DRIGGS AVENUE, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Television,Pilot,United States of America,"11211, 11249"
+636362,Theater Load in and Load Outs,04/08/2022 04:01:00 AM,04/09/2022 06:00:00 AM,04/01/2022 11:50:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+636361,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/11/2022 06:00:00 AM,04/01/2022 11:49:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+636359,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/09/2022 06:00:00 AM,04/01/2022 11:48:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+636357,Shooting Permit,04/11/2022 07:00:00 AM,04/11/2022 09:00:00 PM,04/01/2022 11:44:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636355,Shooting Permit,04/08/2022 07:00:00 AM,04/08/2022 09:00:00 PM,04/01/2022 11:39:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636352,Shooting Permit,04/07/2022 07:00:00 AM,04/07/2022 09:00:00 PM,04/01/2022 11:32:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636348,Shooting Permit,04/05/2022 06:30:00 AM,04/05/2022 06:00:00 PM,04/01/2022 11:21:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between THOMAS STREET and DUANE STREET, CHAMBERS STREET between WEST BROADWAY and CHURCH STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between DUANE STREET and READE STREET, CHURCH STREET between DUANE STREET and THOMAS STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, FRANKLIN STREET between CHURCH STREET and BROADWAY, CHURCH STREET between FRANKLIN STREET and WHITE STREET, 6 AVENUE between FRANKLIN STREET and WALKER STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, THOMAS STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,1,Television,Pilot,United States of America,"10007, 10013"
+636347,Shooting Permit,04/06/2022 06:00:00 AM,04/07/2022 12:00:00 AM,04/01/2022 11:20:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 107 STREET and 108 STREET, 108 STREET between 86 AVENUE and JAMAICA AVENUE, 107 STREET between 86 AVENUE and JAMAICA AVENUE, 107 STREET between JAMAICA AVENUE and 91 AVENUE, 88 AVENUE between 104 STREET and 107 STREET, 85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, JAMAICA AVENUE between 108 STREET and 109 STREET",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+636345,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 07:00:00 PM,04/01/2022 11:19:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 4 STREET and EAST HOUSTON STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, ESSEX STREET between EAST HOUSTON STREET and STANTON STREET, ESSEX STREET between STANTON STREET and DELANCEY STREET, DELANCEY STREET between LUDLOW STREET and NORFOLK STREET",Manhattan,3,"7, 9",Television,Pilot,United States of America,"10002, 10009"
+636310,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 09:00:00 PM,04/01/2022 08:59:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636309,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 09:00:00 PM,04/01/2022 08:53:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636299,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 08:00:00 PM,04/01/2022 07:23:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+636294,Theater Load in and Load Outs,04/03/2022 05:00:00 AM,04/04/2022 01:00:00 PM,04/01/2022 04:59:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+636292,Theater Load in and Load Outs,04/02/2022 05:45:00 AM,04/03/2022 10:00:00 AM,04/01/2022 04:40:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+636290,Shooting Permit,04/08/2022 06:00:00 AM,04/08/2022 05:00:00 PM,04/01/2022 02:20:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between BROADWAY and 8 AVENUE, WEST 61 STREET between CENTRAL PARK WEST and BROADWAY, BROADWAY between WEST 61 STREET and WEST 62 STREET, BARCLAY STREET between BROADWAY and CHURCH STREET, COLUMBIA HEIGHTS between CRANBERRY STREET and VINE STREET",Manhattan,"1, 2, 4, 5, 64, 7","1, 10, 18, 20, 22, 84",Film,Feature,United States of America,"10001, 10007, 10019, 10023, 10036, 10038, 11201"
+636277,Shooting Permit,04/05/2022 03:00:00 PM,04/05/2022 08:00:00 PM,03/31/2022 09:58:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","51 AVENUE between 25 STREET and 27 STREET, 25 STREET between BORDEN AVENUE and 51 AVENUE, BORDEN AVENUE between 25 STREET and 27 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+636276,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 09:00:00 PM,03/31/2022 09:58:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 ROAD between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 ROAD and 43 AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, VERNON BOULEVARD between 43 ROAD and 44 AVENUE, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+636240,Shooting Permit,04/05/2022 07:30:00 AM,04/05/2022 08:00:00 PM,03/31/2022 05:17:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRESH POND ROAD between 68 AVENUE and 68 ROAD, 68 AVENUE between FRESH POND ROAD and 62 STREET, FRESH POND ROAD between 67 AVENUE and 68 AVENUE, 68 AVENUE between FRESH POND ROAD and 60 LANE, CATALPA AVENUE between FRESH POND ROAD and 62 STREET, FRESH POND ROAD between CATALPA AVENUE and 69 AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST, FRESH POND ROAD between 69 AVENUE and 71 AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+636235,Shooting Permit,04/06/2022 06:30:00 AM,04/06/2022 09:00:00 PM,03/31/2022 05:01:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROBIN ROAD between SAND LANE and ARTHUR AVENUE, SAND LANE between ROBIN ROAD and OCEANSIDE AVENUE, SAND LANE between ROBIN ROAD and CEDAR AVENUE, ROBIN ROAD between ARTHUR AVENUE and MILLS AVENUE, ARTHUR AVENUE between ROBIN ROAD and CEDAR AVENUE",Staten Island,2,122,Television,Episodic series,United States of America,10305
+636233,Shooting Permit,04/05/2022 06:30:00 AM,04/05/2022 10:00:00 PM,03/31/2022 05:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROBIN ROAD between SAND LANE and ARTHUR AVENUE, SAND LANE between ROBIN ROAD and OCEANSIDE AVENUE, SAND LANE between ROBIN ROAD and CEDAR AVENUE, ROBIN ROAD between ARTHUR AVENUE and MILLS AVENUE, ARTHUR AVENUE between ROBIN ROAD and CEDAR AVENUE",Staten Island,2,122,Television,Episodic series,United States of America,10305
+636231,Shooting Permit,04/04/2022 06:00:00 AM,04/04/2022 08:00:00 PM,03/31/2022 04:56:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 33 STREET and EAST 34 STREET, WEST 33 STREET between 5 AVENUE and 6 AVENUE, EAST 33 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Commercial,Commercial,United States of America,"10001, 10016, 10017, 10018, 10118, 10165"
+636227,Shooting Permit,04/10/2022 07:00:00 AM,04/10/2022 10:00:00 PM,03/31/2022 04:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 66 STREET and EAST 67 STREET,Manhattan,8,19,Still Photography,Not Applicable,Canada,10065
+636222,Shooting Permit,04/09/2022 08:00:00 AM,04/09/2022 08:00:00 PM,03/31/2022 04:30:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 66 STREET and EAST 67 STREET,Manhattan,8,19,Still Photography,Not Applicable,Canada,10065
+636218,Shooting Permit,04/06/2022 08:00:00 AM,04/06/2022 10:00:00 PM,03/31/2022 04:23:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636213,Shooting Permit,04/05/2022 06:00:00 AM,04/05/2022 09:00:00 PM,03/31/2022 04:18:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 88 STREET and EAST 85 STREET, 5 AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 89 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,"10028, 10128"
+636211,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 07:00:00 PM,03/31/2022 04:00:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 10 STREET and EAST 9 STREET, EAST 7 STREET between AVENUE A and AVENUE B, 1 AVENUE between EAST 5 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, EAST 4 STREET between 1 AVENUE and AVENUE A, 1 AVENUE between EAST 4 STREET and EAST 3 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, EAST 6 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 7 STREET and EAST 6 STREET, EAST 6 STREET between 1 AVENUE and AVENUE A, EAST 6 STREET between 1 AVENUE and AVENUE A",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+636180,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 10:00:00 PM,03/31/2022 03:20:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+636160,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 08:00:00 PM,03/31/2022 02:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+636148,Shooting Permit,04/05/2022 07:00:00 AM,04/06/2022 01:00:00 AM,03/31/2022 02:14:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 13 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, NORTH 11 STREET between BERRY STREET and WYTHE AVENUE, NORTH 11 STREET between WYTHE AVENUE and KENT AVENUE, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between BERRY STREET and DRIGGS AVENUE, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Television,Pilot,United States of America,"11211, 11249"
+636132,DCAS Prep/Shoot/Wrap Permit,04/03/2022 05:00:00 AM,04/03/2022 04:00:00 PM,03/31/2022 01:50:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, CENTRE STREET between WORTH STREET and HOGAN PLACE, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, READE STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, WALKER STREET between MULBERRY STREET and BROADWAY, LAFAYETTE STREET between WHITE STREET and WALKER STREET, CENTRE STREET between WHITE STREET and WALKER STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,"10007, 10013"
+636118,Shooting Permit,04/05/2022 06:00:00 AM,04/05/2022 08:00:00 PM,03/31/2022 01:33:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 119 STREET and WEST 116 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 115 STREET, WEST 116TH STREET between RIVERSIDE DRIVE and CLAREMONT AVE, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, CLAREMONT AVENUE between WEST 116TH STREET and WEST 119TH STREET, AMSTERDAM AVENUE between LA SALLE STREET and WEST 120 STREET",Manhattan,9,26,Film,Feature,United States of America,"10025, 10027"
+636117,Theater Load in and Load Outs,04/05/2022 12:01:00 AM,04/05/2022 11:59:00 PM,03/31/2022 01:32:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+636099,Theater Load in and Load Outs,04/06/2022 12:01:00 AM,04/07/2022 06:00:00 AM,03/31/2022 01:06:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+636094,Shooting Permit,04/05/2022 10:00:00 AM,04/06/2022 07:00:00 PM,03/31/2022 12:54:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between JEFFERSON STREET and TROUTMAN STREET, TROUTMAN STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, JEFFERSON STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between STARR STREET and SUYDAM STREET, 79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, FURMANVILLE AVENUE between 78 STREET and 79 STREET, JUNIPER VALLEY ROAD between 78 STREET and 79 PLACE, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, JUNIPER BLVD SOUTH between 77 STREET and 80 STREET, 79 STREET between JUNIPER VALLEY ROAD and 66 ROAD",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11379"
+636090,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 07:00:00 PM,03/31/2022 12:48:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 9 STREET and EAST 10 STREET, 4 AVENUE between EAST 12 STREET and EAST 11 STREET, 4 AVENUE between EAST 11 STREET and EAST 10 STREET, BROADWAY between EAST 11 STREET and EAST 10 STREET, BROADWAY between WANAMAKER PLACE and EAST 8 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 12 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+636088,Shooting Permit,04/02/2022 11:00:00 AM,04/02/2022 08:00:00 PM,03/31/2022 12:45:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 96 STREET and EAST 94 STREET,Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10028, 10075, 10128"
+636086,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 10:00:00 PM,03/31/2022 12:42:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636052,Theater Load in and Load Outs,04/07/2022 12:01:00 AM,04/08/2022 04:00:00 AM,03/31/2022 11:18:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET, BROADWAY between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+636050,Shooting Permit,04/08/2022 06:00:00 AM,04/09/2022 02:00:00 AM,03/31/2022 11:16:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, NORMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET, LORIMER STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636040,Shooting Permit,04/05/2022 12:00:00 PM,04/05/2022 08:00:00 PM,03/31/2022 10:39:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+636036,Shooting Permit,04/02/2022 07:00:00 AM,04/02/2022 10:00:00 PM,03/31/2022 10:32:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+636031,Theater Load in and Load Outs,04/01/2022 05:00:00 AM,04/02/2022 05:30:00 AM,03/31/2022 10:20:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+636008,Shooting Permit,04/05/2022 08:30:00 AM,04/05/2022 11:59:00 PM,03/31/2022 09:44:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+636007,Shooting Permit,04/04/2022 07:30:00 AM,04/04/2022 11:00:00 PM,03/31/2022 09:40:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+635997,DCAS Prep/Shoot/Wrap Permit,04/05/2022 01:00:00 PM,04/05/2022 10:00:00 PM,03/31/2022 08:54:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, WORTH STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+635935,Shooting Permit,04/04/2022 06:00:00 AM,04/04/2022 08:00:00 PM,03/30/2022 06:09:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 41 STREET and EAST 40 STREET, EAST 40 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 40 STREET between PARK AVENUE and MADISON AVENUE, EAST 35 STREET between MADISON AVENUE and PARK AVENUE, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 40 STREET and EAST 35 STREET, EAST 39 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017"
+635930,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 07:00:00 PM,03/30/2022 05:54:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between DEAD END and HALLECK STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+635918,Shooting Permit,04/04/2022 09:00:00 AM,04/04/2022 11:59:00 PM,03/30/2022 05:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between MYRTLE AVENUE and PARK AVENUE, MYRTLE AVENUE between VANDERBILT AVENUE and CLINTON AVENUE, VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, VANDERBILT AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE, DEKALB AVENUE between CLINTON AVENUE and VANDERBILT AVENUE, WATER STREET between MAIN STREET and OLD FULTON STREET, FRONT STREET between MAIN STREET and DOCK STREET, VANDERBILT AVENUE between WILLOUGHBY AVENUE and MYRTLE AVENUE",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205"
+635910,Shooting Permit,04/01/2022 07:30:00 AM,04/01/2022 08:30:00 PM,03/30/2022 04:54:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, FRONT STREET between OLD FULTON STREET and DOCK STREET, WATER STREET between NEW DOCK STREET and ADAMS STREET, WASHINGTON STREET between PLYMOUTH STREET and WATER STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+635903,Shooting Permit,04/05/2022 06:00:00 AM,04/06/2022 12:00:00 AM,03/30/2022 04:35:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 35 STREET between STARR AVENUE and BRADLEY AVENUE, 34 ST between BRADLEY AVENUE and VAN DAM STREET, BRADLEY AVENUE between VAN DAM STREET and 35 STREET, BRADLEY AVENUE between 35 STREET and 37 STREET, GREENPOINT AVENUE between STARR AVENUE and BRADLEY AVENUE, STARR AVENUE between 35 STREET and GREENPOINT AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+635888,Shooting Permit,04/04/2022 06:00:00 AM,04/04/2022 11:00:00 PM,03/30/2022 03:52:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635886,Theater Load in and Load Outs,03/31/2022 06:00:00 AM,04/01/2022 01:00:00 PM,03/30/2022 03:49:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+635880,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/09/2022 06:00:00 AM,03/30/2022 03:42:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+635878,Theater Load in and Load Outs,04/07/2022 12:01:00 AM,04/07/2022 11:59:00 PM,03/30/2022 03:40:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+635866,Shooting Permit,04/01/2022 06:00:00 AM,04/02/2022 12:00:00 AM,03/30/2022 03:21:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 46 ROAD between 5 STREET and VERNON BOULEVARD, 5 STREET between 46 AVENUE and 46 ROAD, 46 ROAD between VERNON BOULEVARD and 11 STREET, 47 AVENUE between VERNON BOULEVARD and 11 STREET, 47 ROAD between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 47 AVENUE between 5 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+635822,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 10:00:00 PM,03/30/2022 02:07:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116 STREET between CLAREMONT AVENUE and BROADWAY, WEST 116 STREET between CLAREMONT AVENUE and RIVERSIDE DRIVE, BROADWAY between WEST 116 STREET and WEST 120 STREET, BROADWAY between WEST 116 STREET and WEST 115 STREET, WEST 115 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 102 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 102 STREET and WEST 101 STREET, WEST 101 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, WEST 100 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, MANHATTAN AVENUE between WEST 102 STREET and WEST 101 STREET, MANHATTAN AVENUE between WEST 101 STREET and WEST 100 STREET, WEST 100 STREET between COLUMBUS AVENUE and MANHATTAN AVENUE, WEST 112 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 115 STREET and WEST 114 STREET, WEST 114 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 114 STREET and WEST 113 STREET",Manhattan,"64, 7, 9","22, 24, 26",Television,Episodic series,United States of America,"10025, 10027"
+635810,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 09:00:00 PM,03/30/2022 01:38:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 8 AVENUE and BROADWAY, PARK AVENUE between EAST 41 STREET and EAST 39 STREET, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 39 STREET and EAST 36 STREET",Manhattan,"5, 6","14, 17, 18",Television,Cable-episodic,United States of America,"10016, 10017, 10036"
+635807,Shooting Permit,04/02/2022 08:00:00 AM,04/02/2022 08:00:00 PM,03/30/2022 01:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",COYLE STREET between AVENUE Z and VOORHIES AVENUE,Brooklyn,15,61,Television,Reality,United States of America,11235
+635808,Shooting Permit,04/03/2022 06:00:00 AM,04/03/2022 08:00:00 PM,03/30/2022 01:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",COYLE STREET between AVENUE Z and VOORHIES AVENUE,Brooklyn,15,61,Television,Reality,United States of America,11235
+635783,Shooting Permit,04/01/2022 03:00:00 PM,04/02/2022 04:00:00 AM,03/30/2022 01:00:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 4 STREET between GROVE STREET and BARROW STREET, WEST WASHINGTON PLACE between BARROW STREET and GROVE STREET, MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET",Manhattan,"2, 5","13, 6",Film,Feature,United States of America,"10010, 10014"
+635770,Shooting Permit,04/01/2022 10:00:00 AM,04/01/2022 11:00:00 PM,03/30/2022 12:27:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+635758,Shooting Permit,04/01/2022 07:00:00 AM,04/01/2022 11:00:00 PM,03/30/2022 12:13:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635747,Shooting Permit,04/06/2022 06:00:00 PM,04/07/2022 06:00:00 AM,03/30/2022 11:59:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and BROADWAY, EAST 39 STREET between MADISON AVENUE and 5 AVENUE, WEST 39 STREET between 7 AVENUE and 5 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 43 STREET between BROADWAY and 6 AVENUE, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10017, 10018, 10036"
+635746,Theater Load in and Load Outs,04/06/2022 12:01:00 AM,04/10/2022 06:00:00 AM,03/30/2022 11:58:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+635738,Shooting Permit,04/06/2022 05:00:00 AM,04/06/2022 11:59:00 PM,03/30/2022 11:50:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 54 STREET and EAST 55 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10022"
+635709,Shooting Permit,04/01/2022 11:00:00 AM,04/02/2022 01:00:00 AM,03/30/2022 10:44:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","FREDERICK DOUGLASS BOULEVARD between WEST 115 STREET and WEST 116 STREET, MORNINGSIDE AVENUE between WEST 115 STREET and WEST 114 STREET, WEST 114 STREET between FREDERICK DOUGLASS BOULEVARD and MANHATTAN AVENUE, MANHATTAN AVENUE between WEST 114 STREET and WEST 115 STREET, MANHATTAN AVENUE between WEST 114 STREET and WEST 113 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 111 STREET and WEST 112 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 112 STREET and WEST 113 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 113 STREET and WEST 114 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 114 STREET and WEST 115 STREET, WEST 113 STREET between MANHATTAN AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 115 STREET between MANHATTAN AVENUE and MORNINGSIDE AVENUE, FREDERICK DOUGLASS BOULEVARD between WEST 116 STREET and WEST 117 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 117 STREET and WEST 118 STREET, WEST 116TH STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,10026
+635701,Shooting Permit,04/06/2022 06:00:00 AM,04/06/2022 08:00:00 PM,03/30/2022 10:27:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+635690,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 05:00:00 PM,03/30/2022 10:02:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET, FLUSHING AVENUE between CENTRAL AVENUE and FORREST STREET, BOERUM STREET between LORIMER STREET and LEONARD STREET, LEONARD STREET between BOERUM STREET and MONTROSE AVENUE, MONTROSE AVENUE between LORIMER STREET and LEONARD STREET",Brooklyn,"1, 4","83, 90",Television,Cable-episodic,United States of America,11206
+635688,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 09:00:00 PM,03/30/2022 10:01:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between JOHNSON AVENUE and BOERUM STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+635686,Shooting Permit,04/05/2022 06:00:00 AM,04/05/2022 08:00:00 PM,03/30/2022 09:54:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+635685,Shooting Permit,04/04/2022 06:00:00 AM,04/04/2022 08:00:00 PM,03/30/2022 09:53:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+635680,Shooting Permit,03/31/2022 06:00:00 AM,03/31/2022 09:00:00 PM,03/30/2022 09:39:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 STREET and 51 STREET, 50 STREET between SKILLMAN AVENUE and 43 AVENUE, QUEENS BOULEVARD between 51 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 47 AVENUE, 43 AVENUE between 46 STREET and 48 STREET, 47 STREET between 43 AVENUE and QUEENS BOULEVARD, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104, 11377"
+635670,Shooting Permit,04/01/2022 06:30:00 AM,04/01/2022 11:00:00 PM,03/30/2022 09:14:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","36 STREET between BROADWAY and PARK AVENUE, WEST 37 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,10018
+635667,Shooting Permit,03/31/2022 08:00:00 AM,03/31/2022 11:00:00 PM,03/30/2022 09:05:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635666,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 09:00:00 PM,03/30/2022 08:59:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and COOK STREET, MOORE STREET between WHITE STREET and BUSHWICK AVENUE, VARET STREET between WHITE STREET and BUSHWICK AVENUE, VARET STREET between WHITE STREET and BOGART STREET, BUSHWICK AVENUE between FLUSHING AVENUE and ARION PLACE",Brooklyn,"1, 4","83, 90, 94",Television,Pilot,United States of America,"11206, 11222"
+635651,Shooting Permit,04/09/2022 12:00:00 AM,04/11/2022 11:59:00 PM,03/30/2022 03:29:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",VARICK STREET between BEACH STREET and LAIGHT STREET,Manhattan,1,1,Television,Special/Awards Show,United States of America,10013
+635623,Shooting Permit,04/02/2022 07:00:00 AM,04/02/2022 08:00:00 PM,03/29/2022 08:18:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and FT GREENE PLACE, COURT STREET between JORALEMON STREET and STATE STREET",Brooklyn,2,"84, 88",Commercial,Commercial,United States of America,"11201, 11217"
+635619,Shooting Permit,04/01/2022 01:00:00 AM,04/01/2022 08:00:00 PM,03/29/2022 07:48:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST. EDWARDS STREET between MYRTLE AVENUE and WILLOUGHBY STREET, DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH OXFORD STREET",Brooklyn,2,88,Commercial,Commercial,United States of America,"11201, 11217"
+635606,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 09:00:00 PM,03/29/2022 06:29:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 51 STREET and WEST 49 STREET, WEST 50 STREET between BROADWAY and 8 AVENUE, WEST 49 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 52 STREET and WEST 51 STREET, 8 AVENUE between WEST 50 STREET and WEST 51 STREET, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 51 STREET between 8 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,"10019, 10036"
+635578,Shooting Permit,04/01/2022 08:00:00 AM,04/01/2022 11:00:00 PM,03/29/2022 04:24:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635568,Shooting Permit,03/30/2022 05:00:00 AM,03/30/2022 09:00:00 AM,03/29/2022 03:59:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+635562,Shooting Permit,04/01/2022 11:00:00 AM,04/01/2022 11:00:00 PM,03/29/2022 03:52:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMERFIELD STREET between FOREST AVENUE and SENECA AVENUE, FOREST AVENUE between NORMAN STREET and DECATUR STREET, SENECA AVENUE between SUMMERFIELD STREET and DECATUR STREET, SENECA AVENUE between STEPHEN STREET and SUMMERFIELD STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+635552,Shooting Permit,04/05/2022 11:00:00 AM,04/05/2022 11:00:00 PM,03/29/2022 03:10:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+635550,Shooting Permit,04/01/2022 08:00:00 AM,04/01/2022 11:00:00 PM,03/29/2022 03:06:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635542,Theater Load in and Load Outs,04/05/2022 12:01:00 AM,04/07/2022 06:00:00 AM,03/29/2022 02:50:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+635532,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 03:00:00 PM,03/29/2022 02:29:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 24 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+635531,Shooting Permit,03/31/2022 11:30:00 AM,04/01/2022 01:30:00 AM,03/29/2022 02:27:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, 7 AVENUE between WEST 53 STREET and WEST 54 STREET, WEST 54 STREET between 7 AVENUE and BROADWAY, BROADWAY between WEST 53 STREET and WEST 54 STREET, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 7 AVENUE and 6 AVENUE",Bronx,"1, 5","18, 40",Television,Episodic series,United States of America,"10019, 10020, 10454"
+635527,Shooting Permit,03/31/2022 06:00:00 AM,03/31/2022 07:30:00 PM,03/29/2022 02:17:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+635521,Shooting Permit,03/31/2022 07:00:00 AM,03/31/2022 10:00:00 PM,03/29/2022 02:09:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, NORTH 9 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 8 STREET and NORTH 9 STREET, WYTHE AVENUE between NORTH 9 STREET and NORTH 10 STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET",Queens,"1, 2","108, 94",Television,Cable-episodic,United States of America,"11101, 11249"
+635499,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 10:00:00 PM,03/29/2022 01:16:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+635497,Shooting Permit,04/11/2022 06:00:00 AM,04/11/2022 10:00:00 PM,03/29/2022 01:13:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","42 STREET between 3 AVENUE and 4 AVENUE, 57 STREET between 5 AVENUE and 6 AVENUE",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+635481,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 01:00:00 PM,03/29/2022 12:20:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 54 AVENUE and 56 AVENUE,Queens,2,108,Commercial,Commercial,United States of America,11101
+635473,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 09:00:00 PM,03/29/2022 12:02:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+635467,Shooting Permit,04/05/2022 06:00:00 AM,04/05/2022 10:00:00 PM,03/29/2022 11:54:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+635464,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 09:00:00 PM,03/29/2022 11:53:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+635463,Shooting Permit,04/04/2022 06:00:00 AM,04/04/2022 10:00:00 PM,03/29/2022 11:52:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+635423,Theater Load in and Load Outs,04/01/2022 12:01:00 AM,04/02/2022 06:00:00 AM,03/29/2022 10:42:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+635416,Shooting Permit,03/31/2022 09:30:00 AM,03/31/2022 11:00:00 PM,03/29/2022 10:28:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+635411,Shooting Permit,04/01/2022 10:00:00 AM,04/02/2022 02:00:00 AM,03/29/2022 10:20:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+635406,Theater Load in and Load Outs,04/05/2022 12:01:00 AM,04/05/2022 11:59:00 PM,03/29/2022 09:59:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+635401,Shooting Permit,04/01/2022 07:00:00 AM,04/01/2022 10:00:00 PM,03/29/2022 09:31:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between GRAND AVENUE and DOWNING STREET, GRAND AVENUE between GATES AVENUE and PUTNAM AVENUE, PUTNAM AVENUE between GRAND AVENUE and DOWNING STREET, FULTON STREET between DOWNING STREET and CLASSON AVENUE, FULTON STREET between CLASSON AVENUE and CLAVER PLACE, FULTON STREET between CLAVER PLACE and FRANKLIN AVENUE, MADISON STREET between RUTGERS STREET and PIKE STREET, PIKE STREET between MADISON STREET and SOUTH STREET, CHERRY STREET between PIKE STREET and RUTGERS SLIP, RUTGERS SLIP between CHERRY STREET and SOUTH STREET, SOUTH STREET between RUTGERS SLIP and PIKE STREET",Brooklyn,"2, 3","7, 79, 88",Television,Pilot,United States of America,"10002, 11238"
+635395,Shooting Permit,03/31/2022 07:00:00 AM,03/31/2022 07:00:00 PM,03/29/2022 09:05:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and FT GREENE PLACE,Brooklyn,2,88,Commercial,Commercial,United States of America,11217
+635346,Shooting Permit,04/02/2022 08:00:00 AM,04/02/2022 06:00:00 PM,03/28/2022 08:39:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Made for TV/mini-series,United States of America,10018
+635344,Shooting Permit,04/01/2022 05:00:00 PM,04/01/2022 11:00:00 PM,03/28/2022 08:36:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Made for TV/mini-series,United States of America,10018
+635329,Shooting Permit,03/31/2022 10:00:00 AM,03/31/2022 10:00:00 PM,03/28/2022 07:05:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","15 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between 16 STREET and WINDSOR PLACE, 16 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 14 STREET and 16 STREET, PROSPECT PARK SOUTHWEST between PROSPECT PARK WEST and 11 AVENUE, PROSPECT AVENUE between HOWARD PLACE and PROSPECT PARK WEST",Brooklyn,"55, 6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+635325,Shooting Permit,03/30/2022 07:00:00 AM,03/31/2022 12:00:00 AM,03/28/2022 06:23:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between PARK AVENUE and 5 AVENUE, MADISON AVENUE between EAST 52 STREET and EAST 53 STREET, MADISON AVENUE between EAST 51 STREET and EAST 52 STREET, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, EAST 76 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 74 STREET and EAST 79 STREET, PARK AVENUE between EAST 74 STREET and EAST 81 STREET",Manhattan,"5, 64, 8","14, 18, 19, 22",Television,Episodic series,United States of America,"10017, 10021, 10022, 10028, 10036, 10075"
+635304,Theater Load in and Load Outs,04/07/2022 12:01:00 AM,04/07/2022 11:59:00 PM,03/28/2022 05:08:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+635300,Shooting Permit,04/06/2022 01:00:00 PM,04/07/2022 01:00:00 AM,03/28/2022 05:03:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+635293,Shooting Permit,03/31/2022 10:00:00 AM,04/01/2022 01:00:00 AM,03/28/2022 04:53:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between BANK STREET and EAST 105 STREET, FOSTER AVENUE between EAST 105 STREET and EAST 101 STREET, 105 ST between DEAD END and FARRAGUT RD, EAST 105 STREET between AVENUE D and FOSTER AVENUE",Brooklyn,18,69,Television,Episodic series,United States of America,11236
+635290,Shooting Permit,04/05/2022 07:00:00 AM,04/05/2022 10:00:00 PM,03/28/2022 04:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635288,Shooting Permit,04/01/2022 12:00:00 PM,04/02/2022 02:00:00 AM,03/28/2022 04:44:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIPER BOULEVARD NORTH between DRY HARBOR ROAD and 80 STREET, 80 STREET between JUNIPER BOULEVARD SOUTH and JUNIPER BOULEVARD NORTH, JUNIPER BOULEVARD SOUTH between DRY HARBOR ROAD and 80 STREET, MAURICE AVENUE between 53 DRIVE and TYLER AVENUE, 65 PLACE between 53 DRIVE and 53 AVENUE, 53 DRIVE between 65 PLACE and 66 STREET, 66 STREET between 53 DRIVE and 53 AVENUE, 53 DRIVE between 66 STREET and 67 STREET",Queens,"2, 5","104, 108",Television,Cable-episodic,United States of America,"11378, 11379"
+635251,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 07:00:00 PM,03/28/2022 03:49:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",FULTON STREET between SOUTH PORTLAND AVENUE and FT GREENE PLACE,Brooklyn,2,"84, 88",Commercial,Commercial,United States of America,"11201, 11217"
+635238,Shooting Permit,03/31/2022 10:00:00 AM,04/01/2022 02:00:00 AM,03/28/2022 03:29:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 36 STREET and WEST 40 STREET, WEST 40 STREET between 8 AVENUE and 9 AVENUE, WEST 48 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 47 STREET and WEST 49 STREET, WEST 45 STREET between 9 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,"10018, 10019, 10036"
+635230,Shooting Permit,03/31/2022 08:00:00 AM,03/31/2022 11:00:00 PM,03/28/2022 03:16:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between RUSSELL STREET and NORTH HENRY STREET, NASSAU AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635198,Theater Load in and Load Outs,04/03/2022 07:00:00 AM,04/03/2022 08:00:00 PM,03/28/2022 02:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+635193,Theater Load in and Load Outs,04/05/2022 12:01:00 AM,04/05/2022 11:59:00 PM,03/28/2022 02:18:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 34 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+635192,Theater Load in and Load Outs,04/06/2022 12:01:00 AM,04/08/2022 06:00:00 AM,03/28/2022 02:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+635187,Theater Load in and Load Outs,04/02/2022 12:01:00 AM,04/04/2022 11:59:00 PM,03/28/2022 02:12:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+635157,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 09:00:00 PM,03/28/2022 01:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST END AVENUE between EAST 86 STREET and EAST 88 STREET, EAST END AVENUE between EAST 84 STREET and EAST 86 STREET, EAST 86 STREET between EAST END AVENUE and YORK AVENUE, PARK AVENUE between EAST 50 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6, 8","17, 18, 19",Television,Episodic series,United States of America,"10022, 10028, 10128, 10152"
+635152,Theater Load in and Load Outs,04/04/2022 12:01:00 AM,04/04/2022 11:59:00 PM,03/28/2022 01:09:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+635149,Shooting Permit,04/01/2022 12:00:00 PM,04/02/2022 02:00:00 AM,03/28/2022 01:04:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+635141,Shooting Permit,03/29/2022 10:00:00 AM,03/30/2022 12:30:00 AM,03/28/2022 12:46:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 27 STREET and EAST 26 STREET, 2 AVENUE between EAST 29 STREET and EAST 26 STREET, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between MT CARMEL PLACE and 1 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, PARK AVENUE SOUTH between EAST 29 STREET and EAST 27 STREET, EAST 28 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+635139,Shooting Permit,03/31/2022 09:00:00 AM,03/31/2022 11:00:00 PM,03/28/2022 12:40:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 27 STREET and WEST 24 STREET, WEST 25 STREET between 7 AVENUE and 6 AVENUE, WEST 25 STREET between 6 AVENUE and 5 AVENUE, WEST 24 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 24 STREET and WEST 23 STREET",Manhattan,"4, 5",13,Television,Episodic series,United States of America,"10001, 10010, 10011"
+635132,Shooting Permit,03/31/2022 01:00:00 PM,04/01/2022 03:00:00 AM,03/28/2022 12:28:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+635119,Theater Load in and Load Outs,04/04/2022 12:01:00 AM,04/05/2022 06:00:00 AM,03/28/2022 12:13:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+635113,Shooting Permit,04/01/2022 07:00:00 AM,04/01/2022 10:00:00 PM,03/28/2022 12:07:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 36 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+635106,Shooting Permit,03/30/2022 06:00:00 AM,03/30/2022 10:00:00 PM,03/28/2022 11:57:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","YORK STREET between ST JOHNS LANE and 6 AVENUE, HUDSON STREET between DUANE STREET and THOMAS STREET, HUDSON STREET between THOMAS STREET and JAY STREET, DUANE STREET between STAPLE STREET and HUDSON STREET, HARRISON STREET between STAPLE STREET and GREENWICH STREET, HUDSON STREET between JAY STREET and HARRISON STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, HARRISON STREET between STAPLE STREET and GREENWICH STREET, HUDSON STREET between LEONARD STREET and WORTH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+635100,Theater Load in and Load Outs,04/08/2022 12:01:00 AM,04/08/2022 11:59:00 PM,03/28/2022 11:42:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+635098,Shooting Permit,04/01/2022 04:00:00 PM,04/02/2022 06:00:00 AM,03/28/2022 11:38:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 49 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 49 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+635097,Shooting Permit,03/31/2022 11:00:00 AM,04/01/2022 01:00:00 AM,03/28/2022 11:38:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 49 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 49 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+635090,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 10:00:00 PM,03/28/2022 11:26:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+635083,Shooting Permit,03/30/2022 09:30:00 AM,03/30/2022 11:00:00 PM,03/28/2022 11:17:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+635081,Theater Load in and Load Outs,04/07/2022 12:01:00 AM,04/14/2022 11:59:00 PM,03/28/2022 11:17:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+635071,Shooting Permit,04/04/2022 07:00:00 AM,04/04/2022 10:00:00 PM,03/28/2022 11:02:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and WALKER STREET, WALKER STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between CENTRE STREET and BAXTER STREET, CENTRE STREET between WORTH STREET and WALKER STREET, WHITE STREET between CENTRE STREET and BAXTER STREET, BAXTER STREET between WHITE STREET and BAYARD STREET, CENTRE STREET between CANAL STREET and HESTER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET",Manhattan,"1, 2, 3",5,Television,Episodic series,United States of America,10013
+635061,Shooting Permit,03/30/2022 11:00:00 AM,03/31/2022 02:00:00 AM,03/28/2022 10:40:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+635053,Shooting Permit,03/31/2022 07:00:00 AM,03/31/2022 11:00:00 PM,03/28/2022 10:24:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 11 AVENUE and 10 AVENUE, WEST 42 STREET between 12 AVENUE and 10 AVENUE, 10 AVENUE between WEST 41 STREET and WEST 43 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10011, 10036"
+635052,Theater Load in and Load Outs,04/02/2022 12:01:00 AM,04/03/2022 06:00:00 AM,03/28/2022 10:20:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+635043,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 08:00:00 PM,03/28/2022 09:49:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLEVELAND STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LIVONIA AVENUE between WARWICK STREET and ASHFORD STREET, LIVONIA AVENUE between ASHFORD STREET and CLEVELAND STREET, CLEVELAND STREET between NEW LOTS AVENUE and DUMONT AVENUE, ASHFORD STREET between NEW LOTS AVENUE and DUMONT AVEVENUE, NEW LOTS AVENUE between JEROME STREET and ASHFORD STREET, NEW LOTS AVENUE between ELTON STREET and ESSEX STREET, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, FOUNTAIN AVENUE between VANDALIA AVENUE and SEAVIEW AVENUE",Brooklyn,5,75,Television,Pilot,United States of America,"11207, 11208, 11239"
+635040,Theater Load in and Load Outs,04/01/2022 12:01:00 AM,04/03/2022 06:00:00 AM,03/28/2022 09:39:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+635038,Shooting Permit,04/01/2022 08:00:00 AM,04/01/2022 10:00:00 PM,03/28/2022 09:31:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+635022,Theater Load in and Load Outs,04/01/2022 12:01:00 AM,04/01/2022 11:59:00 PM,03/28/2022 08:14:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+635018,Theater Load in and Load Outs,04/01/2022 12:01:00 AM,04/02/2022 06:00:00 AM,03/28/2022 08:03:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+634785,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 09:00:00 PM,03/25/2022 04:45:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","51 AVENUE between CENTER BOULEVARD and 2 STREET, 51 AVENUE between 2 STREET and 5 STREET, 5 STREET between 51 AVENUE and BORDEN AVENUE, BORDEN AVENUE between 5 STREET and VERNON BOULEVARD, NASSAU AVENUE between HUMBOLDT STREET and RUSSELL STREET, RUSSELL STREET between NORMAN AVENUE and NASSAU AVENUE, RUSSELL STREET between NASSAU AVENUE and DRIGGS AVENUE, SUTTON STREET between NASSAU AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+634765,Shooting Permit,03/30/2022 11:00:00 AM,03/30/2022 11:00:00 PM,03/25/2022 03:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET,Brooklyn,1,94,Commercial,Promo,United States of America,11211
+634731,Shooting Permit,03/31/2022 07:00:00 AM,03/31/2022 07:00:00 PM,03/25/2022 02:15:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEONARD STREET between CALYER STREET and MESEROLE STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+634725,Shooting Permit,03/29/2022 02:00:00 AM,03/29/2022 08:00:00 PM,03/25/2022 01:59:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MALCOLM X BOULEVARD between WEST 120 STREET and WEST 122 STREET, MOUNT MORRIS PARK WEST between WEST 120 STREET and WEST 123 STREET, W 119TH ST between ADAM CLAYTON BLVD and MALCOLM X BLVD, MALCOLM X BOULEVARD between WEST 118 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 117 STREET and WEST 119 STREET, W 116TH ST between ADAM CLAYTON BLVD and 5TH AVE",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027, 10029"
+634717,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 08:00:00 PM,03/25/2022 01:25:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 109 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,11,23,Still Photography,Not Applicable,United States of America,10029
+634715,Shooting Permit,03/31/2022 05:00:00 AM,03/31/2022 06:00:00 PM,03/25/2022 01:18:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+634712,Shooting Permit,04/07/2022 06:00:00 AM,04/07/2022 11:00:00 PM,03/25/2022 01:15:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between BROOME STREET and GRAND STREET, BROADWAY between GRAND STREET and HOWARD STREET, GRAND STREET between BROADWAY and MERCER STREET, BROADWAY between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Commercial,Commercial,United States of America,10013
+634710,Shooting Permit,03/29/2022 05:00:00 AM,03/29/2022 06:00:00 PM,03/25/2022 01:14:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+634705,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 10:00:00 PM,03/25/2022 01:03:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT ST between NORMAN AVENUE and NASSAU AVENUE, RUSSELL STREET between NORMAN AVENUE and NASSAU AVENUE, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MCGUINNESS BOULEVARD and DIAMOND STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634697,Shooting Permit,03/31/2022 08:00:00 AM,03/31/2022 11:00:00 PM,03/25/2022 12:55:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634696,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 10:00:00 PM,03/25/2022 12:55:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",PUTNAM AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+634694,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 10:00:00 PM,03/25/2022 12:51:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634693,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 10:00:00 PM,03/25/2022 12:48:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Made for TV/mini-series,United States of America,10018
+634692,Shooting Permit,04/01/2022 10:00:00 AM,04/02/2022 03:00:00 AM,03/25/2022 12:46:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, 43 AVENUE between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+634691,Shooting Permit,03/29/2022 08:00:00 AM,03/29/2022 10:00:00 PM,03/25/2022 12:44:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Made for TV/mini-series,United States of America,10018
+634688,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 08:00:00 PM,03/25/2022 12:34:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+634682,Shooting Permit,04/01/2022 06:00:00 AM,04/01/2022 10:00:00 PM,03/25/2022 12:08:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 45 AVENUE and 45 ROAD, VERNON BOULEVARD between 45 ROAD and 46 AVENUE",Queens,2,108,WEB,Not Applicable,United States of America,11101
+634658,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 10:00:00 PM,03/25/2022 11:09:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and WATER STREET, PEARL STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between WATER STREET and FRONT STREET, WATER STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between PEARL STREET and WATER STREET, MAIDEN LANE between GOLD STREET and PEARL STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038, 10045"
+634657,Shooting Permit,03/29/2022 09:00:00 AM,03/30/2022 01:00:00 AM,03/25/2022 11:09:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 89 STREET and EAST 92 STREET, EAST 93 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 92 STREET and EAST 95 STREET, EAST 94 STREET between 5 AVENUE and MADISON AVENUE, EAST 90 STREET between 5 AVENUE and MADISON AVENUE, EAST 93 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 87 STREET and EAST 90 STREET, EAST 90 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10128
+634656,Shooting Permit,03/29/2022 12:00:00 PM,03/30/2022 03:00:00 AM,03/25/2022 11:06:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","OLIVER STREET between HENRY STREET and ST JAMES PLACE, EAST BROADWAY between CATHERINE STREET and MARKET STREET, CATHERINE STREET between EAST BROADWAY and HENRY STREET, MADISON STREET between ST JAMES PLACE and JAMES STREET, MADISON STREET between JAMES STREET and OLIVER STREET, ST JAMES PLACE between MADISON STREET and JAMES STREET, ST JAMES PLACE between JAMES STREET and OLIVER STREET, CHATHAM SQUARE between MOTT STREET and DOYERS STREET, BOWERY between PELL STREET and BAYARD STREET, MARKET STREET between EAST BROADWAY and HENRY STREET, HENRY STREET between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and FORSYTH STREET, EAST BROADWAY between ELDRIDGE STREET and PIKE STREET, SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between WATER STREET and SOUTH STREET, HENRY STREET between OLIVER STREET and CATHERINE STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10002, 10004, 10013, 10038"
+634655,Shooting Permit,03/31/2022 07:00:00 AM,03/31/2022 10:00:00 PM,03/25/2022 11:02:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+634654,Shooting Permit,03/30/2022 09:00:00 AM,03/30/2022 04:00:00 PM,03/25/2022 11:01:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, READE STREET between LAFAYETTE STREET and ELK STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+634642,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 09:00:00 PM,03/25/2022 10:29:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between KENILWORTH AVENUE and WOODROW ROAD,Staten Island,3,123,Television,Episodic series,United States of America,10312
+634641,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 09:00:00 PM,03/25/2022 10:29:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between KENILWORTH AVENUE and WOODROW ROAD,Staten Island,3,123,Television,Episodic series,United States of America,10312
+634637,Shooting Permit,03/31/2022 11:00:00 AM,04/01/2022 04:00:00 AM,03/25/2022 10:18:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between MYRTLE AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11251"
+634636,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 09:00:00 PM,03/25/2022 10:18:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634606,Shooting Permit,03/30/2022 09:00:00 AM,03/30/2022 11:00:00 PM,03/25/2022 08:44:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634570,Shooting Permit,03/31/2022 12:00:00 AM,03/31/2022 09:00:00 PM,03/24/2022 07:44:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","VETERANS ROAD EAST between SHARROTTS ROAD and WOODROW ROAD, WOODROW ROAD between VETERANS ROAD WEST and VETERANS ROAD EAST, VETERANS ROAD WEST between SHARROTTS ROAD and WOODROW ROAD",Staten Island,3,123,Television,Episodic series,United States of America,10309
+634563,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 07:00:00 PM,03/24/2022 07:21:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","VETERANS ROAD EAST between SHARROTTS ROAD and WOODROW ROAD, WOODROW ROAD between VETERANS ROAD WEST and VETERANS ROAD EAST",Staten Island,3,123,Television,Episodic series,United States of America,10309
+634559,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 08:00:00 PM,03/24/2022 07:00:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEW LOTS AVENUE between ELTON STREET and ESSEX STREET, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, FOUNTAIN AVENUE between VANDALIA AVENUE and SEAVIEW AVENUE, ELTON STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, CLEVELAND STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LIVONIA AVENUE between WARWICK STREET and ASHFORD STREET, LIVONIA AVENUE between ASHFORD STREET and CLEVELAND STREET, CLEVELAND STREET between NEW LOTS AVENUE and DUMONT AVENUE",Brooklyn,5,75,Television,Pilot,United States of America,"11207, 11208, 11239"
+634509,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 10:00:00 PM,03/24/2022 03:39:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTER AVENUE between ALABAMA AVENUE and SHEFFIELD AVENUE, ALABAMA AVENUE between PITKIN AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE, BELMONT AVENUE between ALABAMA AVENUE and SHEFFIELD AVENUE, GEORGIA AVENUE between BELMONT AVENUE and LIBERTY AVENUE, PITKIN AVENUE between ALABAMA AVENUE and GEORGIA AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+634500,Shooting Permit,03/29/2022 08:00:00 AM,03/29/2022 08:00:00 PM,03/24/2022 03:23:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between BARNELL STREET and VAN BRUNT STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+634485,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 07:00:00 PM,03/24/2022 02:46:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 23 STREET and EAST 22 STREET, WEST 24 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 25 STREET",Manhattan,5,13,Commercial,Commercial,United States of America,10010
+634469,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 11:59:00 PM,03/24/2022 02:18:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTHERN BOULEVARD between MORGAN STREET and GLENWOOD STREET, GLENWOOD STREET between NORTHERN BOULEVARD and 41 DRIVE, MORGAN STREET between NORTHERN BOULEVARD and 41 DRIVE, NORTHERN BOULEVARD between MORGAN STREET and JESSE COURT, ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, WESTMORELAND STREET between NORTHERN BOULEVARD and 43 AVENUE",Queens,11,111,Television,Episodic series,United States of America,"11362, 11363"
+634458,Shooting Permit,03/27/2022 07:00:00 AM,03/27/2022 08:00:00 PM,03/24/2022 01:48:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATCHEN AVENUE between MADISON STREET and MONROE STREET, MYRTLE AVENUE between CEDAR STREET and HART STREET, MADISON STREET between PATCHEN AVENUE and RALPH AVENUE",Brooklyn,"3, 4","81, 83",Commercial,Commercial,United States of America,11221
+634440,Shooting Permit,03/31/2022 06:00:00 AM,03/31/2022 11:30:00 PM,03/24/2022 01:02:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634433,Theater Load in and Load Outs,03/25/2022 06:00:00 AM,03/26/2022 11:00:00 PM,03/24/2022 12:49:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+634404,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 10:00:00 PM,03/24/2022 11:38:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","SAINT NICHOLAS AVENUE between WEST 174 STREET and WEST 181 STREET, BROADWAY between WEST 174 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 174 STREET and WEST 176 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WEST 176 STREET between BROADWAY and FORT WASHINGTON AVENUE, WEST 181 STREET between FORT WASHINGTON AVENUE and MAGAW PLACE, FORT WASHINGTON AVENUE between WEST 179 STREET and WEST 180 STREET",Manhattan,12,"33, 34",Television,Episodic series,United States of America,10033
+634400,Shooting Permit,04/03/2022 06:00:00 AM,04/03/2022 10:00:00 PM,03/24/2022 11:29:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+634395,Shooting Permit,03/26/2022 07:00:00 AM,03/26/2022 08:00:00 PM,03/24/2022 11:15:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 47 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,"14, 18",Commercial,Commercial,United States of America,10036
+634380,Theater Load in and Load Outs,03/25/2022 01:00:00 AM,03/27/2022 04:00:00 AM,03/24/2022 10:46:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+634379,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 10:00:00 PM,03/24/2022 10:43:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634376,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 10:00:00 PM,03/24/2022 10:38:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634360,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 10:00:00 PM,03/24/2022 09:45:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+634358,Shooting Permit,03/29/2022 09:00:00 AM,03/29/2022 11:00:00 PM,03/24/2022 09:40:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and BEDFORD AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634355,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 07:00:00 PM,03/24/2022 09:31:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",23 STREET between 38 AVENUE and 37 AVENUE,Queens,"1, 2","108, 114",Still Photography,Not Applicable,United States of America,"11101, 11106"
+634340,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 10:00:00 PM,03/24/2022 08:56:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+634337,Shooting Permit,03/28/2022 06:30:00 AM,03/28/2022 08:30:00 PM,03/24/2022 08:50:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET, COURT STREET between PIERREPONT STREET and JORALEMON STREET, FURMAN STREET between PINEAPPLE STREET and PIERREPONT STREET",Brooklyn,2,84,Television,Pilot,United States of America,11201
+634327,Shooting Permit,03/30/2022 06:00:00 AM,03/30/2022 11:00:00 PM,03/24/2022 08:21:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 71 STREET and EAST 73 STREET, MADISON AVENUE between EAST 70 STREET and EAST 72 STREET, EAST 71 STREET between 5 AVENUE and MADISON AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10021
+634295,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 11:00:00 PM,03/23/2022 08:01:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","29 STREET between 38 AVENUE and 39 AVENUE, 39 AVENUE between 28 STREET and 29 STREET, 29 STREET between 39 AVENUE and 40 AVENUE, 39 AVENUE between 30 STREET and 31 STREET, 31 STREET between 39 AVENUE and 40 AVENUE, 30 STREET between 39 AVENUE and 40 AVENUE, 40 st between 50 AVENUE and BORDEN AVE, BORDEN AVE between 39 PLAVE and 42 STREET, 27 STREET between 39 AVENUE and 40 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11104"
+634288,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 06:00:00 PM,03/23/2022 07:19:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 5 AVENUE and MADISON AVENUE, EAST 41 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Commercial,Commercial,United States of America,"10016, 10017, 10018"
+634279,Theater Load in and Load Outs,04/02/2022 12:01:00 AM,04/04/2022 06:00:00 AM,03/23/2022 06:21:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+634272,Shooting Permit,05/08/2022 06:00:00 AM,05/08/2022 11:59:00 PM,03/23/2022 05:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634273,Shooting Permit,05/09/2022 06:00:00 AM,05/09/2022 11:59:00 PM,03/23/2022 05:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634274,Shooting Permit,05/10/2022 06:00:00 AM,05/10/2022 11:59:00 PM,03/23/2022 05:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634268,Shooting Permit,05/04/2022 06:00:00 AM,05/04/2022 11:59:00 PM,03/23/2022 05:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634269,Shooting Permit,05/05/2022 06:00:00 AM,05/05/2022 11:59:00 PM,03/23/2022 05:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634270,Shooting Permit,05/06/2022 06:00:00 AM,05/06/2022 11:59:00 PM,03/23/2022 05:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634271,Shooting Permit,05/07/2022 06:00:00 AM,05/07/2022 11:59:00 PM,03/23/2022 05:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+634260,Shooting Permit,04/10/2022 10:00:00 AM,04/10/2022 08:00:00 PM,03/23/2022 05:27:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,10019
+634258,Shooting Permit,04/09/2022 10:00:00 AM,04/09/2022 07:00:00 PM,03/23/2022 05:23:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,10019
+634256,Shooting Permit,04/08/2022 10:00:00 AM,04/08/2022 08:00:00 PM,03/23/2022 05:18:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,10019
+634254,Shooting Permit,04/07/2022 10:00:00 AM,04/07/2022 07:00:00 PM,03/23/2022 05:14:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,10019
+634239,Shooting Permit,03/28/2022 09:00:00 AM,03/28/2022 11:59:00 PM,03/23/2022 04:38:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+634236,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 08:00:00 PM,03/23/2022 04:28:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10001
+634201,Shooting Permit,03/30/2022 07:00:00 AM,03/30/2022 09:00:00 PM,03/23/2022 03:01:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHERRY STREET between CATHERINE STREET and MARKET STREET,Manhattan,3,5,Commercial,Commercial,United States of America,10002
+634200,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 09:00:00 PM,03/23/2022 03:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between SHERMAN STREET and PROSPECT AVENUE, SHERMAN STREET between 10 AVENUE and 11 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,11215
+634197,Theater Load in and Load Outs,03/29/2022 12:01:00 AM,04/01/2022 06:00:00 AM,03/23/2022 02:57:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+634189,Theater Load in and Load Outs,03/28/2022 12:01:00 AM,03/28/2022 11:59:00 PM,03/23/2022 02:45:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+634176,DCAS Prep/Shoot/Wrap Permit,03/28/2022 05:00:00 AM,03/28/2022 02:00:00 PM,03/23/2022 02:33:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, CENTRE STREET between WORTH STREET and HOGAN PLACE, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, READE STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+634175,Shooting Permit,03/29/2022 08:00:00 AM,03/29/2022 09:00:00 PM,03/23/2022 02:32:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAMERCY PARK S between GRAMERCY PARK W and GRAMERCY PARK E, GRAMERCY PARK W between EAST 21 STREET and E 20 ST, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 22 STREET and EAST 17 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 25 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 21 STREET, WEST 47 STREET between 8 AVENUE and BROADWAY, WEST 46 STREET between 8 AVENUE and BROADWAY, WEST 49 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 52 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 51 STREET, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 20 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, GRAMERCY PARK S between GRAMERCY PARK W and IRVING PL",Manhattan,"5, 6","13, 18",Television,Episodic series,United States of America,"10003, 10010, 10019, 10020, 10022, 10036, 10112, 10119"
+634167,Theater Load in and Load Outs,03/27/2022 12:01:00 AM,03/27/2022 11:59:00 PM,03/23/2022 02:21:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+634159,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 10:00:00 PM,03/23/2022 02:06:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","35TH ST between VAN DAM STREET and BRADLEY AVENUE, 35TH ST between VAN DAM STREET and BRADLEY AVENUE, BRADLEY AVENUE between VAN DAM STREET and 35 STREET, BRADLEY AVENUE between 35 STREET and 37 STREET, GREENPOINT AVENUE between STARR AVENUE and BRADLEY AVENUE, 34 ST between BRADLEY AVENUE and BORDEN AVE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, 47 AVENUE between CENTER BOULEVARD and 5 STREET, 47 AVENUE between 5 STREET and VERNON BOULEVARD, 5 STREET between 47 AVENUE and 47 ROAD, CENTER BOULEVARD between 47 ROAD and 47 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, 46 ROAD between 5 STREET and VERNON BOULEVARD, CENTER BLVD between 46 AVENUE and DEAD END, 46TH AVE between CENTER BOULEVARD and DEAD END, 47 ROAD between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+634158,Theater Load in and Load Outs,04/19/2022 12:01:00 AM,04/21/2022 11:59:00 PM,03/23/2022 02:05:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+634153,Shooting Permit,03/28/2022 12:00:00 PM,03/28/2022 10:00:00 PM,03/23/2022 02:01:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WHITE STREET and WALKER STREET, WALKER STREET between MULBERRY STREET and BROADWAY, WALKER STREET between BROADWAY and CHURCH STREET, CENTRE STREET between WHITE STREET and WALKER STREET, WHITE STREET between LAFAYETTE STREET and CORTLANDT ALLEY",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,10013
+634131,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 08:00:00 PM,03/23/2022 01:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 71 STREET and EAST 73 STREET, MADISON AVENUE between EAST 70 STREET and EAST 72 STREET, EAST 71 STREET between 5 AVENUE and MADISON AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10021
+634123,Shooting Permit,03/25/2022 08:00:00 AM,03/25/2022 09:00:00 PM,03/23/2022 01:06:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between HOWARD STREET and GRAND STREET, MERCER STREET between HOWARD STREET and GRAND STREET, GREENE STREET between CANAL STREET and BROOME STREET, HOWARD STREET between LAFAYETTE STREET and BROADWAY, GRAND STREET between LAFAYETTE STREET and BROADWAY, HOWARD STREET between MERCER STREET and BROADWAY, GRAND STREET between GREENE STREET and MERCER STREET",Manhattan,2,"1, 5",Commercial,Commercial,United States of America,10013
+634122,Shooting Permit,03/29/2022 07:45:00 AM,03/29/2022 07:45:00 PM,03/23/2022 01:05:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between FIFTH AVENUE and MADISON AVENUE,Manhattan,8,19,Commercial,Commercial,United States of America,10065
+634111,Shooting Permit,03/25/2022 06:00:00 AM,03/25/2022 09:00:00 PM,03/23/2022 12:42:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDSON STREET between KINGSLAND AVENUE and DEBEVOISE AVENUE, DIVISION PLACE between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between BEADEL STREET and FROST STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+634104,Shooting Permit,03/28/2022 09:00:00 AM,03/28/2022 10:00:00 PM,03/23/2022 12:29:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 104 STREET and EAST 103 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET, EAST 104 STREET between PARK AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+634094,Shooting Permit,03/28/2022 08:00:00 AM,03/28/2022 11:00:00 PM,03/23/2022 12:12:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 DRIVE between SHORE BOULEVARD and 19 STREET, DITMARS BOULEVARD between SHORE BOULEVARD and 19 STREET, 19 STREET between 22 ROAD and 23 ROAD, SHORE BOULEVARD between DITMARS BOULEVARD and 21 ROAD",Queens,1,114,Television,Episodic series,United States of America,11105
+634093,Shooting Permit,03/26/2022 07:00:00 AM,03/26/2022 09:00:00 PM,03/23/2022 12:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between CORTELYOU ROAD and BEVERLEY ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+634088,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 07:00:00 PM,03/23/2022 11:48:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","THAMES STREET between MORGAN AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET",Brooklyn,"1, 4","83, 90",Commercial,Commercial,United States of America,11237
+634073,Shooting Permit,03/25/2022 10:00:00 AM,03/26/2022 12:30:00 AM,03/23/2022 11:14:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 9 AVENUE, WEST 24 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 10 AVENUE and 8 AVENUE, WEST 25 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 26 STREET and WEST 24 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+634057,Shooting Permit,03/25/2022 04:30:00 PM,03/26/2022 05:00:00 AM,03/23/2022 10:35:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MORRIS STREET and RECTOR STREET, GREENWICH STREET between MORRIS STREET and BATTERY PLACE, MORRIS STREET between TRINITY PLACE and BROADWAY, TRINITY PLACE between EDGAR STREET and MORRIS STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between LEROY STREET and CARMINE STREET, 7 AVENUE SOUTH between CLARKSON STREET and CHRISTOPHER STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET",Manhattan,"1, 2","1, 6",Television,Episodic series,United States of America,"10004, 10006, 10013, 10014, 10282"
+634041,Shooting Permit,03/25/2022 11:00:00 AM,03/26/2022 03:00:00 AM,03/23/2022 10:00:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","39 AVENUE between 214 STREET and 215 PLACE, 39 AVENUE between 215 PLACE and 218 STREET, 216 STREET between 39 AVENUE and 40 AVENUE, 212 STREET between 38 AVENUE and 39 AVENUE, 38 AVENUE between 211 STREET and 213 STREET, 38 AVENUE between 210 STREET and 211 STREET, 38 AVENUE between 213 STREET and BELL BOULEVARD, 39 AVENUE between 211 STREET and BELL BOULEVARD, 212 STREET between 36 AVENUE and 38 AVENUE",Queens,11,111,Television,Episodic series,United States of America,11361
+634024,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 09:00:00 PM,03/23/2022 09:26:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+634023,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 08:00:00 PM,03/23/2022 09:12:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERDALE AVENUE between WEST 263 STREET and WEST 260 STREET, BROADWAY between DAVID SHERIDAN PLAZA and WEST 262 STREET",Bronx,"26, 8",50,Television,Episodic series,United States of America,10471
+634011,Shooting Permit,03/25/2022 12:00:00 PM,03/26/2022 02:00:00 AM,03/23/2022 08:33:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 25 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 27 STREET and WEST 28 STREET, EAST 27 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10010, 10016"
+634007,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 08:00:00 PM,03/23/2022 07:43:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 92 STREET and EAST 93 STREET, 3 AVENUE between EAST 89 STREET and EAST 92 STREET, EAST 90 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 87 STREET and EAST 90 STREET, LEXINGTON AVENUE between EAST 90 STREET and EAST 91 STREET, LEXINGTON AVENUE between EAST 91 STREET and EAST 92 STREET, LEXINGTON AVENUE between EAST 92 STREET and EAST 93 STREET, EAST 92 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 90 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10128
+633968,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 09:00:00 AM,03/22/2022 07:40:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,"14, 18",Film,Short,United States of America,"10001, 10019"
+633967,Shooting Permit,03/30/2022 08:00:00 AM,03/30/2022 10:00:00 PM,03/22/2022 07:28:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+633963,Shooting Permit,03/29/2022 07:30:00 AM,03/29/2022 09:30:00 PM,03/22/2022 07:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+633962,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 09:00:00 PM,03/22/2022 07:04:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+633961,Shooting Permit,04/01/2022 01:00:00 PM,04/02/2022 01:00:00 AM,03/22/2022 07:00:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between LEONARD STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+633944,Shooting Permit,03/25/2022 09:30:00 AM,03/25/2022 10:30:00 PM,03/22/2022 06:02:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between TROY AVENUE and SCHENECTADY AVENUE, TROY AVENUE between ATLANTIC AVENUE and PACIFIC STREET, PACIFIC STREET between SCHENECTADY AVENUE and TROY AVENUE, PACIFIC STREET between TROY AVENUE and ALBANY AVENUE, UTICA AVENUE between ST MARKS AVENUE and ST JOHNS PLACE",Brooklyn,"3, 8","77, 81",Television,Pilot,United States of America,11213
+633928,Shooting Permit,04/12/2022 06:00:00 AM,04/12/2022 04:00:00 PM,03/22/2022 04:57:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",NASSAU AVENUE between JEWEL STREET and DIAMOND STREET,Brooklyn,1,94,Student,Student Film,United States of America,11222
+633916,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 08:00:00 PM,03/22/2022 04:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 90 STREET between EAST END AVENUE and YORK AVENUE, 2 AVENUE between EAST 96 STREET and EAST 90 STREET, 1 AVENUE between EAST 90 STREET and EAST 95 STREET, EAST 91 STREET between 1 AVENUE and YORK AVENUE, EAST 91 STREET between YORK AVENUE and 1 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10128
+633904,Shooting Permit,03/28/2022 07:00:00 AM,03/28/2022 10:00:00 PM,03/22/2022 03:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","42 PLACE between NORTHERN BOULEVARD and 43 STREET, 43 STREET between 42 PLACE and 37 AVENUE, CYPRESS AVENUE between HANCOCK STREET and JEFFERSON AVENUE, CYPRESS AVENUE between MYRTLE AVENUE and JEFFERSON AVENUE, CYPRESS AVENUE between HANCOCK STREET and WEIRFIELD STREET, HANCOCK STREET between CYPRESS AVENUE and WYCKOFF AVENUE, JEFFERSON AVENUE between CYPRESS AVENUE and WYCKOFF AVENUE, REVIEW AVENUE between 35 STREET and 29 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET",Queens,"1, 2, 5","104, 108, 114",Television,Cable-episodic,United States of America,"11101, 11385"
+633879,Shooting Permit,03/31/2022 12:00:00 PM,04/01/2022 01:00:00 AM,03/22/2022 03:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+633873,Theater Load in and Load Outs,03/26/2022 12:01:00 AM,03/26/2022 11:59:00 PM,03/22/2022 02:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+633857,Theater Load in and Load Outs,03/31/2022 12:01:00 AM,03/31/2022 11:59:00 PM,03/22/2022 02:28:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+633837,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 11:00:00 PM,03/22/2022 01:45:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+633834,Theater Load in and Load Outs,03/29/2022 12:01:00 AM,03/30/2022 06:00:00 AM,03/22/2022 01:42:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+633833,Theater Load in and Load Outs,03/26/2022 12:01:00 AM,03/27/2022 06:00:00 AM,03/22/2022 01:42:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+633832,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 11:00:00 PM,03/22/2022 01:42:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+633826,Theater Load in and Load Outs,03/30/2022 12:01:00 AM,03/30/2022 11:59:00 PM,03/22/2022 01:39:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+633811,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 10:00:00 PM,03/22/2022 01:27:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCIAL STREET between BOX STREET and MANHATTAN AVENUE, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, MANHATTAN AVENUE between DEAD END and FREEMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633803,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 11:00:00 PM,03/22/2022 01:07:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+633802,Shooting Permit,03/25/2022 08:00:00 AM,03/25/2022 09:30:00 PM,03/22/2022 01:07:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COURT STREET between MONTAGUE STREET and JORALEMON STREET, COURT STREET between LIVINGSTON STREET and SCHERMERHORN STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, REMSEN STREET between CLINTON STREET and COURT STREET, COURT STREET between JORALEMON ST and LIVINGSTON ST, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, JOHNSON STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+633800,Theater Load in and Load Outs,03/29/2022 12:01:00 AM,03/29/2022 11:59:00 PM,03/22/2022 01:04:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+633795,Shooting Permit,03/24/2022 06:00:00 PM,03/25/2022 02:00:00 AM,03/22/2022 12:54:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 241 STREET between RICHARDSON AVENUE and WHITE PLAINS ROAD, WHITE PLAINS ROAD between EAST 240 STREET and EAST 241 STREET, WHITE PLAINS ROAD between EAST 241 STREET and ST OUEN STREET, EAST 241 STREET between WHITE PLAINS ROAD and BAYCHESTER AVENUE",Bronx,12,47,Television,Episodic series,United States of America,10470
+633789,Shooting Permit,03/24/2022 06:00:00 AM,03/25/2022 10:00:00 PM,03/22/2022 12:48:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+633764,Theater Load in and Load Outs,03/28/2022 12:01:00 AM,03/28/2022 11:59:00 PM,03/22/2022 12:06:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+633757,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 10:00:00 PM,03/22/2022 12:00:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+633752,Theater Load in and Load Outs,03/26/2022 12:01:00 AM,03/27/2022 06:00:00 AM,03/22/2022 11:53:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+633746,Shooting Permit,03/25/2022 04:00:00 PM,03/26/2022 05:00:00 AM,03/22/2022 11:41:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 74 STREET and EAST 75 STREET, EAST 75 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 74 STREET between 5 AVENUE and MADISON AVENUE, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, 5 AVENUE between EAST 83 STREET and EAST 84 STREET, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, PARK AVENUE between EAST 72 STREET and EAST 80 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"00083, 10021, 10028, 10075"
+633738,Shooting Permit,03/25/2022 06:00:00 AM,03/25/2022 11:00:00 PM,03/22/2022 11:28:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633729,Shooting Permit,03/24/2022 06:00:00 AM,03/24/2022 11:00:00 PM,03/22/2022 11:11:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633709,Shooting Permit,03/24/2022 04:00:00 PM,03/24/2022 11:00:00 PM,03/22/2022 10:15:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, REVIEW AVENUE between 35 STREET and VAN DAM STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+633693,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 08:00:00 PM,03/22/2022 09:23:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+633691,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 08:00:00 PM,03/22/2022 09:22:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+633686,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 11:00:00 PM,03/22/2022 08:56:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633682,Shooting Permit,03/25/2022 02:00:00 PM,03/26/2022 06:00:00 AM,03/22/2022 08:46:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",NATIONAL DRIVE between 56 DRIVE and EAST 66 STREET,Brooklyn,N/A,N/A,Television,Cable-episodic,United States of America,N/A
+633665,Shooting Permit,03/25/2022 09:00:00 AM,03/25/2022 11:59:00 PM,03/21/2022 10:30:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between OCEAN AVENUE and MARLBOROUGH ROAD, MARLBOROUGH ROAD between CATON AVENUE and CHURCH AVENUE, MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+633648,Shooting Permit,03/24/2022 10:00:00 AM,03/24/2022 11:59:00 PM,03/21/2022 08:32:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+633632,Shooting Permit,03/24/2022 11:00:00 AM,03/24/2022 11:00:00 PM,03/21/2022 06:40:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",NATIONAL DRIVE between 56 DRIVE and EAST 66 STREET,Brooklyn,18,63,Television,Cable-episodic,United States of America,11234
+633618,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 09:00:00 PM,03/21/2022 05:39:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633608,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/25/2022 06:00:00 AM,03/21/2022 05:13:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+633567,Shooting Permit,03/25/2022 11:30:00 AM,03/26/2022 03:30:00 AM,03/21/2022 03:47:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between JACKSON AVENUE and THOMPSON AVENUE, THOMPSON AVENUE between JACKSON AVENUE and 44 DRIVE, COURT SQUARE between THOMPSON AVENUE and DEAD END, SKILLMAN AVENUE between THOMPSON AVENUE and QUEENS BOULEVARD, 44 DRIVE between JACKSON AVENUE and HUNTER STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+633565,Theater Load in and Load Outs,03/30/2022 12:01:00 AM,03/31/2022 06:00:00 AM,03/21/2022 03:44:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+633558,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 11:59:00 PM,03/21/2022 03:37:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, QUEENS BLVD between 63 AVENUE and 63RD DR, 63RD DR between QUEENS BLVD and SAUNDERS ST, SAUNDERS STREET between 63 AVENUE and 63 DRIVE, SAUNDERS STREET between 63 AVENUE and 64 ROAD, QUEENS BLVD between 63RD DR and 65TH RD, 63 DRIVE between SAUNDERS STREET and WETHEROLE STREET, 63 DRIVE between WETHEROLE STREET and ALDERTON STREET, BOOTH STREET between 63 AVENUE and 63 DRIVE, WETHEROLE STREET between 63 AVENUE and 63 DRIVE, AUSTIN STREET between 63 AVENUE and 63 DRIVE",Brooklyn,"1, 6","112, 94",Television,Episodic series,United States of America,"11222, 11374"
+633551,Shooting Permit,04/01/2022 07:00:00 AM,04/01/2022 09:00:00 PM,03/21/2022 03:17:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633549,Shooting Permit,03/31/2022 09:00:00 AM,03/31/2022 11:00:00 PM,03/21/2022 03:16:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633548,Shooting Permit,03/30/2022 10:00:00 AM,03/30/2022 12:00:00 PM,03/21/2022 03:15:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633546,Shooting Permit,03/24/2022 09:00:00 AM,03/25/2022 12:00:00 AM,03/21/2022 03:14:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD, CHURCH AVENUE between MARLBOROUGH ROAD and BUCKINGHAM ROAD, CHURCH AVENUE between BUCKINGHAM ROAD and EAST 18 STREET, CHURCH AVENUE between EAST 18 STREET and OCEAN AVENUE, BUCKINGHAM ROAD between CATON AVENUE and CHURCH AVENUE, EAST 17 STREET between CATON AVENUE and CHURCH AVENUE, EAST 18 STREET between CATON AVENUE and CHURCH AVENUE, EAST 18 STREET between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+633545,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 09:00:00 PM,03/21/2022 03:12:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633539,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 08:00:00 PM,03/21/2022 02:56:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between COVERT STREET and COOPER STREET, SCHAEFER STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+633538,Theater Load in and Load Outs,03/26/2022 12:01:00 AM,03/27/2022 06:00:00 AM,03/21/2022 02:56:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+633536,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 10:00:00 PM,03/21/2022 02:51:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633527,Shooting Permit,03/29/2022 07:00:00 AM,03/29/2022 10:00:00 PM,03/21/2022 02:31:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633522,Shooting Permit,03/24/2022 06:00:00 AM,03/24/2022 09:00:00 PM,03/21/2022 02:22:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, PROVOST STREET between EAGLE STREET and INDIA STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633521,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 09:00:00 PM,03/21/2022 02:21:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633517,Theater Load in and Load Outs,03/25/2022 12:01:00 AM,03/25/2022 11:59:00 PM,03/21/2022 02:15:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+633483,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/24/2022 11:59:00 PM,03/21/2022 01:13:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+633479,Shooting Permit,03/29/2022 06:00:00 AM,03/29/2022 08:00:00 PM,03/21/2022 01:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 37 STREET and WEST 35 STREET, WEST 36 STREET between 6 AVENUE and 5 AVENUE, EAST 32 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 35 STREET between 5 AVENUE and MADISON AVENUE, EAST 35 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,"10001, 10016, 10018"
+633459,Shooting Permit,03/24/2022 08:00:00 AM,03/24/2022 11:59:00 PM,03/21/2022 12:38:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 3 STREET between 1 AVENUE and 2 AVENUE,Manhattan,"2, 3","6, 9",Film,Short,United States of America,"10003, 10014"
+633456,Shooting Permit,03/24/2022 12:00:00 PM,03/25/2022 02:00:00 AM,03/21/2022 12:31:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 121 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, WEST 121 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 124 STREET, WEST 122 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 120 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, EAST 116 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between WEST 116 STREET and WEST 117 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027, 10029, 10035"
+633424,Shooting Permit,03/29/2022 03:00:00 AM,03/29/2022 11:00:00 AM,03/21/2022 11:55:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between BROADWAY and 8 AVENUE, 47TH STREET between BROADWAY and 8 AVENUE",Manhattan,5,18,Television,Variety,United States of America,10036
+633406,Rigging Permit,03/28/2022 04:00:00 PM,03/28/2022 07:00:00 PM,03/21/2022 11:34:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",47TH STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Television,Variety,United States of America,10036
+633401,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 10:00:00 PM,03/21/2022 11:30:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633397,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 10:00:00 PM,03/21/2022 11:24:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633396,Shooting Permit,03/23/2022 06:30:00 AM,03/23/2022 10:00:00 PM,03/21/2022 11:23:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, CALYER STREET between NEWEL STREET and DIAMOND STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633394,Shooting Permit,03/24/2022 06:30:00 AM,03/24/2022 08:30:00 PM,03/21/2022 11:22:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","91 STREET between 3 AVENUE and RIDGE BOULEVARD, 3 AVENUE between 91 STREET and 92 STREET",Brooklyn,10,68,Commercial,Commercial,United States of America,11209
+633390,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 08:00:00 PM,03/21/2022 11:14:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",STOCKHOLM STREET between WILSON AVENUE and KNICKERBOCKER AVENUE,Brooklyn,4,83,Still Photography,Not Applicable,Canada,11237
+633387,Shooting Permit,03/27/2022 06:00:00 AM,03/27/2022 08:00:00 PM,03/21/2022 11:05:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",STOCKHOLM STREET between WILSON AVENUE and KNICKERBOCKER AVENUE,Brooklyn,4,83,Still Photography,Not Applicable,Canada,11237
+633373,Shooting Permit,03/24/2022 06:00:00 AM,03/25/2022 02:00:00 AM,03/21/2022 10:21:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+633372,Shooting Permit,03/24/2022 11:00:00 AM,03/24/2022 04:00:00 PM,03/21/2022 10:20:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Talk Show,United States of America,10023
+633370,Shooting Permit,03/25/2022 06:00:00 AM,03/26/2022 08:00:00 PM,03/21/2022 10:14:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, 107 STREET between 85 AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+633369,Theater Load in and Load Outs,03/28/2022 12:01:00 AM,03/29/2022 11:59:00 PM,03/21/2022 10:12:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+633358,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 10:00:00 PM,03/21/2022 09:29:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+633357,Shooting Permit,03/23/2022 08:00:00 AM,03/23/2022 10:00:00 PM,03/21/2022 09:26:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633254,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 09:00:00 PM,03/20/2022 08:59:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+633192,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 08:00:00 PM,03/19/2022 11:17:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+633141,Shooting Permit,03/23/2022 11:00:00 AM,03/24/2022 02:00:00 AM,03/18/2022 06:25:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, EAST 45 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, MADISON AVENUE between EAST 45 STREET and EAST 47 STREET, VANDERBILT AVENUE between EAST 47 STREET and EAST 46 STREET, VANDERBILT AVENUE between EAST 46 STREET and EAST 45 STREET",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10173"
+633139,Shooting Permit,03/23/2022 08:00:00 AM,03/24/2022 12:00:00 AM,03/18/2022 06:13:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",IMLAY STREET between SUMMIT STREET and BOWNE STREET,Brooklyn,6,76,Television,Episodic series,United States of America,11231
+633125,Shooting Permit,03/23/2022 08:00:00 AM,03/24/2022 12:00:00 AM,03/18/2022 04:24:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between NORTH HENRY STREET and MONITOR STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633110,Shooting Permit,03/22/2022 08:00:00 AM,03/22/2022 05:00:00 PM,03/18/2022 03:52:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","168 PLACE between HILLSIDE AVENUE and HIGHLAND AVENUE, ROOSEVELT AVENUE between 91 STREET and 92 STREET",Queens,"12, 3, 4, 8, 81","103, 107, 110, 115",WEB,Not Applicable,United States of America,"11368, 11372, 11432"
+633082,DCAS Prep/Shoot/Wrap Permit,03/23/2022 08:30:00 AM,03/23/2022 09:00:00 PM,03/18/2022 02:45:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, READE STREET between CHURCH STREET and BROADWAY, WORTH STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between CENTRE STREET and ELK STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+633063,Shooting Permit,03/25/2022 11:00:00 AM,03/26/2022 02:00:00 AM,03/18/2022 02:20:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633061,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 07:00:00 PM,03/18/2022 02:15:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 29 STREET between 6 AVENUE and 7 AVENUE,Manhattan,"4, 5","10, 13, 14",WEB,Not Applicable,United States of America,"10001, 10016"
+633048,Shooting Permit,03/24/2022 09:00:00 AM,03/25/2022 12:01:00 AM,03/18/2022 01:35:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633045,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 10:00:00 PM,03/18/2022 01:24:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 36 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+633042,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 11:00:00 PM,03/18/2022 01:15:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633041,Shooting Permit,03/24/2022 07:00:00 AM,03/24/2022 10:00:00 PM,03/18/2022 01:14:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 36 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+633038,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 09:00:00 PM,03/18/2022 01:00:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633025,DCAS Prep/Shoot/Wrap Permit,03/22/2022 12:00:00 PM,03/22/2022 08:00:00 PM,03/18/2022 12:24:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, READE STREET between CHURCH STREET and BROADWAY, WORTH STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between CENTRE STREET and ELK STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+633024,Shooting Permit,03/22/2022 07:30:00 AM,03/22/2022 12:30:00 PM,03/18/2022 12:23:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHATHAM SQUARE between MOTT STREET and EAST BROADWAY, OLIVER STREET between ST JAMES PLACE and HENRY STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET, ST JAMES PLACE between JAMES STREET and MADISON STREET",Manhattan,3,5,Television,Episodic series,United States of America,"10013, 10038"
+633020,Shooting Permit,03/24/2022 04:30:00 PM,03/25/2022 05:00:00 AM,03/18/2022 12:17:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between WALL STREET and MAIDEN LANE, PEARL STREET between PINE STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET, PINE STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+633014,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 09:00:00 PM,03/18/2022 11:49:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 30 STREET between 48 AVENUE and HUNTERS POINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+633011,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 09:00:00 PM,03/18/2022 11:39:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+633007,Shooting Permit,03/21/2022 03:00:00 AM,03/21/2022 11:00:00 PM,03/18/2022 11:31:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 90 STREET between BROADWAY and WEST END AVENUE, BROADWAY between WEST 91 STREET and WEST 86 STREET, WEST 88 STREET between AMSTERDAM AVENUE and WEST END AVENUE, WEST 87 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 89 STREET and WEST 88 STREET, WEST END AVENUE between WEST 88 STREET and WEST 85 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+632991,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:00:00 PM,03/18/2022 10:53:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between 1 AVENUE and 2 AVENUE,Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+632975,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 09:00:00 PM,03/18/2022 10:19:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+632969,Shooting Permit,03/23/2022 08:00:00 AM,03/23/2022 10:00:00 PM,03/18/2022 10:07:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+632943,Theater Load in and Load Outs,03/25/2022 12:01:00 AM,03/27/2022 06:00:00 AM,03/18/2022 09:17:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,28,Theater,Theater,United States of America,10027
+632940,Theater Load in and Load Outs,03/25/2022 12:01:00 AM,03/26/2022 04:00:00 AM,03/18/2022 09:14:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 34 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+632938,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 10:00:00 PM,03/18/2022 09:05:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+632922,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 02:00:00 PM,03/18/2022 07:22:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",171 STREET between 89 AVENUE and 90 AVENUE,Queens,"1, 12","103, 5",WEB,Not Applicable,United States of America,"10278, 11432"
+632921,Shooting Permit,03/22/2022 07:00:00 AM,03/23/2022 01:00:00 AM,03/18/2022 06:57:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 70 STREET and 73 STREET, 73 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 72 STREET and 73 STREET, 48 AVENUE between 70 STREET and 72 STREET, QUEENS BLVD between 73RD ST and JACOBUS ST, IRELAND STREET between QUEENS BOULEVARD and 51 AVENUE, 51ST AVE between IRELAND STREET and 72ND PL, 51ST AVE between 72ND PL and 71ST ST, 72 STREET between 47 AVENUE and 48 AVENUE",Queens,"2, 4","108, 110",Television,Episodic series,United States of America,"11373, 11377"
+632910,Shooting Permit,03/22/2022 02:30:00 PM,03/23/2022 05:00:00 AM,03/17/2022 11:09:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 75 STREET and EAST 76 STREET, PARK AVENUE between EAST 72 STREET and EAST 77 STREET, PARK AVENUE between EAST 78 STREET and EAST 80 STREET, MADISON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 83 STREET and EAST 84 STREET, 5 AVENUE between EAST 74 STREET and EAST 75 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, PARK AVENUE between EAST 77 STREET and EAST 79 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10028, 10075"
+632881,Theater Load in and Load Outs,03/22/2022 08:00:00 AM,03/22/2022 08:00:00 PM,03/17/2022 07:18:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between FULTON STREET and DEKALB AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+632861,Shooting Permit,03/22/2022 09:00:00 AM,03/22/2022 10:00:00 PM,03/17/2022 05:23:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 7 AVENUE and 6 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 38 STREET between 6 AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10018, 10036"
+632857,Shooting Permit,03/28/2022 03:00:00 PM,03/28/2022 07:00:00 PM,03/17/2022 05:17:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",OCEAN AVENUE between LINCOLN ROAD and FLATBUSH AVENUE,Brooklyn,"19, 55, 9","71, 78",Television,Cable-episodic,United States of America,"11215, 11225"
+632852,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 08:00:00 PM,03/17/2022 05:08:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST MARKS AVENUE between BROOKLYN AVENUE and KINGSTON AVENUE, KINGSTON AVENUE between DEAN STREET and PROSPECT PLACE",Brooklyn,8,77,Television,Episodic series,United States of America,11213
+632851,Shooting Permit,03/31/2022 12:00:00 PM,03/31/2022 11:00:00 PM,03/17/2022 05:04:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+632846,Shooting Permit,03/22/2022 05:00:00 AM,03/22/2022 09:00:00 PM,03/17/2022 04:58:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between NASSAU AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between NEWEL STREET and RUSSELL STREET, HUMBOLDT STREET between NASSAU AVENUE and DRIGGS AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632845,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 11:00:00 PM,03/17/2022 04:55:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632839,Shooting Permit,03/19/2022 07:00:00 AM,03/19/2022 05:00:00 PM,03/17/2022 04:30:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",171 STREET between 89 AVENUE and 90 AVENUE,Queens,12,103,WEB,Not Applicable,United States of America,11432
+632832,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 07:00:00 PM,03/17/2022 04:02:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+632831,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 10:00:00 PM,03/17/2022 03:58:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632829,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 09:00:00 PM,03/17/2022 03:52:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632807,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 09:00:00 PM,03/17/2022 03:08:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between GRAND STREET and HOWARD STREET, HOWARD STREET between BROADWAY and MERCER STREET, MERCER STREET between HOWARD STREET and GRAND STREET, GRAND STREET between GREENE STREET and BROADWAY, BROOME STREET between BROADWAY and MERCER STREET, BROADWAY between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Commercial,Commercial,United States of America,10013
+632803,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 05:00:00 PM,03/17/2022 02:48:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 59 STREET and EAST 61 STREET, MADISON AVENUE between EAST 60 STREET and EAST 62 STREET, EAST 65 STREET between 5 AVENUE and MADISON AVENUE, EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 65 STREET, PARK AVENUE between EAST 63 STREET and EAST 65 STREET, EAST 62 STREET between 5 AVENUE and PARK AVENUE, EAST 61 STREET between MADISON AVENUE and PARK AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+632802,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 10:00:00 PM,03/17/2022 02:34:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632799,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 09:00:00 PM,03/17/2022 02:25:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 36 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,11106
+632796,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 11:00:00 PM,03/17/2022 02:20:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUNTER STREET between 42 ROAD and 27 STREET, 42 ROAD between HUNTER STREET and JACKSON AVENUE",Queens,2,108,WEB,Not Applicable,United States of America,11101
+632795,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 11:00:00 PM,03/17/2022 02:20:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 AVENUE between CENTER BOULEVARD and 2 STREET, 28 ROAD between 31 STREET and 33 STREET, NEWTOWN AVENUE between 31 STREET and 32 STREET, 55 AVENUE between CENTER BOULEVARD and 2 STREET",Queens,"1, 2","108, 114",WEB,Not Applicable,United States of America,"11101, 11102"
+632793,Shooting Permit,03/20/2022 11:00:00 AM,03/20/2022 11:00:00 PM,03/17/2022 02:19:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRANKLIN STREET between OAK STREET and CALYER STREET,Brooklyn,1,"90, 94",Student,Student Film,United States of America,"11211, 11222"
+632764,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/25/2022 06:00:00 AM,03/17/2022 01:26:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+632751,Theater Load in and Load Outs,03/22/2022 12:01:00 AM,03/23/2022 11:59:00 PM,03/17/2022 12:44:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+632747,Theater Load in and Load Outs,03/22/2022 12:01:00 AM,03/23/2022 06:00:00 AM,03/17/2022 12:19:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+632744,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 10:00:00 AM,03/17/2022 12:11:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 23 STREET and WEST 25 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+632742,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 10:00:00 PM,03/17/2022 12:08:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+632740,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 10:00:00 PM,03/17/2022 12:06:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+632736,Shooting Permit,03/25/2022 01:00:00 PM,03/26/2022 02:00:00 AM,03/17/2022 11:49:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MOUNT OLIVET CRESCENT between 60 DRIVE and ELIOT AVENUE, MOUNT OLIVET CRESCENT between ELIOT AVENUE and METROPOLITAN AVENUE, METROPOLITAN AVENUE between MOUNT OLIVET CRESCENT and 69 STREET",Queens,5,104,Television,Cable-episodic,United States of America,"11378, 11379, 11385"
+632734,Theater Load in and Load Outs,03/22/2022 12:01:00 AM,03/24/2022 06:00:00 AM,03/17/2022 11:33:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+632733,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:00:00 PM,03/17/2022 11:25:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","71 STREET between COOPER AVENUE and CENTRAL AVENUE, COOPER AVENUE between 71 PLACE and 72 STREET, 71 PLACE between COOPER AVENUE and MYRTLE AVENUE, 71 PLACE between MYRTLE AVENUE and DEAD END, MYRTLE AVENUE between 71 STREET and 71 PLACE, MYRTLE AVENUE between 71 PLACE and 72 STREET, MYRTLE AVENUE between 72 PLACE and 78 STREET",Queens,5,104,Television,Cable-episodic,United States of America,11385
+632722,Shooting Permit,03/25/2022 06:00:00 AM,03/25/2022 07:00:00 PM,03/17/2022 11:03:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 120 STREET between 5 AVENUE and MT MORRIS PARK WEST",Manhattan,"10, 11","25, 28",WEB,Not Applicable,United States of America,10027
+632716,Shooting Permit,03/24/2022 06:00:00 AM,03/24/2022 10:00:00 PM,03/17/2022 10:38:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 STREET between 2 AVENUE and 3 AVENUE, 7 STREET between 2 AVENUE and 3 AVENUE",Brooklyn,6,78,WEB,Not Applicable,United States of America,11215
+632704,Shooting Permit,03/23/2022 08:00:00 AM,03/23/2022 11:00:00 PM,03/17/2022 10:13:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 121 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 124 STREET, WEST 122 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, MOUNT MORRIS PARK WEST between WEST 120 STREET and WEST 121 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, EAST 116 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between WEST 116 STREET and WEST 117 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027, 10029, 10035"
+632703,Shooting Permit,03/18/2022 10:00:00 AM,03/19/2022 12:00:00 AM,03/17/2022 10:13:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+632700,Shooting Permit,03/21/2022 01:00:00 PM,03/22/2022 03:00:00 AM,03/17/2022 10:09:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 16 STREET and WEST 17 STREET, WEST 15 STREET between SURF AVENUE and MERMAID AVENUE",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+632698,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 11:00:00 PM,03/17/2022 10:04:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632695,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:30:00 PM,03/17/2022 10:01:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+632689,Shooting Permit,03/23/2022 07:00:00 AM,03/23/2022 10:00:00 PM,03/17/2022 09:40:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 80 STREET and EAST 84 STREET, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, YORK AVENUE between EAST 84 STREET and EAST 86 STREET, YORK AVENUE between EAST 86 STREET and EAST 88 STREET, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between YORK AVENUE and 1 AVENUE, EAST 84 STREET between YORK AVENUE and EAST END AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+632686,Shooting Permit,03/25/2022 06:00:00 AM,03/25/2022 08:00:00 PM,03/17/2022 09:30:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+632685,Shooting Permit,03/24/2022 06:00:00 AM,03/24/2022 08:00:00 PM,03/17/2022 09:29:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+632669,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 11:59:00 PM,03/17/2022 07:14:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between DRIGGS AVENUE and BROOME STREET, DRIGGS AVENUE between MONITOR STREET and RUSSELL STREET, HUMBOLDT STREET between BROOME STREET and ENGERT AVENUE, ENGERT AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632593,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 08:00:00 PM,03/16/2022 05:34:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST MARKS AVENUE between KINGSTON AVENUE and BROOKLYN AVENUE, KINGSTON AVENUE between PROSPECT PLACE and DEAN STREET",Brooklyn,8,77,Television,Episodic series,United States of America,11213
+632586,Theater Load in and Load Outs,03/30/2022 05:30:00 AM,03/31/2022 01:00:00 PM,03/16/2022 04:56:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+632580,Theater Load in and Load Outs,03/27/2022 06:00:00 AM,03/29/2022 01:00:00 PM,03/16/2022 04:48:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+632579,Shooting Permit,03/19/2022 05:00:00 PM,03/19/2022 08:00:00 PM,03/16/2022 04:47:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERVEER PLACE between FLATBUSH AVENUE and EAST 23 STREET, FLATBUSH AVENUE between CLARENDON ROAD and VANDERVEER PLACE, CLARENDON ROAD between FLATBUSH AVENUE and EAST 22 STREET, EAST 23 STREET between CLARENDON ROAD and AVENUE D",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+632571,Theater Load in and Load Outs,03/25/2022 06:00:00 AM,03/27/2022 01:00:00 PM,03/16/2022 04:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+632569,Theater Load in and Load Outs,03/20/2022 05:45:00 AM,03/21/2022 01:00:00 PM,03/16/2022 04:16:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+632565,Theater Load in and Load Outs,03/19/2022 05:45:00 AM,03/20/2022 05:30:00 AM,03/16/2022 04:08:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+632563,Theater Load in and Load Outs,03/18/2022 05:00:00 AM,03/19/2022 05:00:00 AM,03/16/2022 04:01:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+632562,Theater Load in and Load Outs,03/19/2022 12:01:00 AM,03/20/2022 06:00:00 AM,03/16/2022 04:01:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+632561,Shooting Permit,03/19/2022 07:00:00 AM,03/19/2022 08:00:00 PM,03/16/2022 03:57:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between LAFAYETTE STREET and BROADWAY, BOND STREET between LAFAYETTE STREET and BROADWAY",Manhattan,2,9,Film,Feature,United States of America,10012
+632559,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 10:00:00 PM,03/16/2022 03:45:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632558,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 07:30:00 PM,03/16/2022 03:44:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, BOND STREET between LAFAYETTE STREET and BROADWAY",Manhattan,2,9,Film,Feature,United States of America,10012
+632552,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 10:00:00 PM,03/16/2022 03:37:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632549,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 04:00:00 PM,03/16/2022 03:33:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUANE STREET between WEST BROADWAY and CHURCH STREET, DUANE STREET between CHURCH STREET and BROADWAY, READE STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between CHAMBERS STREET and WARREN STREET, CHURCH STREET between WARREN STREET and MURRAY STREET, MURRAY STREET between WEST BROADWAY and CHURCH STREET, PARK PLACE between CHURCH STREET and BROADWAY, BARCLAY STREET between WEST BROADWAY and CHURCH STREET, BARCLAY STREET between CHURCH STREET and BROADWAY, VESEY STREET between CHURCH STREET and BROADWAY, CHURCH STREET between VESEY STREET and FULTON STREET, BROADWAY between ANN STREET and FULTON STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10038"
+632542,Shooting Permit,03/18/2022 12:00:00 AM,03/18/2022 07:30:00 PM,03/16/2022 03:12:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 45 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 44 STREET and WEST 43 STREET, 6 AVENUE between WEST 43 STREET and WEST 42 STREET, WEST 46 STREET between 6 AVENUE and 7 AVENUE, 40 AVENUE between VERNON BOULEVARD and 12 STREET",Manhattan,"1, 2, 5","114, 14, 18",Television,Episodic series,United States of America,"10036, 11101"
+632540,Shooting Permit,03/22/2022 10:00:00 AM,03/23/2022 12:00:00 AM,03/16/2022 03:09:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MELBOURNE AVENUE between 150 STREET and KISSENA BOULEVARD, REEVES AVENUE between 150 STREET and HORACE HARDING EXPRESSWAY, 153 STREET between 61 ROAD and REEVES AVENUE",Queens,8,107,Television,Cable-episodic,United States of America,11367
+632517,Shooting Permit,03/21/2022 09:00:00 AM,03/21/2022 11:00:00 PM,03/16/2022 02:28:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 79 STREET and EAST 84 STREET, EAST 80 STREET between YORK AVENUE and 1 AVENUE, YORK AVENUE between EAST 86 STREET and EAST 88 STREET, EAST 87 STREET between 1 AVENUE and YORK AVENUE, EAST 87 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 84 STREET and EAST 86 STREET, EAST 88 STREET between YORK AVENUE and EAST END AVENUE, EAST END AVENUE between EAST 86 STREET and EAST 87 STREET, EAST 86 STREET between YORK AVENUE and EAST END AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075, 10128"
+632511,Shooting Permit,03/20/2022 07:00:00 AM,03/20/2022 09:00:00 PM,03/16/2022 02:20:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632510,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 07:00:00 PM,03/16/2022 02:20:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 73 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, 5 AVENUE between EAST 73 STREET and EAST 70 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 71 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, PARK AVENUE between EAST 62 STREET and EAST 61 STREET, PARK AVENUE between EAST 59 STREET and EAST 56 STREET",Manhattan,"5, 64, 7, 8","18, 19, 20, 22",Television,Cable-episodic,United States of America,"10021, 10022, 10023, 10065"
+632485,Shooting Permit,03/18/2022 06:00:00 AM,03/19/2022 03:00:00 AM,03/16/2022 01:53:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK STREET between BRIDGE STREET and GOLD STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, 2 AVENUE between 32 STREET and 33 STREET",Brooklyn,"2, 7","72, 84",Music Video,Signed Artist,United States of America,"11201, 11232"
+632474,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 10:00:00 PM,03/16/2022 01:45:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632463,Shooting Permit,03/24/2022 11:00:00 AM,03/25/2022 01:00:00 AM,03/16/2022 01:33:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+632417,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 10:00:00 PM,03/16/2022 12:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+632413,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 10:00:00 PM,03/16/2022 12:38:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+632398,Shooting Permit,03/22/2022 09:00:00 AM,03/22/2022 11:00:00 PM,03/16/2022 12:12:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CHURCH AVENUE and CATON AVENUE, ARGYLE ROAD between BEVERLEY ROAD and CHURCH AVENUE, BEVERLEY ROAD between STRATFORD ROAD and MARLBOROUGH ROAD, RUGBY ROAD between BEVERLEY ROAD and ALBEMARLE ROAD, CHURCH AVENUE between BEVERLEY ROAD and EAST 3 STREET, BEVERLEY ROAD between CHURCH AVENUE and EAST 4 STREET, EAST 2 STREET between CHURCH AVENUE and BEVERLEY ROAD, BEVERLEY ROAD between OCEAN AVENUE and EAST 21 STREET",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226"
+632351,Shooting Permit,03/18/2022 09:00:00 AM,03/18/2022 11:59:00 PM,03/16/2022 09:52:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 47 AVENUE and 46 ROAD, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, VERNON BOULEVARD between 46 AVENUE and 45 ROAD, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, 45 AVENUE between VERNON BOULEVARD and 11 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 46 ROAD between VERNON BOULEVARD and 11 STREET, 45 ROAD between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 47 AVENUE and 47 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+632349,Shooting Permit,03/18/2022 10:00:00 AM,03/19/2022 02:30:00 AM,03/16/2022 09:49:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between 36 AVENUE and 34 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 36 AVENUE between VERNON BOULEVARD and TURNAROUND, 36TH AVENUE between VERNON BOULEVARD and TURNAROUND",Queens,"1, 2, 8","108, 114",Television,Episodic series,United States of America,"10044, 11101, 11106"
+632347,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 02:00:00 PM,03/16/2022 09:42:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","KOSCIUSZKO STREET between NOSTRAND AVENUE and MARCY AVENUE, LAFAYETTE AVENUE between NOSTRAND AVENUE and MARCY AVENUE",Brooklyn,3,79,Television,Cable-episodic,United States of America,11216
+632346,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/25/2022 06:00:00 AM,03/16/2022 09:41:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+632345,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 09:00:00 PM,03/16/2022 09:36:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 76 STREET and WEST 78 STREET, COLUMBUS AVENUE between WEST 76 STREET and WEST 77 STREET, COLUMBUS AVENUE between WEST 76 STREET and WEST 73 STREET, WEST 73 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and WEST 75 STREET, 3 AVENUE between EAST 79 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 77 STREET and EAST 75 STREET, LEXINGTON AVENUE between EAST 75 STREET and EAST 74 STREET, LEXINGTON AVENUE between EAST 74 STREET and EAST 72 STREET, EAST 75 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 74 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 73 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"64, 7, 8","19, 20, 22",Television,Episodic series,United States of America,"10021, 10023, 10024, 10075"
+632344,Theater Load in and Load Outs,03/25/2022 12:01:00 AM,03/27/2022 06:00:00 AM,03/16/2022 09:31:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10036
+632342,Theater Load in and Load Outs,03/21/2022 12:01:00 AM,03/22/2022 06:00:00 AM,03/16/2022 09:19:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+632340,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 08:00:00 PM,03/16/2022 09:13:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+632339,Shooting Permit,03/22/2022 06:00:00 AM,03/22/2022 08:00:00 PM,03/16/2022 09:12:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+632337,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:00:00 PM,03/16/2022 09:11:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+632336,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/24/2022 11:59:00 PM,03/16/2022 09:08:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+632335,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 07:00:00 PM,03/16/2022 09:03:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET, PARK AVENUE between EAST 104 STREET and EAST 103 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+632325,Rigging Permit,03/18/2022 02:00:00 PM,03/19/2022 02:00:00 PM,03/16/2022 08:09:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+632324,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 10:00:00 PM,03/16/2022 08:08:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 24 STREET and WEST 25 STREET, 9 AVENUE between WEST 24 STREET and WEST 25 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+632321,Theater Load in and Load Outs,03/17/2022 05:45:00 AM,03/18/2022 05:00:00 AM,03/16/2022 07:07:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+632320,Shooting Permit,03/20/2022 07:00:00 AM,03/20/2022 06:00:00 PM,03/16/2022 06:57:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 43 STREET and EAST 42 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE, EAST 44 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,17,Film,Feature,United States of America,10017
+632315,Shooting Permit,03/18/2022 05:00:00 PM,03/18/2022 11:59:00 PM,03/16/2022 02:39:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",POPPENHUSEN AVENUE between 115 STREET and 117 STREET,Queens,7,109,Student,Student Film,United States of America,11356
+632302,Shooting Permit,03/28/2022 06:00:00 AM,03/28/2022 07:00:00 PM,03/15/2022 10:57:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 8 AVENUE and 6 AVENUE, 7 AVENUE between WEST 14 STREET and WEST 13 STREET, EAST 13 STREET between BROADWAY and 4 AVENUE, 4 AVENUE between EAST 14 STREET and EAST 12 STREET, BROADWAY between EAST 13 STREET and EAST 12 STREET, BROADWAY between EAST 12 STREET and EAST 10 STREET",Manhattan,"2, 3, 4","10, 13, 6, 9",Television,Cable-episodic,United States of America,"10003, 10011"
+632299,Shooting Permit,03/23/2022 06:00:00 AM,03/23/2022 08:00:00 PM,03/15/2022 10:35:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between LAFAYETTE STREET and BOWERY, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between GREAT JONES STREET and ASTOR PLACE, LAFAYETTE STREET between BLEECKER STREET and GREAT JONES STREET, WEST BROADWAY between SPRING STREET and BROOME STREET, THOMPSON STREET between SPRING STREET and BROOME STREET, BROOME STREET between WEST BROADWAY and GREENE STREET",Manhattan,2,"1, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013"
+632291,Shooting Permit,03/19/2022 07:00:00 AM,03/19/2022 09:00:00 PM,03/15/2022 08:43:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between BEVERLY ROAD and CORTELYOU ROAD, BEVERLY ROAD between ARGYLE ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+632289,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 09:00:00 PM,03/15/2022 08:28:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between BEDFORD AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 13 STREET, NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 13 STREET between BERRY STREET and WYTHE AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+632282,Theater Load in and Load Outs,03/17/2022 12:01:00 AM,03/18/2022 06:00:00 AM,03/15/2022 07:28:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+632240,Shooting Permit,03/24/2022 09:00:00 AM,03/24/2022 10:00:00 PM,03/15/2022 04:39:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 52 STREET and WEST 51 STREET, 8 AVENUE between WEST 51 STREET and WEST 50 STREET, BROADWAY between WEST 51 STREET and WEST 49 STREET, WEST 50 STREET between BROADWAY and 8 AVENUE, WEST 49 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,"10019, 10036"
+632234,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 07:00:00 PM,03/15/2022 04:19:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 18 STREET and OCEAN AVENUE, VANDERVEER PLACE between FLATBUSH AVENUE and EAST 23 STREET, FLATBUSH AVENUE between CLARENDON ROAD and VANDERVEER PLACE, VANDERVEER PLACE between FLATBUSH AVENUE and EAST 23 STREET, CLARENDON ROAD between FLATBUSH AVENUE and EAST 22 STREET, EAST 23 STREET between CLARENDON ROAD and AVENUE D",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+632223,Shooting Permit,03/23/2022 08:00:00 AM,03/23/2022 10:00:00 PM,03/15/2022 03:43:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+632216,Shooting Permit,03/22/2022 08:00:00 AM,03/22/2022 11:00:00 PM,03/15/2022 03:36:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+632192,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 10:00:00 PM,03/15/2022 02:58:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 8 AVENUE and 9 AVENUE, WEST 21 STREET between 7 AVENUE and 8 AVENUE, WEST 17 STREET between 6 AVENUE and 8 AVENUE, 8 AVENUE between WEST 21 STREET and WEST 22 STREET, 8 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 21 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+632190,Shooting Permit,03/17/2022 10:00:00 AM,03/18/2022 02:00:00 AM,03/15/2022 02:57:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","52 STREET between DEAD END and 1 AVENUE, 1 AVENUE between 52 STREET and 54 STREET",Brooklyn,7,72,Music Video,Signed Artist,United States of America,"11220, 11232"
+632182,Shooting Permit,03/18/2022 12:00:00 PM,03/19/2022 01:00:00 AM,03/15/2022 02:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE SOUTH between CHRISTOPHER STREET and CLARKSON STREET, BARROW STREET between 7 AVENUE SOUTH and WEST 4 STREET, 6TH AVE between W HOUSTON ST and W 8TH ST, WEST 4 STREET between GROVE STREET and BARROW STREET, WEST 4 STREET between JONES STREET and BARROW STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+632178,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 07:00:00 PM,03/15/2022 02:19:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between LAFAYETTE STREET and BROADWAY, BOND STREET between LAFAYETTE STREET and BROADWAY",Manhattan,2,9,Film,Feature,United States of America,10012
+632169,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 08:00:00 PM,03/15/2022 02:06:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between STAGG STREET and MEADOW STREET, STAGG STREET between BOGART STREET and WATERBURY STREET",Brooklyn,1,90,Commercial,Promo,United States of America,11206
+632162,Shooting Permit,03/18/2022 09:00:00 AM,03/18/2022 10:30:00 PM,03/15/2022 01:54:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 99 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 99 STREET and EAST 102 STREET, EAST 102 STREET between PARK AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 105 STREET, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 105 STREET, EAST 105 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,"10025, 10029"
+632160,Shooting Permit,03/22/2022 06:30:00 AM,03/22/2022 09:30:00 PM,03/15/2022 01:48:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 121 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, MOUNT MORRIS PARK WEST between WEST 121 STREET and WEST 124 STREET, WEST 122 STREET between LENOX AVENUE and MOUNT MORRIS PARK WEST, WEST 116 STREET between 5 AVENUE and LENOX AVENUE, EAST 116 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between WEST 116 STREET and WEST 117 STREET, MOUNT MORRIS PARK WEST between WEST 120 STREET and WEST 121 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027, 10029, 10035"
+632158,Shooting Permit,03/21/2022 07:30:00 AM,03/21/2022 09:30:00 PM,03/15/2022 01:41:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between CHURCH AVENUE and BEVERLEY ROAD, STRATFORD ROAD between CHURCH AVENUE and CATON AVENUE, CONEY ISLAND AVENUE between CHURCH AVENUE and HINCKLEY PLACE, CONEY ISLAND AVENUE between MATTHEWS COURT and LEWIS PLACE, WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, CONEY ISLAND AVENUE between BEVERLEY ROAD and LEWIS PLACE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11218
+632155,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:00:00 PM,03/15/2022 01:34:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONSELYEA STREET between LEONARD STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between CONSELYEA STREET and SKILLMAN AVENUE, MANHATTAN AVENUE between SKILLMAN AVENUE and JACKSON STREET, MANHATTAN AVENUE between JACKSON STREET and MEEKER AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11211
+632148,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 10:00:00 PM,03/15/2022 01:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632144,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 10:00:00 PM,03/15/2022 01:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632133,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 08:00:00 PM,03/15/2022 12:53:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between STAGG STREET and MEADOW STREET, STAGG STREET between BOGART STREET and WATERBURY STREET",Brooklyn,1,90,Commercial,Promo,United States of America,11206
+632132,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 08:00:00 PM,03/15/2022 12:51:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 1 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between SOUTH 1 STREET and SOUTH 2 STREET, WYTHE AVENUE between SOUTH 2 STREET and SOUTH 5 STREET, SOUTH 5 STREET between WYTHE AVENUE and BEDFORD AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11249
+632126,Shooting Permit,03/18/2022 09:00:00 AM,03/18/2022 11:00:00 PM,03/15/2022 12:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+632110,Shooting Permit,03/21/2022 07:00:00 PM,03/22/2022 02:00:00 AM,03/15/2022 12:02:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between EAST 117 STREET and EAST 118 STREET,Manhattan,11,25,Film,Feature,United States of America,10035
+632101,Shooting Permit,03/19/2022 09:00:00 AM,03/19/2022 11:00:00 PM,03/15/2022 11:47:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","35TH ST between REVIEW AVENUE and STARR AVENUE, REVIEW AVENUE between 35 STREET and 29 STREET, REVIEW AVENUE between 35 STREET and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+632091,Shooting Permit,03/18/2022 10:00:00 AM,03/18/2022 11:00:00 PM,03/15/2022 11:21:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+632087,Shooting Permit,03/17/2022 09:00:00 AM,03/17/2022 10:00:00 PM,03/15/2022 11:11:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 35 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+632076,Shooting Permit,03/21/2022 08:00:00 AM,03/21/2022 11:00:00 PM,03/15/2022 11:00:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, BERRY STREET between NORTH 12 STREET and NORTH 13 STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+632049,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 10:00:00 PM,03/15/2022 09:56:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+632031,Theater Load in and Load Outs,03/18/2022 12:01:00 AM,03/18/2022 11:59:00 PM,03/15/2022 09:31:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+631995,Shooting Permit,03/18/2022 02:00:00 PM,03/19/2022 05:00:00 AM,03/14/2022 09:42:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE PARK DRIVE WEST between BRIDGE PARK DRIVE NORTH and BRIDGE PARK DRIVE SOUTH, BRIDGE PARK DRIVE NORTH between FURMAN STREET and BRIDGE PARK DRIVE WEST, ATLANTIC AVENUE between HENRY STREET and COURT STREET, MONTAGUE STREET between FURMAN STREET and DEAD END",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+631952,Shooting Permit,03/18/2022 08:00:00 AM,03/18/2022 11:00:00 PM,03/14/2022 05:55:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631943,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 11:00:00 PM,03/14/2022 04:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 44 STREET and EAST 47 STREET, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 46 STREET and EAST 49 STREET, EAST 48 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,10017
+631932,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 07:00:00 PM,03/14/2022 04:24:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 57 STREET and EAST 59 STREET,Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10022"
+631919,Shooting Permit,04/16/2022 09:00:00 AM,04/17/2022 02:00:00 PM,03/14/2022 03:49:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 50 STREET and EAST 51 STREET,Manhattan,5,18,Television,News,United States of America,"10020, 10022"
+631903,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 10:00:00 PM,03/14/2022 03:10:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+631902,Shooting Permit,03/25/2022 07:00:00 AM,03/25/2022 10:00:00 PM,03/14/2022 03:09:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631901,Shooting Permit,03/18/2022 09:00:00 AM,03/18/2022 11:00:00 PM,03/14/2022 03:06:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","Baychester Avenue between Schieffelin Avenue and Needham Avenue, NEEDHAM AVENUE between BAYCHESTER AVENUE and EAST 229 STREET, EAST 229 STREET between NEEDHAM AVENUE and SCHIEFFELIN AVENUE, BROADWAY between WEST 135 STREET and WEST 137 STREET, WEST 135TH STREET between 12 AVENUE and BROADWAY, 12 AVENUE between WEST 132 STREET and WEST 135 STREET, WEST 133 STREET between BROADWAY and 12 AVENUE, WEST 132 STREET between BROADWAY and 12 AVENUE, WEST 131 STREET between BROADWAY and 12 AVENUE, WEST 125 STREET between WEST 129 STREET and BROADWAY, BROADWAY between WEST 131 STREET and WEST 133 STREET",Bronx,"12, 9","26, 30, 47",Television,Cable-episodic,United States of America,"10027, 10031, 10466"
+631896,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 05:00:00 PM,03/14/2022 02:56:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631895,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 11:00:00 PM,03/14/2022 02:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631894,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 11:00:00 PM,03/14/2022 02:53:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631893,Theater Load in and Load Outs,03/24/2022 12:01:00 AM,03/24/2022 11:59:00 PM,03/14/2022 02:52:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+631885,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 07:30:00 PM,03/14/2022 02:38:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 113 STREET and WEST 114 STREET, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 112 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 113 STREET and WEST 111 STREET, RIVERSIDE DRIVE between WEST 116 STREET and WEST 113 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,10025
+631883,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 07:00:00 PM,03/14/2022 02:35:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","LOUBET STREET between 68 AVENUE and 69 AVENUE, MANSE STREET between 68 AVENUE and 69 AVENUE, 68 AVENUE between JUNO STREET and SELFRIDGE STREET, KESSEL STREET between 68 AVENUE and 69 AVENUE, MANSE STREET between 68 AVENUE and SELFRIDGE STREET, KESSEL STREET between 68 AVENUE and SELFRIDGE STREET, SELFRIDGE STREET between LOUBET STREET and MANSE STREET, QUEENS BOULEVARD between 71 AVENUE and ASCAN AVENUE, 72ND AVE between QUEENS BLVD and AUSTIN ST, 72 ROAD between QUEENS BOULEVARD and AUSTIN STREET, ASCAN AVENUE between QUEENS BOULEVARD and AUSTIN STREET, AUSTIN STREET between 72 ROAD and ASCAN AVENUE",Queens,6,112,Television,Episodic series,United States of America,11375
+631882,Theater Load in and Load Outs,03/19/2022 12:01:00 AM,03/20/2022 06:00:00 AM,03/14/2022 02:33:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+631878,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 10:00:00 PM,03/14/2022 02:29:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631870,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 10:00:00 PM,03/14/2022 02:18:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+631869,Shooting Permit,03/16/2022 10:00:00 AM,03/16/2022 11:59:00 PM,03/14/2022 02:17:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","174 STREET between 75 AVENUE and 76 AVENUE, 76 AVENUE between 176 STREET and 173 STREET, 76 AVENUE between 173 STREET and 172 STREET, 75 AVENUE between 174 STREET and 175 STREET, 75 AVENUE between 174 STREET and 173 STREET, UNION TURNPIKE between KENT STREET and SURREY PLACE, 69 AVENUE between UTOPIA PARKWAY and 175 STREET, UTOPIA PARKWAY between 69 AVENUE and FRESH MEADOW LANE, JEWEL AVENUE between UTOPIA PARKWAY and 178 STREET, 73 AVENUE between UTOPIA PARKWAY and 177 STREET, UTOPIA PARKWAY between JEWEL AVENUE and 73 AVENUE, FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE, 68 AVENUE between FRESH MEADOW LANE and 174 STREET, 174 STREET between 68 AVENUE and 69 AVENUE, 67 AVENUE between UTOPIA PARKWAY and FRESH MEADOW LANE, 69 AVENUE between 172 STREET and 173 STREET",Queens,8,107,Television,Cable-episodic,United States of America,"11365, 11366"
+631855,Theater Load in and Load Outs,03/18/2022 12:01:00 AM,03/18/2022 11:59:00 PM,03/14/2022 01:51:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+631849,Theater Load in and Load Outs,03/17/2022 12:01:00 AM,03/17/2022 11:59:00 PM,03/14/2022 01:40:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+631813,Theater Load in and Load Outs,03/16/2022 12:01:00 AM,03/16/2022 11:59:00 PM,03/14/2022 12:07:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+631767,Shooting Permit,03/18/2022 06:00:00 AM,03/18/2022 08:00:00 PM,03/14/2022 10:16:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+631766,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 08:00:00 PM,03/14/2022 10:15:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+631757,Shooting Permit,03/17/2022 09:00:00 AM,03/18/2022 12:30:00 AM,03/14/2022 09:50:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+631756,Shooting Permit,03/16/2022 09:00:00 AM,03/16/2022 10:00:00 PM,03/14/2022 09:43:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 35 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET, 37 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+631751,Shooting Permit,03/16/2022 09:00:00 AM,03/16/2022 11:59:00 PM,03/14/2022 09:16:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+631678,Shooting Permit,03/26/2022 12:00:00 PM,03/26/2022 11:59:00 PM,03/13/2022 10:13:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",HERKIMER STREET between ST ANDREWS PLACE and BROOKLYN AVENUE,Brooklyn,3,79,Student,Student Film,United States of America,11216
+631566,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 08:00:00 PM,03/11/2022 06:35:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between PROSPECT PLACE and ST JOHNS PLACE, 6 AVENUE between PROSPECT PLACE and PARK PLACE, PARK PLACE between 5 AVENUE and 6 AVENUE, PARK PLACE between 5 AVENUE and 6 AVENUE",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+631554,Shooting Permit,03/16/2022 09:30:00 AM,03/16/2022 10:00:00 PM,03/11/2022 05:01:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 76 STREET and EAST 79 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 74 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 78 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10028, 10075"
+631549,Theater Load in and Load Outs,03/17/2022 12:01:00 AM,03/20/2022 06:00:00 AM,03/11/2022 04:52:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+631539,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 08:00:00 PM,03/11/2022 04:33:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK PLACE between 5 AVENUE and 6 AVENUE, 6 AVENUE between PROSPECT PLACE and PARK PLACE, 5 AVENUE between PROSPECT PLACE and ST JOHN'S PLACE, PARK PLACE between 5 AVENUE and 6 AVENUE",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+631538,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 09:00:00 PM,03/11/2022 04:27:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, LOCUST AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+631499,Shooting Permit,03/16/2022 08:00:00 AM,03/16/2022 10:00:00 PM,03/11/2022 03:38:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+631494,Shooting Permit,03/15/2022 08:00:00 AM,03/15/2022 10:00:00 PM,03/11/2022 03:33:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+631484,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 07:30:00 PM,03/11/2022 03:21:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAISLEY BOULEVARD SOUTH between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD, 145 PLACE between 13 ROAD and 14 AVENUE, 14 AVENUE between PARSONS BOULEVARD and 146 PLACE, 13 AVENUE between 145 PLACE and 146 STREET, 144 PLACE between 14 AVENUE and 145 PLACE, 135 AVENUE between 140 STREET and 145 STREET",Queens,"12, 7, 83","109, 113",Television,Cable-episodic,United States of America,"11357, 11359, 11430, 11434, 11436"
+631460,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 10:00:00 PM,03/11/2022 02:48:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+631450,Shooting Permit,03/16/2022 08:00:00 AM,03/16/2022 10:00:00 PM,03/11/2022 02:29:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 55 STREET and WEST 54 STREET, 10 AVENUE between WEST 54 STREET and WEST 53 STREET, 10 AVENUE between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between 10 AVENUE and 11 AVENUE, WEST 53 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 52 STREET and WEST 51 STREET, WEST 53 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 52 STREET and WEST 51 STREET",Manhattan,4,18,Television,Episodic series,United States of America,10019
+631449,Shooting Permit,03/21/2022 03:00:00 PM,03/21/2022 11:00:00 PM,03/11/2022 02:29:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",8 AVENUE between WEST 20 STREET and WEST 21 STREET,Manhattan,4,10,Television,Episodic series,United States of America,10011
+631436,Theater Load in and Load Outs,03/30/2022 12:01:00 AM,04/03/2022 06:00:00 AM,03/11/2022 02:10:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between BROADWAY and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+631431,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 07:00:00 PM,03/11/2022 02:06:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 3 STREET and EAST 4 STREET, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET, EAST 4 STREET between BOWERY and 2 AVENUE, 6 AVENUE between MINETTA LANE and BLEECKER STREET, 6 AVENUE between CARMINE STREET and WEST 3 STREET, MINETTA STREET between MINETTA LANE and 6 AVENUE",Manhattan,"2, 3","6, 9",Film,Feature,United States of America,"10003, 10012, 10014"
+631427,Shooting Permit,03/15/2022 01:00:00 AM,03/15/2022 08:00:00 PM,03/11/2022 01:49:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 145 STREET and WEST 146 STREET, BROADWAY between WEST 146 STREET and WEST 147 STREET, BROADWAY between WEST 147 STREET and WEST 148 STREET, BROADWAY between WEST 149 STREET and WEST 151 STREET, WEST 145 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 144 STREET and WEST 146 STREET, HAMILTON TERRACE between WEST 144 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 145 STREET",Manhattan,9,30,Television,Episodic series,United States of America,"10030, 10031"
+631414,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 08:00:00 PM,03/11/2022 01:22:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between FORSYTH STREET and ELDRIDGE STREET,Manhattan,3,"5, 7",Student,Student Film,United States of America,10002
+631405,Shooting Permit,03/18/2022 05:00:00 AM,03/20/2022 02:00:00 PM,03/11/2022 01:05:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 67 STREET and WEST 69 STREET, WEST 44 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"5, 64, 7","14, 20, 22",Television,Special/Awards Show,United States of America,"10023, 10036"
+631404,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 09:00:00 PM,03/11/2022 01:05:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE AVENUE between GLEASON AVENUE and SEABURY AVENUE, HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, COMMERCE AVENUE between ZEREGA AVENUE and GLEASON AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and EAST 177 STREET, WATSON AVENUE between EAST 177 STREET and HAVEMEYER AVENUE, COMMERCE AVENUE between SEABURY AVENUE and ELLIS AVENUE",Bronx,9,43,Television,Episodic series,United States of America,10462
+631394,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 09:00:00 PM,03/11/2022 12:33:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, JAVA STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between KENT STREET and GREENPOINT AVENUE, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631386,Theater Load in and Load Outs,03/15/2022 12:01:00 AM,03/29/2022 11:59:00 PM,03/11/2022 12:08:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between BROADWAY and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+631380,Shooting Permit,03/22/2022 07:00:00 AM,03/22/2022 09:00:00 PM,03/11/2022 11:49:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631377,Shooting Permit,03/21/2022 07:00:00 AM,03/21/2022 09:00:00 PM,03/11/2022 11:45:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631373,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 10:00:00 PM,03/11/2022 11:39:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+631372,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,03/11/2022 11:36:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+631357,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 11:00:00 PM,03/11/2022 11:11:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631317,Shooting Permit,03/17/2022 08:00:00 AM,03/17/2022 11:00:00 PM,03/11/2022 09:59:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631307,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 09:00:00 PM,03/11/2022 09:47:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631306,Shooting Permit,03/14/2022 08:00:00 AM,03/14/2022 09:00:00 PM,03/11/2022 09:41:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+631296,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 11:59:00 PM,03/11/2022 08:33:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, 85 AVENUE between 106 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 109 STREET, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 107 STREET between 85 AVENUE and 86 AVENUE",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+631293,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 10:00:00 PM,03/11/2022 08:23:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between GANSEVOORT STREET and HORATIO STREET, HORATIO STREET between WEST 4 STREET and HUDSON STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+631276,Theater Load in and Load Outs,03/13/2022 12:01:00 AM,03/14/2022 06:00:00 AM,03/10/2022 09:41:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+631274,Theater Load in and Load Outs,03/12/2022 12:01:00 AM,03/12/2022 11:59:00 PM,03/10/2022 09:30:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+631265,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 11:00:00 PM,03/10/2022 06:56:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631264,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 08:00:00 PM,03/10/2022 06:56:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 22 STREET and WEST 23 STREET, 6 AVENUE between WEST 21 STREET and WEST 22 STREET, 6 AVENUE between WEST 20 STREET and WEST 21 STREET, BANK STREET between WEST STREET and WASHINGTON STREET, WEST STREET between BANK STREET and BETHUNE STREET",Manhattan,"2, 4, 5","13, 6",Television,Episodic series,United States of America,"10010, 10011, 10014"
+631241,Shooting Permit,03/13/2022 08:00:00 AM,03/13/2022 09:00:00 PM,03/10/2022 05:11:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","GANSEVOORT STREET between HUDSON STREET and WEST 13 STREET, GANSEVOORT STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+631228,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,03/10/2022 04:45:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+631226,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 07:00:00 PM,03/10/2022 04:42:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA HEIGHTS between CLARK STREET and PIERREPOINT STREET,Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+631215,Shooting Permit,03/18/2022 07:00:00 AM,03/18/2022 09:00:00 PM,03/10/2022 04:17:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631213,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,03/10/2022 04:14:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 111 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 111 STREET and WEST 112 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, LENOX AVENUE between CENTRAL PARK NORTH and WEST 111 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, EAST 116 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between WEST 116 STREET and WEST 117 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10029, 10035"
+631211,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 09:00:00 PM,03/10/2022 04:10:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631207,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 09:00:00 PM,03/10/2022 04:06:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631170,Shooting Permit,03/15/2022 09:00:00 AM,03/15/2022 11:00:00 PM,03/10/2022 03:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 106 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 105 STREET and WEST 106 STREET, WEST 108 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 109 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 108 STREET and WEST 109 STREET, WEST 110 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE",Manhattan,"7, 9","24, 26",Television,Episodic series,United States of America,10025
+631150,Shooting Permit,03/11/2022 03:00:00 PM,03/12/2022 05:00:00 AM,03/10/2022 02:56:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 51 STREET, WEST 49 STREET between 6 AVENUE and 5 AVENUE, WEST 48 STREET between ROCKEFELLER PLAZA and 5 AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 50 STREET and EAST 51 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10019, 10020, 10022, 10036, 10112, 10119"
+631144,Shooting Permit,03/15/2022 07:30:00 AM,03/15/2022 09:00:00 PM,03/10/2022 02:51:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 43 STREET and 44 STREET, 43 STREET between 43 AVENUE and QUEENS BOULEVARD, 44 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 42 STREET and 43 STREET, SKILLMAN AVENUE between 44 STREET and 45 STREET, QUEENS BOULEVARD between 51 STREET and 56 STREET",Queens,2,108,Television,Episodic series,United States of America,"11104, 11377"
+631118,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 10:00:00 PM,03/10/2022 02:28:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631098,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 07:00:00 PM,03/10/2022 01:57:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 103 STREET, MADISON AVENUE between EAST 103 STREET and EAST 102 STREET, EAST 102 STREET between MADISON AVENUE and PARK AVENUE, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 101 STREET and EAST 106 STREET",Manhattan,"11, 64","22, 23",Television,Cable-episodic,United States of America,10029
+631088,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 08:00:00 PM,03/10/2022 01:38:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERDALE AVENUE between WEST 263 STREET and WEST 261 STREET, BROADWAY between WEST 260 STREET and WEST 262 STREET, BROADWAY between WEST 260 STREET and WEST 259 STREET, BROADWAY between WEST 259 STREET and DAVID SHERIDAN PLAZA",Bronx,"26, 8",50,Television,Episodic series,United States of America,10471
+631060,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 10:00:00 PM,03/10/2022 12:21:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631033,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 06:30:00 PM,03/10/2022 11:53:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between WEST 12 STREET and WEST 11 STREET, WASHINGTON STREET between BETHUNE STREET and WEST 11 STREET, BANK STREET between WEST STREET and WASHINGTON STREET, WEST 12 STREET between WEST STREET and WASHINGTON STREET, WEST 11 STREET between WEST STREET and WASHINGTON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+631019,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 11:00:00 PM,03/10/2022 11:35:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631004,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 10:00:00 PM,03/10/2022 11:03:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+631003,Theater Load in and Load Outs,03/28/2022 03:00:00 AM,03/28/2022 07:00:00 PM,03/10/2022 11:01:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+631001,Theater Load in and Load Outs,03/19/2022 07:00:00 AM,03/19/2022 07:00:00 PM,03/10/2022 11:01:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+631002,Theater Load in and Load Outs,03/21/2022 07:00:00 AM,03/21/2022 07:00:00 PM,03/10/2022 11:01:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+630999,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 09:00:00 PM,03/10/2022 10:56:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630965,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 11:00:00 PM,03/10/2022 09:42:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 AVENUE and 44 DRIVE, 44 ROAD between 10 STREET and 11 STREET, 44 ROAD between 11 STREET and 21 STREET, 44 DRIVE between 11 STREET and 21 STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+630964,Shooting Permit,03/15/2022 08:00:00 AM,03/15/2022 09:00:00 PM,03/10/2022 09:41:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 35 STREET and 36 STREET, 37 STREET between 34 AVENUE and 35 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 49 AVENUE between JACKSON AVENUE and VERNON BOULEVARD, JACKSON AVENUE between 50 AVENUE and 49 AVENUE, JACKSON AVENUE between 51 AVENUE and 50 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11106"
+630938,Theater Load in and Load Outs,03/15/2022 12:01:00 AM,03/25/2022 11:59:00 PM,03/10/2022 06:45:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and BROADWAY,Manhattan,7,20,Theater,Theater,United States of America,10023
+630921,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 09:00:00 PM,03/09/2022 09:21:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLINTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, DEKALB AVENUE between VANDERBILT AVENUE and CLINTON AVENUE, VANDERBILT AVENUE between DEKALB AVENUE and LAFAYETTE AVENUE, WAVERLY AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+630886,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,03/09/2022 05:27:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between BOARDWALK and SURF AVENUE, SURF AVENUE between WEST 10 STREET and WEST 12 STREET",Brooklyn,13,60,WEB,Not Applicable,United States of America,11224
+630884,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 10:00:00 PM,03/09/2022 05:17:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+630878,Shooting Permit,03/21/2022 06:00:00 AM,03/21/2022 10:00:00 PM,03/09/2022 04:54:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630875,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 09:00:00 PM,03/09/2022 04:47:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between PRINCE STREET and EAST HOUSTON STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, MOTT STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between LAFAYETTE STREET and BOWERY, MULBERRY STREET between PRINCE STREET and SPRING STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET",Manhattan,2,"5, 6",Television,Episodic series,United States of America,10012
+630874,Shooting Permit,03/16/2022 07:00:00 AM,03/16/2022 10:00:00 PM,03/09/2022 04:41:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+630869,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 10:00:00 PM,03/09/2022 04:33:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between JAY STREET and CHAMBERS STREET, BEACH STREET between GREENWICH STREET and HUDSON STREET, NORTH MOORE STREET between GREENWICH STREET and VARICK STREET, NORTH MOORE STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between ERICSSON PLACE and FRANKLIN STREET, VARICK STREET between NORTH MOORE STREET and FRANKLIN STREET, W BROADWAY between FRANKLIN ST and LEONARD ST, VARICK STREET between FRANKLIN STREET and WEST BROADWAY, FRANKLIN STREET between VARICK STREET and GREENWICH STREET, WORTH STREET between WEST BROADWAY and HUDSON STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+630868,Shooting Permit,03/13/2022 06:30:00 AM,03/13/2022 08:00:00 PM,03/09/2022 04:33:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",MOTT STREET between GRAND STREET and HESTER STREET,Manhattan,"2, 3","5, 7",Student,Student Film,United States of America,"10002, 10013"
+630849,Shooting Permit,03/14/2022 11:00:00 AM,03/15/2022 02:00:00 AM,03/09/2022 03:38:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 24 STREET, WEST 26 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10001
+630846,Shooting Permit,03/14/2022 07:30:00 AM,03/14/2022 08:30:00 PM,03/09/2022 03:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYCKOFF AVENUE between STARR STREET and WILLOUGHBY AVENUE, STARR STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET, IRVING AVENUE between MELROSE STREET and TROUTMAN STREET, KNICKERBOCKER AVENUE between JEFFERSON STREET and HART STREET, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between STARR STREET and WILLOUGHBY AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+630802,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 10:00:00 PM,03/09/2022 02:17:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630797,Shooting Permit,03/14/2022 08:00:00 AM,03/14/2022 10:00:00 PM,03/09/2022 02:10:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630789,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 10:00:00 PM,03/09/2022 01:59:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 114 STREET and WEST 115 STREET, ST NICHOLAS AVENUE between WEST 115 STREET and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between ST NICHOLAS AVENUE and WEST 116 STREET, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between CENTRAL PARK NORTH and WEST 114 STREET, WEST 111 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 113 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 114 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 115 STREET, CENTRAL PARK NORTH between FREDERICK DOUGLASS CIRCLE and MALCOLM X BOULEVARD",Manhattan,"10, 64","22, 28",Television,Cable-episodic,United States of America,10026
+630766,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,03/09/2022 01:23:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between MONTROSE AVENUE and MOORE STREET, BOERUM STREET between MANHATTAN AVENUE and GRAHAM AVENUE, BROADWAY between BOERUM STREET and LORIMER STREET, BOERUM STREET between BROADWAY and LEONARD STREET, LORIMER STREET between BOERUM STREET and BROADWAY, HARRISON AVENUE between WALLABOUT STREET and BARTLETT STREET, HARRISON AVENUE between LORIMER STREET and WALTON STREET, FLUSHING AVENUE between BARTLETT STREET and GERRY STREET",Brooklyn,"1, 3","79, 90",Television,Episodic series,United States of America,11206
+630765,Shooting Permit,03/10/2022 03:00:00 PM,03/11/2022 05:00:00 AM,03/09/2022 01:22:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 51 STREET, WEST 49 STREET between 6 AVENUE and 5 AVENUE, WEST 48 STREET between ROCKEFELLER PLAZA and 5 AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10019, 10020, 10022, 10036, 10112, 10119"
+630750,Shooting Permit,03/13/2022 12:00:00 PM,03/14/2022 02:00:00 AM,03/09/2022 12:58:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 24 STREET, WEST 26 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10001
+630742,Shooting Permit,03/14/2022 09:00:00 AM,03/14/2022 11:00:00 PM,03/09/2022 12:50:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, LAFAYETTE AVENUE between COLGATE AVENUE and BOYNTON AVENUE, LAFAYETTE AVENUE between BOYNTON AVENUE and MORRISON AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+630737,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 10:00:00 PM,03/09/2022 12:47:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MORRIS STREET and BATTERY PLACE, BROADWAY between EXCHANGE PLACE and BEAVER STREET, BRIDGE STREET between STATE STREET and BROAD STREET, BEAVER STREET between WHITEHALL ST. and BROAD ST., WHITEHALL STREET between BRIDGE STREET and PEARL STREET, STATE STREET between PEARL STREET and BRIDGE STREET, BROAD STREET between WATER STREET and SOUTH STREET, WATER STREET between BROAD STREET and COENTIES SLIP, SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between SOUTH WILLIAM STREET and BEAVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10006"
+630731,Shooting Permit,03/14/2022 08:00:00 AM,03/14/2022 05:00:00 PM,03/09/2022 12:42:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD,Queens,5,104,Television,Episodic series,United States of America,11379
+630717,Theater Load in and Load Outs,03/15/2022 12:01:00 AM,03/17/2022 06:00:00 AM,03/09/2022 12:23:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+630715,Theater Load in and Load Outs,03/13/2022 12:01:00 AM,03/14/2022 06:00:00 AM,03/09/2022 12:20:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+630712,Shooting Permit,03/11/2022 06:00:00 AM,03/11/2022 10:00:00 PM,03/09/2022 12:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630702,Theater Load in and Load Outs,03/12/2022 12:01:00 AM,03/12/2022 11:59:00 PM,03/09/2022 12:07:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+630698,Theater Load in and Load Outs,03/10/2022 12:01:00 AM,03/11/2022 11:59:00 PM,03/09/2022 12:02:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+630686,Shooting Permit,03/18/2022 09:00:00 AM,03/18/2022 11:00:00 PM,03/09/2022 11:41:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between CLAY PIT ROAD and JOHNSON STREET,Staten Island,3,123,Television,Episodic series,United States of America,10309
+630685,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 10:00:00 PM,03/09/2022 11:40:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630683,Shooting Permit,03/14/2022 06:30:00 AM,03/14/2022 09:00:00 PM,03/09/2022 11:37:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between DEAD END and RAILROAD AVE, RAILROAD AVE between DEAD END and GREENPOINT AVE",Queens,2,108,Television,Episodic series,United States of America,11101
+630673,Theater Load in and Load Outs,03/14/2022 12:01:00 AM,03/15/2022 11:59:00 PM,03/09/2022 11:18:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630672,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 08:00:00 PM,03/09/2022 11:17:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVENUE between UTICA AVENUE and EAST 51 STREET, FOSTER AVENUE between EAST 51 STREET and EAST 52 STREET, FOSTER AVENUE between EAST 52 STREET and EAST 53 STREET, FARRAGUT ROAD between EAST 48 STREET and EAST 49 STREET, FARRAGUT ROAD between EAST 49 STREET and UTICA AVENUE, AVENUE D between EAST 52 STREET and EAST 51 STREET, AVENUE D between UTICA AVENUE and EAST 51 STREET, UTICA AVENUE between FOSTER AVENUE and FARRAGUT ROAD",Brooklyn,17,67,Television,Episodic series,United States of America,11203
+630671,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 08:00:00 PM,03/09/2022 11:15:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between AVENUE D and FOSTER AVENUE, FOSTER AVENUE between UTICA AVENUE and EAST 51 STREET, FOSTER AVENUE between EAST 51 STREET and EAST 52 STREET, FOSTER AVENUE between EAST 52 STREET and EAST 53 STREET, FARRAGUT ROAD between EAST 48 STREET and EAST 49 STREET, FARRAGUT ROAD between EAST 49 STREET and UTICA AVENUE, AVENUE D between UTICA AVENUE and EAST 51 STREET, AVENUE D between EAST 51 STREET and EAST 52 STREET, UTICA AVENUE between FOSTER AVENUE and FARRAGUT ROAD",Brooklyn,17,67,Television,Episodic series,United States of America,11203
+630669,Theater Load in and Load Outs,03/12/2022 12:01:00 AM,03/12/2022 11:59:00 PM,03/09/2022 11:13:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630660,Theater Load in and Load Outs,03/13/2022 12:01:00 AM,03/13/2022 11:59:00 PM,03/09/2022 10:57:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630659,Theater Load in and Load Outs,03/11/2022 12:01:00 AM,03/11/2022 11:59:00 PM,03/09/2022 10:57:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630651,Theater Load in and Load Outs,03/10/2022 12:01:00 AM,03/10/2022 11:59:00 PM,03/09/2022 10:45:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between MORGAN AVENUE and DEBEVOISE AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630633,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 10:00:00 PM,03/09/2022 10:04:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630624,Shooting Permit,03/16/2022 08:00:00 AM,03/16/2022 11:00:00 PM,03/09/2022 09:52:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 34 STREET and 35 STREET, 34 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 31 AVENUE, BROADWAY between 35 STREET and 36 STREET, 35 STREET between BROADWAY and 34 AVENUE, 36 STREET between BROADWAY and 34 AVENUE, 36 STREET between BROADWAY and 31 AVENUE, BROADWAY between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+630620,Shooting Permit,03/11/2022 01:00:00 PM,03/12/2022 02:00:00 AM,03/09/2022 09:45:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 ST between 2 AVENUE and 1 AVENUE, TUDOR CITY PLACE between EAST 43 STREET and EAST 42 STREET, TUDOR CITY PLACE between EAST 41 STREET and DEAD END, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 23 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016, 10017"
+630615,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 09:00:00 PM,03/09/2022 09:33:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630608,Shooting Permit,03/11/2022 06:00:00 AM,03/11/2022 10:00:00 PM,03/09/2022 09:05:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+630564,Shooting Permit,03/16/2022 08:00:00 AM,03/17/2022 03:00:00 AM,03/08/2022 08:19:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 72 STREET and 73 STREET, 73 STREET between 47 AVENUE and 48 AVENUE, 47 AVENUE between 70 STREET and 72 STREET, 72 STREET between 47 AVENUE and 48 AVENUE, QUEENS BOULEVARD between 73 STREET and JACOBUS STREET, 48 AVENUE between 70 STREET and 72 STREET, 48 AVENUE between 72 STREET and 73 STREET, 51 AVENUE between 72 PLACE and IRELAND STREET, 51 AVENUE between 71 STREET and 72 PLACE, IRELAND STREET between QUEENS BOULEVARD and 51 AVENUE",Queens,"2, 4","108, 110",Television,Episodic series,United States of America,"11101, 11104, 11368, 11373, 11377"
+630554,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 10:00:00 PM,03/08/2022 07:05:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10065"
+630541,Shooting Permit,03/11/2022 09:30:00 AM,03/11/2022 10:00:00 PM,03/08/2022 05:50:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST, ST FELIX AVENUE between 60 LANE and 61 STREET, 60 LANE between 75 AVENUE and ST FELIX AVENUE, 61 STREET between 75 AVENUE and ST FELIX AVENUE, 60 LANE between ST FELIX AVENUE and COOPER AVENUE, ST FELIX AVENUE between 61 STREET and COOPER AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+630527,Shooting Permit,03/17/2022 07:00:00 AM,03/17/2022 11:00:00 PM,03/08/2022 05:07:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630522,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 09:00:00 PM,03/08/2022 04:51:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630520,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 10:00:00 PM,03/08/2022 04:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between THOMPSON STREET and WEST BROADWAY, THOMPSON STREET between GRAND STREET and 6 AVENUE, 6 AVENUE between GRAND STREET and THOMPSON STREET, GRAND STREET between VARICK STREET and 6 AVENUE, 6 AVENUE between WATTS STREET and GRAND STREET, THOMPSON STREET between WATTS STREET and GRAND STREET, WEST BROADWAY between SPRING STREET and BROOME STREET, BROOME STREET between WEST BROADWAY and BROADWAY, SULLIVAN STREET between PRINCE STREET and SPRING STREET, 6 AVENUE between PRINCE STREET and SPRING STREET, SPRING STREET between 6 AVENUE and WEST BROADWAY",Manhattan,2,1,Television,Episodic series,United States of America,"10012, 10013"
+630476,Shooting Permit,03/15/2022 06:00:00 AM,03/16/2022 01:00:00 AM,03/08/2022 02:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 20 STREET and WEST 21 STREET, 5 AVENUE between EAST 23 STREET and EAST 22 STREET, WEST 22 STREET between 5 AVENUE and 6 AVENUE, WEST 21 STREET between 5 AVENUE and 6 AVENUE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 8 STREET and WEST 12 STREET, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 10 STREET and WEST 11 STREET, WEST 14 STREET between HUDSON STREET and 5 AVENUE",Manhattan,"2, 4, 5","10, 13, 6",Television,Episodic series,United States of America,"10003, 10010, 10011"
+630443,Shooting Permit,03/15/2022 07:00:00 AM,03/15/2022 10:00:00 PM,03/08/2022 02:08:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WINDSOR PLACE between 10 AVENUE and 11 AVENUE, 10 AVENUE between 16 STREET and PROSPECT AVENUE, WINDSOR PLACE between HOWARD PLACE and 10 AVENUE, PROSPECT PARK WEST between WINDSOR PLACE and PROSPECT AVENUE, PROSPECT AVENUE between HOWARD PLACE and PROSPECT PARK WEST, FULLER PLACE between WINDSOR PLACE and PROSPECT AVENUE",Brooklyn,7,72,Television,Episodic series,United States of America,11215
+630418,Shooting Permit,03/14/2022 07:00:00 AM,03/14/2022 09:00:00 PM,03/08/2022 01:38:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WINDSOR PLACE between 10 AVENUE and 11 AVENUE, 10 AVENUE between 16 STREET and PROSPECT AVENUE, WINDSOR PLACE between HOWARD PLACE and 10 AVENUE, FULLER PLACE between WINDSOR PLACE and PROSPECT AVENUE",Brooklyn,7,72,Television,Episodic series,United States of America,11215
+630413,Shooting Permit,03/14/2022 08:00:00 AM,03/14/2022 10:00:00 PM,03/08/2022 01:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 125 STREET and WEST 126 STREET, LENOX AVENUE between WEST 123 STREET and WEST 125 STREET, LENOX AVENUE between WEST 126 STREET and WEST 129 STREET, WEST 126 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 128 STREET between LENOX AVENUE and 5 AVENUE, WEST 127 STREET between LENOX AVENUE and 5 AVENUE, WEST 126 STREET between LENOX AVENUE and 5 AVENUE, 5 AVENUE between WEST 128 STREET and WEST 125 STREET",Manhattan,"10, 11","25, 28, 32",Television,Cable-episodic,United States of America,"10027, 10035"
+630385,Shooting Permit,03/17/2022 06:00:00 AM,03/17/2022 11:00:00 PM,03/08/2022 11:59:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+630383,Shooting Permit,03/16/2022 06:00:00 AM,03/16/2022 08:00:00 PM,03/08/2022 11:57:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+630382,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 08:00:00 PM,03/08/2022 11:54:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+630379,Shooting Permit,03/11/2022 08:00:00 AM,03/11/2022 11:00:00 PM,03/08/2022 11:44:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630375,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 09:00:00 PM,03/08/2022 11:39:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+630373,Theater Load in and Load Outs,03/10/2022 12:01:00 AM,03/11/2022 11:59:00 PM,03/08/2022 11:34:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+630369,Shooting Permit,03/11/2022 10:00:00 AM,03/11/2022 11:00:00 PM,03/08/2022 11:27:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+630367,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 08:00:00 PM,03/08/2022 11:21:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE,Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+630358,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 11:00:00 PM,03/08/2022 11:07:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between BEARD STREET and VAN DYKE STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+630344,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 09:00:00 PM,03/08/2022 10:50:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+630335,Shooting Permit,03/11/2022 09:00:00 AM,03/11/2022 11:00:00 PM,03/08/2022 10:29:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 152 STREET and WEST 153 STREET, ST NICHOLAS AVENUE between WEST 153 STREET and WEST 158 STREET, WEST 153 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, ST NICHOLAS PLACE between WEST 152 STREET and WEST 153 STREET, CONVENT AVENUE between WEST 151 STREET and WEST 152 STREET",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+630332,Shooting Permit,03/10/2022 09:00:00 AM,03/10/2022 11:00:00 PM,03/08/2022 10:25:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","NOBLE STREET between DEAD END and WEST STREET, METROPOLITAN AVENUE between LORIMER STREET and LEONARD STREET, METROPOLITAN AVENUE between UNION AVENUE and LORIMER STREET, DEVOE STREET between UNION AVENUE and LEONARD STREET, LEONARD STREET between METROPOLITAN AVENUE and AINSLIE STREET, HAVEMEYER STREET between NORTH 8 STREET and NORTH 9 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+630330,Theater Load in and Load Outs,03/16/2022 12:01:00 AM,03/17/2022 06:00:00 AM,03/08/2022 10:20:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+630324,Shooting Permit,03/11/2022 10:00:00 AM,03/12/2022 01:30:00 AM,03/08/2022 10:07:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630322,Shooting Permit,03/10/2022 10:00:00 AM,03/11/2022 01:00:00 AM,03/08/2022 10:01:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+630317,Shooting Permit,03/11/2022 06:00:00 PM,03/11/2022 11:00:00 PM,03/08/2022 09:53:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 9 AVENUE and 10 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 24 STREET and WEST 25 STREET, 9 AVENUE between WEST 25 STREET and WEST 26 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+630316,Shooting Permit,03/10/2022 10:30:00 AM,03/10/2022 10:30:00 PM,03/08/2022 09:53:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 100 STREET and WEST 103 STREET, MANHATTAN AVENUE between WEST 101 STREET and WEST 102 STREET, MANHATTAN AVENUE between WEST 102 STREET and WEST 103 STREET, WEST 101 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 102 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 103 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 110 STREET between FREDERICK DOUGLASS BLVD and ADAM CLAYTON POWELL BLVD",Manhattan,"10, 64, 7","22, 24, 28",Television,Episodic series,United States of America,"10023, 10024, 10025, 10026"
+630306,Shooting Permit,03/10/2022 06:30:00 AM,03/10/2022 08:00:00 PM,03/08/2022 09:22:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","LORRAINE STREET between CLINTON STREET and COURT STREET, COURT STREET between BUSH STREET and LORRAINE STREET, COURT STREET between LORRAINE STREET and CREAMER STREET, LORRAINE STREET between COURT STREET and SMITH STREET, BUSH STREET between COURT STREET and CLINTON STREET, CLINTON STREET between BUSH STREET and LORRAINE STREET, CLINTON STREET between BUSH STREET and WEST 9 STREET, CLINTON STREET between LORRAINE STREET and BAY STREET, CREAMER STREET between COURT STREET and SMITH STREET, COURT STREET between CREAMER STREET and BAY STREET, COLUMBIA STREET between HALLECK STREET and DEAD END, BUSH STREET between COURT STREET and SMITH STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+630304,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 05:00:00 PM,03/08/2022 09:19:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, EAST 71 STREET between LEXINGTON AVENUE and PARK AVENUE, THIRD AVENUE between EAST 69 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+630302,Shooting Permit,03/11/2022 10:30:00 AM,03/12/2022 01:00:00 AM,03/08/2022 09:13:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 138 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 139 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 139 STREET and WEST 140 STREET, WEST 137 STREET between FREDERICK DOUGLASS BOULEVARD and EDGECOMBE AVENUE, ST NICHOLAS AVENUE between WEST 135 STREET and WEST 141 STREET",Manhattan,"10, 9","26, 32",Television,Episodic series,United States of America,10030
+630286,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 10:00:00 PM,03/08/2022 08:36:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUGHES AVENUE between EAST 182 STREET and EAST 183 STREET, EAST 183 STREET between ARTHUR AVENUE and CAMBRELENG AVENUE, ADAMS PLACE between EAST 183 STREET and CRESCENT AVENUE, EAST 182 STREET between ADAMS PLACE and BELMONT AVENUE, EAST 187 STREET between BELMONT AVENUE and HUGHES AVENUE, EAST 187 STREET between ARTHUR AVENUE and LORILLARD PLACE, ARTHUR AVENUE between EAST 187 STREET and EAST 188 STREET, ARTHUR AVENUE between EAST 187 STREET and CRESCENT AVENUE",Bronx,6,48,Television,Cable-episodic,United States of America,"10457, 10458"
+630211,Shooting Permit,03/11/2022 08:00:00 AM,03/11/2022 11:00:00 PM,03/07/2022 05:46:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","JACKSON AVENUE between 47 ROAD and 48 AVENUE, 21 STREET between JACKSON AVENUE and 49 AVENUE, JACKSON AVENUE between 47 ROAD and 48 AVENUE, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+630204,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 05:00:00 PM,03/07/2022 05:17:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between CENTRE STREET and BAXTER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, READE STREET between LAFAYETTE STREET and ELK STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CENTRE STREET between HESTER STREET and CANAL STREET",Manhattan,"1, 2",5,Television,Episodic series,United States of America,"10007, 10013"
+630203,Shooting Permit,03/09/2022 06:00:00 AM,03/09/2022 09:00:00 PM,03/07/2022 05:08:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630178,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 08:00:00 PM,03/07/2022 03:59:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+630163,Theater Load in and Load Outs,03/09/2022 12:01:00 AM,03/09/2022 11:59:00 PM,03/07/2022 03:29:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+630147,Shooting Permit,03/11/2022 09:00:00 AM,03/12/2022 12:01:00 AM,03/07/2022 03:08:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+630141,Shooting Permit,03/11/2022 11:00:00 AM,03/12/2022 03:00:00 AM,03/07/2022 02:58:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 125 STREET between WEST 129 STREET and BROADWAY, BROADWAY between WEST 129 STREET and WEST 132 STREET, WEST 133 STREET between BROADWAY and 12 AVENUE, 12 AVENUE between WEST 133 STREET and WEST 134 STREET, West 134th Street between 12 AVENUE and DEAD END, 12 AVENUE between WEST 134 STREET and WEST 135 STREET, WEST 135TH STREET between 12 AVENUE and BROADWAY, BROADWAY between WEST 135 STREET and WEST 137 STREET",Manhattan,9,"26, 30",Television,Cable-episodic,United States of America,"10027, 10031"
+630124,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 09:00:00 PM,03/07/2022 02:25:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+630121,Shooting Permit,03/10/2022 06:00:00 AM,03/10/2022 09:00:00 PM,03/07/2022 02:18:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630116,Shooting Permit,03/10/2022 08:00:00 AM,03/10/2022 10:00:00 PM,03/07/2022 02:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630111,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 10:00:00 PM,03/07/2022 02:01:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630107,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 10:00:00 PM,03/07/2022 01:57:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630104,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 06:00:00 PM,03/07/2022 01:51:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+630076,Shooting Permit,03/11/2022 08:00:00 AM,03/11/2022 11:00:00 PM,03/07/2022 01:10:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+630071,Shooting Permit,03/10/2022 08:00:00 AM,03/10/2022 11:00:00 PM,03/07/2022 01:08:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+630062,Theater Load in and Load Outs,03/14/2022 12:01:00 AM,03/15/2022 11:59:00 PM,03/07/2022 12:58:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+630055,Shooting Permit,03/10/2022 08:00:00 AM,03/10/2022 11:59:00 PM,03/07/2022 12:45:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+630046,Shooting Permit,03/10/2022 06:00:00 AM,03/10/2022 09:00:00 PM,03/07/2022 12:21:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",VARICK STREET between BEACH STREET and LAIGHT STREET,Manhattan,1,1,Commercial,Commercial,United States of America,10013
+629988,Theater Load in and Load Outs,03/13/2022 12:01:00 AM,03/15/2022 06:00:00 AM,03/07/2022 10:51:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+629968,Shooting Permit,03/09/2022 05:00:00 PM,03/10/2022 04:00:00 AM,03/07/2022 10:08:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between FRANK T MODICA WAY and PIKE SLIP, 6 AVENUE between YORK STREET and LAIGHT STREET",Manhattan,"0, 1, 2, 3","1, 7",Commercial,Commercial,United States of America,"10002, 10013, 10014"
+629969,Shooting Permit,03/10/2022 07:00:00 PM,03/11/2022 04:00:00 AM,03/07/2022 10:08:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PELL STREET and DOYERS STREET, CENTER BOULEVARD between BORDEN AVENUE and 51 AVENUE",Manhattan,"2, 3","108, 5, 84",Commercial,Commercial,United States of America,"10002, 10013, 11101, 11201"
+629953,Shooting Permit,03/09/2022 09:00:00 AM,03/09/2022 11:59:00 PM,03/07/2022 09:36:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+629948,Shooting Permit,03/11/2022 06:00:00 AM,03/11/2022 10:00:00 PM,03/07/2022 09:23:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOK STREET between BOGART STREET and EVERGREEN AVENUE, WHITE STREET between COOK STREET and VARET STREET",Brooklyn,1,90,WEB,Not Applicable,United States of America,11206
+629938,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 09:00:00 PM,03/07/2022 08:51:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+629862,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 10:00:00 PM,03/06/2022 03:41:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629720,Shooting Permit,03/09/2022 05:00:00 PM,03/10/2022 05:00:00 AM,03/04/2022 04:36:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between WEST 13 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between 9 AVENUE and HUDSON STREET",Manhattan,2,6,Film,Feature,United States of America,10014
+629697,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 10:00:00 PM,03/04/2022 03:56:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 60 STREET and WEST 61 STREET, WEST 59 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 58 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 59 STREET between 11 AVENUE and 12 AVENUE, WEST 58 STREET between 11 AVENUE and 12 AVENUE, WEST 57 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+629688,Shooting Permit,03/05/2022 07:00:00 AM,03/05/2022 11:00:00 PM,03/04/2022 03:41:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 168 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE,Manhattan,"1, 12","33, 5",Film,Short,United States of America,"10007, 10013, 10032"
+629670,Shooting Permit,03/09/2022 06:00:00 AM,03/09/2022 09:00:00 PM,03/04/2022 02:54:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 60 STREET and WEST 59 STREET, 11 AVENUE between WEST 59 STREET and WEST 57 STREET, WEST 59 STREET between 11 AVENUE and 12 AVENUE, WEST 58 STREET between 11 AVENUE and 12 AVENUE, WEST 57 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 59 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+629666,Theater Load in and Load Outs,03/12/2022 12:01:00 AM,03/13/2022 06:00:00 AM,03/04/2022 02:45:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+629665,Shooting Permit,03/11/2022 06:00:00 AM,03/11/2022 10:00:00 PM,03/04/2022 02:40:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629661,Shooting Permit,03/09/2022 06:00:00 AM,03/09/2022 10:00:00 PM,03/04/2022 02:34:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629646,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 10:00:00 PM,03/04/2022 02:02:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629645,Shooting Permit,03/11/2022 12:00:00 PM,03/12/2022 02:00:00 AM,03/04/2022 02:00:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLARENDON ROAD between BEDFORD AVENUE and EAST 25 STREET, CLARENDON ROAD between EAST 25 STREET and EAST 26 STREET, CLARENDON ROAD between EAST 26 STREET and ROGERS AVENUE, AVENUE D between BEDFORD AVENUE and EAST 25 STREET, AVENUE D between EAST 25 STREET and EAST 26 STREET, AVENUE D between EAST 26 STREET and ROGERS AVENUE, EAST 25 STREET between CLARENDON ROAD and AVENUE D, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+629574,Shooting Permit,03/09/2022 06:00:00 AM,03/09/2022 10:00:00 PM,03/04/2022 11:22:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629573,Shooting Permit,03/08/2022 09:00:00 AM,03/08/2022 11:30:00 PM,03/04/2022 11:20:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between COOPER SQUARE and 2 AVENUE, EAST 6 STREET between COOPER SQUARE and T SHEVCHENKO PLACE, COOPER SQUARE between EAST 6 STREET and EAST 8 STREET, 3 AVENUE between EAST 9 STREET and EAST 11 STREET, COOPER SQUARE between EAST 6 STREET and EAST 8 STREET, 3 AVENUE between EAST 11 STREET and EAST 12 STREET, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE, EAST 4 STREET between COOPER SQUARE and 2 AVENUE, 3 AVENUE between EAST 14 STREET and EAST 12 STREET, EAST 13 STREET between 3 AVENUE and 4 AVENUE, EAST 9 STREET between STUYVESANT STREET and 2 AVENUE, COOPER SQUARE between ASTOR PLACE and EAST 7 STREET",Manhattan,"2, 3",9,Television,Episodic series,United States of America,10003
+629563,Theater Load in and Load Outs,03/10/2022 12:01:00 AM,03/12/2022 06:00:00 AM,03/04/2022 11:00:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+629560,Shooting Permit,03/10/2022 06:00:00 AM,03/10/2022 11:00:00 PM,03/04/2022 10:57:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629546,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 10:00:00 PM,03/04/2022 10:24:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+629530,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 10:00:00 PM,03/04/2022 09:55:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629525,Shooting Permit,03/10/2022 06:00:00 AM,03/10/2022 09:00:00 PM,03/04/2022 09:33:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between READE STREET and JAY STREET, THOMAS STREET between HUDSON STREET and WEST BROADWAY, CHURCH STREET between LISPENARD STREET and WHITE STREET, WALKER STREET between AVENUE OF THE AMERICAS and CORTLANDT ALLEY, WHITE STREET between BROADWAY and CHURCH STREET, GREENWICH STREET between CHAMBERS STREET and READE STREET, GREENWICH STREET between READE STREET and DUANE STREET, CHAMBERS STREET between GREENWICH STREET and HUDSON STREET, DUANE STREET between GREENWICH STREET and HUDSON ST, GREENWICH STREET between DUANE STREET and JAY STREET, AVENUE OF THE AMERICAS between WHITE STREET and LISPENARD STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+629510,Theater Load in and Load Outs,03/13/2022 06:00:00 AM,03/14/2022 01:00:00 PM,03/04/2022 08:57:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+629505,Theater Load in and Load Outs,03/05/2022 05:00:00 AM,03/12/2022 11:59:00 PM,03/04/2022 08:45:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between DEAN STREET and ATLANTIC AVENUE, DEAN STREET between 6 AVENUE and FLATBUSH AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+629504,Shooting Permit,03/08/2022 04:00:00 PM,03/09/2022 06:00:00 AM,03/04/2022 08:44:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE",Manhattan,2,6,Film,Feature,United States of America,10014
+629502,Shooting Permit,03/08/2022 08:00:00 AM,03/08/2022 11:59:00 PM,03/04/2022 02:17:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","UNION AVENUE between RICHARDSON STREET and FROST STREET, RICHARDSON STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between RICHARDSON STREET and FROST STREET, FROST STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between FROST STREET and WITHERS STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET, UNION AVENUE between WITHERS STREET and JACKSON STREET, BAYARD STREET between UNION AVENUE and LORIMER STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+629486,Shooting Permit,03/11/2022 07:00:00 AM,03/12/2022 01:00:00 AM,03/03/2022 08:20:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between NORTH HENRY STREET and MONITOR STREET, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, GALE AVENUE between 35 STREET and GREENPOINT AVENUE, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, BRADLEY AVENUE between 35 STREET and GREENPOINT AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+629473,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 03:00:00 PM,03/03/2022 06:20:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","POILLON AVENUE between ANNADALE ROAD and AMBOY ROAD, POILLON AVENUE between AMBOY ROAD and HYLAN BOULEVARD, ANNADALE ROAD between AMBOY ROAD and POILLON AVENUE, ANNADALE ROAD between POILLON AVENUE and FURMAN STREET, HYLAN BOULEVARD between POILLON AVENUE and LIPSETT AVENUE",Staten Island,3,123,Television,Episodic series,United States of America,10312
+629445,Shooting Permit,03/08/2022 06:30:00 AM,03/08/2022 09:00:00 PM,03/03/2022 04:45:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","TIBBETT AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 231 STREET between RIVERDALE AVENUE and CORLEAR AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 232 STREET, CORLEAR AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 230 STREET between CORLEAR AVENUE and GODWIN TERRACE, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET, WEST 231 STREET between CORLEAR AVENUE and KINGSBRIDGE AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"8, 9","43, 50",Television,Cable-episodic,United States of America,"10463, 10473"
+629439,Shooting Permit,03/09/2022 07:00:00 AM,03/10/2022 01:00:00 AM,03/03/2022 04:28:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 36 STREET between 48 AVENUE and HUNTERS POINT AVENUE, 48 AVENUE between 34 STREET and 37 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+629381,Theater Load in and Load Outs,03/07/2022 12:01:00 AM,03/08/2022 06:00:00 AM,03/03/2022 03:27:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+629380,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 10:00:00 PM,03/03/2022 03:27:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629373,Theater Load in and Load Outs,03/05/2022 12:01:00 AM,03/06/2022 06:00:00 AM,03/03/2022 03:25:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+629370,Shooting Permit,03/09/2022 08:00:00 AM,03/09/2022 11:00:00 PM,03/03/2022 03:19:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 51 STREET and EAST 52 STREET, MADISON AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 52 STREET between MADISON AVENUE and 5 AVENUE, EAST 51 STREET between PARK AVENUE and 5 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+629353,Shooting Permit,03/11/2022 08:00:00 AM,03/11/2022 11:00:00 PM,03/03/2022 02:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+629351,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 10:00:00 PM,03/03/2022 02:51:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+629326,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 11:59:00 PM,03/03/2022 02:07:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 10 AVENUE, WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 16 STREET between 8 AVENUE and 9 AVENUE, WEST 15 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between WASHINGTON STREET and 8 AVENUE, WEST 88 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 87 STREET and WEST 90 STREET, WEST 87 STREET between WEST END AVENUE and RIVERSIDE DRIVE, WEST 88 STREET between WEST END AVENUE and BROADWAY, WEST 87 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 84 STREET and WEST 91 STREET, WEST 88 STREET between RIVERSIDE DRIVE and WEST END AVENUE",Manhattan,"2, 4, 7","10, 20, 24, 6",Television,Episodic series,United States of America,"10011, 10014, 10024"
+629319,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 09:00:00 PM,03/03/2022 01:49:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+629314,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 11:00:00 PM,03/03/2022 01:44:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+629309,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 08:00:00 PM,03/03/2022 01:30:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between BROADWAY and CHURCH STREET, PARK PLACE between BROADWAY and CHURCH STREET, MURRAY STREET between BROADWAY and CHURCH STREET, WARREN STREET between BROADWAY and CHURCH STREET, BROADWAY between WARREN STREET and MURRAY STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, NORTH MOORE STREET between GREENWICH STREET and WEST STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+629259,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 11:00:00 PM,03/03/2022 12:11:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629257,Shooting Permit,03/08/2022 09:00:00 AM,03/09/2022 01:00:00 AM,03/03/2022 12:05:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","5TH STREET between 46 AVENUE and NORTH BASIN ROAD, CENTER BOULEVARD between 46 AVENUE and NEW WAY ROAD, 46 AVENUE between VERNON BOULEVARD and CENTER BOULEVARD, CENTER BLVD between 46 AVENUE and NORTH BASIN ROAD, 46 AVENUE between CENTER BOULEVARD and DEAD END, BORDEN AVENUE between 5 STREET and VERNON BOULEVARD, CENTER BLVD between NEW WAY ROAD and 47 AVENUE, 5 STREET between 50 AVENUE and 51 AVENUE, 50 AVENUE between 5 STREET and 2 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+629212,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 10:00:00 PM,03/03/2022 10:43:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629194,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 10:00:00 PM,03/03/2022 10:07:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629188,Shooting Permit,03/07/2022 09:00:00 AM,03/07/2022 10:00:00 PM,03/03/2022 10:01:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 6 AVENUE and 7 AVENUE, WEST 119 STREET between MORNINGSIDE AVENUE and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 121 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 117 STREET and WEST 123 STREET, MALCOLM X BOULEVARD between WEST 125 STREET and WEST 129 STREET, WEST 126 STREET between MALCOLM X BOULEVARD and 5 AVENUE, W 124 ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD",Manhattan,"10, 5","18, 28, 32",Film,Feature,United States of America,"10026, 10027, 10036"
+629180,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 08:00:00 PM,03/03/2022 09:52:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between PIKE SLIP and FRANK T MODICA WAY, EAST 37 STREET between PARK AVENUE and 5 AVENUE",Manhattan,"1, 3, 5, 6","1, 14, 17, 7",WEB,Not Applicable,United States of America,"10002, 10016, 10018, 10038"
+629175,Shooting Permit,03/07/2022 06:30:00 AM,03/07/2022 07:30:00 PM,03/03/2022 09:36:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between BROADWAY and CHURCH STREET, PARK PLACE between BROADWAY and CHURCH STREET, MURRAY STREET between BROADWAY and CHURCH STREET, WARREN STREET between BROADWAY and CHURCH STREET, BROADWAY between WARREN STREET and MURRAY STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, WEST STREET between HUBERT STREET and CHAMBERS STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+629162,Shooting Permit,03/07/2022 02:00:00 PM,03/07/2022 11:00:00 PM,03/03/2022 08:46:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between UNIVERSITY PLACE and 5 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE, WEST 12 STREET between 5 AVENUE and 6 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between WEST 12 STREET and WEST 11 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011"
+629160,Shooting Permit,03/10/2022 11:00:00 AM,03/11/2022 01:00:00 AM,03/03/2022 08:23:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+629112,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 11:59:00 PM,03/02/2022 05:39:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 98 STREET and EAST 104 STREET",Manhattan,11,23,Television,Episodic series,United States of America,10029
+629092,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 09:00:00 PM,03/02/2022 04:21:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+629085,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 11:00:00 PM,03/02/2022 04:00:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 104 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, 5 AVENUE between EAST 105 STREET and EAST 106 STREET, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between MADISON AVENUE and 5 AVENUE, 5 AVE between EAST 98 STREET and EAST 104 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+629075,Theater Load in and Load Outs,03/09/2022 12:01:00 AM,03/13/2022 06:00:00 AM,03/02/2022 03:39:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+629073,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 11:30:00 PM,03/02/2022 03:36:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 95 STREET and EAST 97 STREET, MADISON AVENUE between EAST 94 STREET and EAST 98 STREET, EAST 96 STREET between MADISON AVENUE and 5 AVENUE, WEST 119 STREET between 5 AVENUE and LENOX AVENUE, WEST 116 STREET between 5 AVENUE and LENOX AVENUE, LENOX AVENUE between WEST 115 STREET and WEST 116 STREET, LENOX AVENUE between WEST 119 STREET and WEST 121 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, LENOX AVENUE between WEST 117 STREET and WEST 118 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, W 124TH ST between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 11, 8","19, 23, 28",Television,Cable-episodic,United States of America,"10026, 10027, 10029, 10128"
+629027,Theater Load in and Load Outs,03/09/2022 12:01:00 AM,03/11/2022 06:00:00 AM,03/02/2022 02:04:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+629020,Shooting Permit,03/08/2022 08:00:00 AM,03/08/2022 11:00:00 PM,03/02/2022 01:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 8 AVENUE and 7 AVENUE, 7 AVENUE between WEST 19 STREET and WEST 16 STREET, WEST 18 STREET between 7 AVENUE and 6 AVENUE, 8 AVENUE between WEST 23 STREET and WEST 21 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+628981,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 11:00:00 PM,03/02/2022 12:27:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between INDUSTRIAL LOOP EAST and CHEMICAL LANE,Staten Island,3,123,Television,Episodic series,United States of America,10309
+628975,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 09:00:00 PM,03/02/2022 12:11:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 51 STREET between 6 AVENUE and 8 AVENUE, BROADWAY between WEST 50 STREET and WEST 51 STREET, BROADWAY between WEST 51 STREET and WEST 52 STREET, BROADWAY between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 8 AVENUE and BROADWAY, WEST 53 STREET between BROADWAY and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+628958,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 08:00:00 PM,03/02/2022 11:39:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 22 STREET between PARK AVENUE SOUTH and BROADWAY,Manhattan,5,13,WEB,Not Applicable,United States of America,10010
+628953,Shooting Permit,03/10/2022 06:00:00 AM,03/10/2022 08:00:00 PM,03/02/2022 11:26:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628950,Shooting Permit,03/09/2022 06:00:00 AM,03/09/2022 08:00:00 PM,03/02/2022 11:19:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628949,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 08:00:00 PM,03/02/2022 11:13:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628948,Shooting Permit,03/04/2022 09:00:00 AM,03/05/2022 03:00:00 AM,03/02/2022 11:09:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 35TH ST between VAN DAM STREET and BRADLEY AVENUE, BRADLEY AVENUE between 34 STREET and 37 STREET, GREENPOINT AVENUE between STARR AVENUE and BRADLEY AVENUE, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, 34 ST between BRADLEY AVENUE and BORDEN AVE, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+628943,Shooting Permit,03/04/2022 01:00:00 PM,03/05/2022 02:00:00 AM,03/02/2022 10:56:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVE between MYRTLE AVENUE and PARK AVENUE, ADELPHI ST between MYRTLE AVENUE and PARK AVENUE, CLERMONT AVENUE between WILLOUGHBY AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between CARLTON AVENUE and ADELPHI STREET, MYRTLE AVENUE between ADELPHI STREET and CLERMONT AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, MYRTLE AVENUE between VANDERBILT AVENUE and WAVERLY AVENUE, MYRTLE AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, VANDERBILT AVE between MYRTLE AVENUE and PARK AVENUE, RYERSON STREET between PARK AVENUE and FLUSHING AVENUE, HALL ST between PARK AVENUE and FLUSHING AVENUE, PARK AVENUE between RYERSON STREET and WASHINGTON AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+628935,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 11:00:00 PM,03/02/2022 10:40:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628925,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 08:00:00 PM,03/02/2022 10:19:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628917,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 11:00:00 PM,03/02/2022 09:46:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+628916,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 10:00:00 PM,03/02/2022 09:44:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+628914,Theater Load in and Load Outs,03/04/2022 12:01:00 AM,03/06/2022 06:00:00 AM,03/02/2022 09:22:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+628912,Theater Load in and Load Outs,03/03/2022 12:01:00 AM,03/04/2022 06:00:00 AM,03/02/2022 09:21:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+628909,Shooting Permit,03/04/2022 08:00:00 AM,03/04/2022 11:00:00 PM,03/02/2022 09:11:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARLINGTON PLACE between MACON STREET and FULTON STREET, NOSTRAND AVENUE between HALSEY STREET and MACON STREET, MACON STREET between ARLINGTON PLACE and NOSTRAND AVENUE, ARLINGTON PLACE between HALSEY STREET and MACON STREET, FULTON STREET between CLAVER PLACE and SPENCER PLACE, FULTON STREET between SPENCER PLACE and BEDFORD AVENUE, FULTON STREET between BEDFORD AVENUE and VERONA PLACE, FULTON STREET between VERONA PLACE and MARCY AVENUE, GATES AVENUE between NOSTRAND AVENUE and MARCY AVENUE",Brooklyn,3,79,Television,Cable-episodic,United States of America,"11216, 11238"
+628906,Theater Load in and Load Outs,03/16/2022 05:00:00 AM,03/17/2022 01:00:00 PM,03/02/2022 08:27:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+628905,Theater Load in and Load Outs,03/12/2022 05:35:00 AM,03/13/2022 11:00:00 PM,03/02/2022 08:18:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+628903,Theater Load in and Load Outs,03/11/2022 05:30:00 AM,03/12/2022 05:30:00 PM,03/02/2022 08:07:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+628901,Theater Load in and Load Outs,03/07/2022 05:30:00 AM,03/11/2022 05:15:00 AM,03/02/2022 07:35:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+628899,Theater Load in and Load Outs,03/04/2022 05:00:00 AM,03/05/2022 11:00:00 PM,03/02/2022 07:25:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+628898,Shooting Permit,03/04/2022 04:00:00 PM,03/05/2022 05:30:00 AM,03/02/2022 06:50:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between BORDEN AVENUE and 54 AVENUE, 2 STREET between 54 AVENUE and 55 AVENUE, 54 AVENUE between CENTER BOULEVARD and 2 STREET, 54 AVENUE between 2 STREET and VERNON BOULEVARD, 55 AVENUE between CENTER BOULEVARD and 2 STREET, BORDEN AVE between CENTER BOULEVARD and 5TH ST, CENTER BOULEVARD between 56 AVENUE and 54 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 2 STREET between 51 AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+628872,Shooting Permit,03/07/2022 03:00:00 PM,03/07/2022 11:00:00 PM,03/01/2022 08:35:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",REGATTA PLACE between BAY AVENUE and DEAD END,Queens,11,111,Television,Episodic series,United States of America,11363
+628845,Shooting Permit,03/10/2022 08:00:00 AM,03/10/2022 10:00:00 PM,03/01/2022 05:31:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE, DEKALB AVENUE between FLATBUSH AVENUE EXTENSION and ROCKWELL PLACE, ROCKWELL PLACE between DEKALB AVENUE and FULTON STREET",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11217"
+628844,Shooting Permit,03/09/2022 08:00:00 AM,03/09/2022 10:00:00 PM,03/01/2022 05:31:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE, DEKALB AVENUE between FLATBUSH AVENUE EXTENSION and ROCKWELL PLACE, ROCKWELL PLACE between DEKALB AVENUE and FULTON STREET",Brooklyn,"14, 2","70, 88",Television,Episodic series,United States of America,"11201, 11217, 11218"
+628841,Shooting Permit,03/04/2022 11:00:00 AM,03/05/2022 03:00:00 AM,03/01/2022 05:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 1 STREET and GRAND STREET, RIVER STREET between GRAND STREET and METROPOLITAN AVENUE, KENT AVENUE between GRAND STREET and NORTH 1 STREET, GRAND STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between DRIGGS AVENUE and UNION AVENUE, DRIGGS AVENUE between NORTH 10 STREET and NORTH 12 STREET, NORTH 11 STREET between DRIGGS AVENUE and ROEBLING STREET, NORTH 11 STREET between DRIGGS AVENUE and BEDFORD AVENUE, NORTH 12 STREET between DRIGGS AVENUE and BEDFORD AVENUE, LORIMER STREET between BEDFORD AVENUE and DRIGGS AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+628830,Shooting Permit,03/04/2022 08:00:00 AM,03/04/2022 11:00:00 PM,03/01/2022 04:57:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 34 STREET and 38 STREET, 36 STREET between 31 AVENUE and BROADWAY, 37 STREET between 31 AVENUE and BROADWAY, STEINWAY STREET between 31 AVENUE and 34 AVENUE, STEINWAY STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11103, 11106"
+628824,Shooting Permit,03/04/2022 10:00:00 AM,03/05/2022 01:00:00 AM,03/01/2022 04:45:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 42 STREET between 10 AVENUE and 11 AVENUE, WEST 42 STREET between 11 AVENUE and 12 AVENUE, WEST 43 STREET between 11 AVENUE and 12 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, PARK AVENUE between EAST 57 STREET and EAST 62 STREET, EAST 60 STREET between PARK AVENUE and MADISON AVENUE, EAST 61 STREET between PARK AVENUE and MADISON AVENUE, EAST 62 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 63 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET",Manhattan,"4, 5, 8","10, 18, 19",Television,Episodic series,United States of America,"10022, 10036, 10065"
+628819,Shooting Permit,03/04/2022 03:00:00 PM,03/05/2022 12:00:00 AM,03/01/2022 04:36:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and MORGAN AVENUE, SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE, SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628785,Shooting Permit,03/04/2022 07:00:00 AM,03/04/2022 10:00:00 PM,03/01/2022 03:19:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628776,Theater Load in and Load Outs,03/11/2022 07:00:00 AM,03/11/2022 07:00:00 PM,03/01/2022 03:02:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+628777,Theater Load in and Load Outs,03/21/2022 07:00:00 AM,03/21/2022 07:00:00 PM,03/01/2022 03:02:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+628753,Shooting Permit,03/08/2022 06:00:00 AM,03/08/2022 08:00:00 PM,03/01/2022 02:10:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between BOWERY and LAFAYETTE STREET, MULBERRY STREET between PRINCE STREET and SPRING STREET, WOOSTER STREET between SPRING STREET and BROOME STREET, BROOME STREET between WOOSTER STREET and BROADWAY",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+628743,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 10:00:00 PM,03/01/2022 01:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between BOWERY and MOTT STREET, PRINCE STREET between MOTT STREET and MULBERRY STREET, PRINCE STREET between MULBERRY STREET and LAFAYETTE STREET, MULBERRY STREET between PRINCE STREET and SPRING STREET, WOOSTER STREET between SPRING STREET and BROOME STREET, BROOME STREET between WOOSTER STREET and BROADWAY, MOTT STREET between PRINCE STREET and SPRING STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+628737,Shooting Permit,03/08/2022 06:30:00 AM,03/08/2022 10:00:00 PM,03/01/2022 01:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between HUMBOLDT STREET and RUSSELL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628734,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 08:00:00 PM,03/01/2022 01:42:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","FISKE PLACE between GARFIELD PLACE and CARROLL STREET, CARROLL STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between UNION STREET and 1 STREET, PRESIDENT STREET between 6 AVENUE and 7 AVENUE, GARFIELD PLACE between FISKE PLACE and 8 AVENUE, GARFIELD PLACE between FISKE PLACE and POLHEMUS PLACE",Brooklyn,6,78,Television,Episodic series,United States of America,11215
+628732,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 10:00:00 PM,03/01/2022 01:28:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628712,Shooting Permit,03/03/2022 12:00:00 PM,03/03/2022 08:00:00 PM,03/01/2022 12:56:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628710,Shooting Permit,03/04/2022 10:00:00 AM,03/05/2022 01:00:00 AM,03/01/2022 12:53:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between DEAD END and GREENPOINT AVE, GREENPOINT AVE between RAILROAD AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+628704,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 10:00:00 PM,03/01/2022 12:45:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628690,Theater Load in and Load Outs,03/02/2022 05:00:00 AM,03/03/2022 05:00:00 AM,03/01/2022 12:05:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+628670,Theater Load in and Load Outs,03/23/2022 01:00:00 AM,03/23/2022 01:00:00 PM,03/01/2022 11:34:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between DEKALB AVENUE and FULTON STREET,Brooklyn,2,88,Theater,Theater,United States of America,11217
+628667,Shooting Permit,03/04/2022 03:00:00 PM,03/05/2022 04:00:00 AM,03/01/2022 11:27:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 22 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 21 STREET between PARK AVENUE SOUTH and THIRD AVENUE, PARK AVENUE SOUTH between EAST 17 STREET and EAST 20 STREET, EAST 19 STREET between PARK AVENUE SOUTH and 5 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+628659,Shooting Permit,03/03/2022 10:00:00 AM,03/03/2022 11:59:00 PM,03/01/2022 11:08:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDELL AVENUE between JACOB STREET and SPRUCE COURT, JOLINE AVENUE between JACOB STREET and POE STREET, JACOB STREET between BEDELL AVENUE and HAYWOOD STREET",Staten Island,3,123,Television,Episodic series,United States of America,10307
+628657,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 11:00:00 PM,03/01/2022 11:06:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BLOOMINGDALE ROAD between ARTHUR KILL ROAD and VETERANS ROAD WEST, ARTHUR KILL ROAD between CHEMICAL LANE and BLOOMINGDALE ROAD, MAIN STREET between AMBOY ROAD and BENTLEY LANE, AMBOY ROAD between SWINNERTON STREET and YETMAN AVENUE, CHELSEA STREET between AMBOY ROAD and PITTSVILLE AVENUE",Staten Island,3,123,Television,Episodic series,United States of America,"10307, 10309"
+628650,Theater Load in and Load Outs,03/02/2022 12:01:00 AM,03/02/2022 11:59:00 PM,03/01/2022 10:48:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+628649,Theater Load in and Load Outs,03/02/2022 12:01:00 AM,03/03/2022 06:00:00 AM,03/01/2022 10:47:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+628635,Shooting Permit,03/03/2022 08:00:00 AM,03/04/2022 01:00:00 AM,03/01/2022 10:17:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 55 AVENUE between HAMILTON PLACE and 65 PLACE, HAMILTON PLACE between 55 AVENUE and JAY AVENUE, MAURICE AVENUE between 53 AVENUE and 54 AVENUE, 55 AVENUE between 64 STREET and HAMILTON PLACE",Brooklyn,"1, 2, 5","104, 108, 94",Television,Episodic series,United States of America,"11222, 11378"
+628631,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 08:00:00 PM,03/01/2022 10:00:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 193 STREET between AUDUBON AVENUE and FORT GEORGE AVENUE, WEST 169 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE",Manhattan,12,"33, 34",Film,Short,United States of America,"10032, 10033, 10040"
+628613,Rigging Permit,03/04/2022 01:00:00 AM,03/04/2022 05:00:00 PM,03/01/2022 09:26:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between 54 ROAD and 54 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628611,Rigging Permit,03/03/2022 07:00:00 AM,03/03/2022 11:00:00 AM,03/01/2022 09:22:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between 54 ROAD and 54 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628608,Shooting Permit,03/03/2022 11:00:00 AM,03/04/2022 01:00:00 AM,03/01/2022 09:16:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 54 ROAD and 54 AVENUE, 54 AVENUE between 43 STREET and 44 STREET, 43 STREET between 55 AVENUE and 54 AVENUE, 54 ROAD between 43 STREET and 44 STREET, 50 STREET between 54 ROAD and 55 AVENUE, 55 AVENUE between 50 STREET and 58 STREET, 44 STREET between 50 AVENUE and LAUREL HILL BLVD",Queens,2,108,Television,Episodic series,United States of America,"11377, 11378"
+628592,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 11:00:00 PM,03/01/2022 08:29:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGHORN STREET between WOODS OF ARDEN ROAD and ARDEN AVENUE, ARDEN AVENUE between BATHGATE STREET and LENZIE STREET, HYLAN BOULEVARD between WOODS OF ARDEN ROAD and ARDEN AVENUE, HYLAN BOULEVARD between ARDEN AVENUE and HAROLD AVENUE, ARDEN AVENUE between HYLAN BOULEVARD and MAYBERRY PROMENADE, BLUEBERRY LANE between ARDEN AVENUE and MAYBERRY PROMENADE, MAYBERRY PROMENADE between ARDEN AVENUE and STRAWBERRY LN, HYLAN BOULEVARD between NELSON AVENUE and GOODALL STREET",Staten Island,3,"122, 123",Television,Cable-episodic,United States of America,"10308, 10312"
+628573,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 07:00:00 PM,02/28/2022 11:31:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLLEGE PLACE between LOVE LANE and DEADEND,Brooklyn,2,84,Film,Short,United States of America,11201
+628571,Shooting Permit,03/05/2022 06:00:00 AM,03/05/2022 06:00:00 PM,02/28/2022 10:52:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST BROADWAY between MARKET STREET and CATHERINE STREET,Manhattan,"1, 3",5,Film,Short,United States of America,"10002, 10007, 10038"
+628570,Shooting Permit,03/03/2022 03:00:00 PM,03/04/2022 04:00:00 AM,02/28/2022 10:52:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between WEST BROADWAY and VARICK STREET, VARICK STREET between NORTH MOORE STREET and FRANKLIN STREET, WEST BROADWAY between NORTH MOORE STREET and BEACH STREET, BEACH ST between VARICK STREET and AVENUE OF THE AMERICAS, WHITE STREET between AVENUE OF THE AMERICAS and WEST BROADWAY, AVENUE OF THE AMERICAS between WHITE STREET and LISPENARD STREET, WHITE STREET between CHURCH STREET and BROADWAY, WALKER STREET between AVENUE OF THE AMERICAS and BROADWAY, WEST BROADWAY between NORTH MOORE STREET and FRANKLIN ST",Manhattan,1,1,Television,Episodic series,United States of America,10013
+628543,Shooting Permit,03/04/2022 10:00:00 AM,03/05/2022 12:00:00 AM,02/28/2022 07:38:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAY STREET between SCARBORO AVENUE and CLIFF STREET,Staten Island,"1, 3","120, 121, 122",Film,Feature,United States of America,"10305, 10308"
+628536,Shooting Permit,03/18/2022 10:00:00 AM,03/18/2022 06:00:00 PM,02/28/2022 06:36:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between SPRING STREET and PRINCE STREET,Manhattan,2,5,WEB,Not Applicable,United States of America,10012
+628538,Shooting Permit,03/20/2022 10:00:00 AM,03/20/2022 06:00:00 PM,02/28/2022 06:36:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between SPRING STREET and PRINCE STREET,Manhattan,2,5,WEB,Not Applicable,United States of America,10012
+628537,Shooting Permit,03/19/2022 10:00:00 AM,03/19/2022 06:00:00 PM,02/28/2022 06:36:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between SPRING STREET and PRINCE STREET,Manhattan,2,5,WEB,Not Applicable,United States of America,10012
+628535,Shooting Permit,03/17/2022 10:00:00 AM,03/17/2022 06:00:00 PM,02/28/2022 06:36:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between SPRING STREET and PRINCE STREET,Manhattan,2,5,WEB,Not Applicable,United States of America,10012
+628534,Shooting Permit,03/16/2022 07:00:00 AM,03/17/2022 06:00:00 PM,02/28/2022 06:04:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 64 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Television,Special/Awards Show,United States of America,"10020, 10022, 10065"
+628525,Shooting Permit,03/03/2022 09:00:00 AM,03/04/2022 02:00:00 AM,02/28/2022 05:13:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between INDUSTRIAL LOOP EAST and CHEMICAL LANE,Staten Island,3,123,Television,Episodic series,United States of America,10309
+628522,Shooting Permit,03/03/2022 02:00:00 PM,03/04/2022 04:00:00 AM,02/28/2022 04:59:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between BEACH AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and O'BRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and RANDALL AVENUE, Soundview Ave between Leland Ave and Underhill Ave",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+628517,Shooting Permit,03/03/2022 10:30:00 AM,03/03/2022 11:30:00 PM,02/28/2022 04:54:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAY STREET between SCARBORO AVENUE and CLIFF STREET,Staten Island,1,120,Film,Feature,United States of America,10305
+628514,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 11:00:00 PM,02/28/2022 04:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between COLUMBUS CIRCLE and WEST 56 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 7 AVENUE, WEST 59 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between 7 AVENUE and 8 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET",Manhattan,"4, 5, 64","18, 22",Television,Episodic series,United States of America,10019
+628499,Shooting Permit,03/03/2022 09:00:00 AM,03/04/2022 12:00:00 AM,02/28/2022 04:14:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116 STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, RIVERSIDE DRIVE WEST between RIVERSIDE DRIVE VIADUCT and W 120 ST, RIVERSIDE DRIVE between WEST 120 STREET and WEST 116 STREET, CLAREMONT AVENUE between WEST 119 STREET and WEST 116 STREET, W 116 ST between BROADWAY and CLAREMONT AVENUE, BROADWAY between WEST 116 STREET and WEST 120 STREET, BROADWAY between WEST 121 STREET and WEST 120 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, RIVERSIDE DRIVE EAST between W 122ND ST and RIVERSIDE DRIVE VIADUCT",Manhattan,9,26,Television,Episodic series,United States of America,"10024, 10027, 10115"
+628492,Shooting Permit,03/02/2022 06:30:00 AM,03/02/2022 08:00:00 PM,02/28/2022 04:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEBSTER AVENUE between EAST 235 STREET and EAST 233 STREET, E 241 St between McLean Ave and Martha Ave",Bronx,12,47,Television,Episodic series,United States of America,10470
+628490,Shooting Permit,03/03/2022 08:00:00 AM,03/03/2022 11:00:00 PM,02/28/2022 04:03:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 34 STREET and 38 STREET, 36 STREET between 31 AVENUE and BROADWAY, BROADWAY between 37 STREET and 38 STREET, 37 STREET between 31 AVENUE and BROADWAY, BROADWAY between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+628457,Shooting Permit,03/03/2022 06:00:00 PM,03/03/2022 11:59:00 PM,02/28/2022 02:56:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 10 AVENUE and 11 AVENUE, WEST 20 STREET between 10 AVENUE and 11 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+628447,Shooting Permit,03/03/2022 08:00:00 AM,03/03/2022 11:59:00 PM,02/28/2022 02:44:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between GUERNSEY STREET and LORIMER STREET, MESEROLE AVENUE between BANKER STREET and GUERNSEY STREET, BANKER STREET between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, 31 STREET between 47 AVENUE and 48 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+628444,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 11:00:00 PM,02/28/2022 02:38:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOUGHTY STREET between MCKENNY STREET and EVERIT STREET, ELIZABETH PLACE between DOUGHTY STREET and OLD FULTON STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, HENRY STREET between POPLAR STREET and MIDDAGH STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between FRONT STREET and PROSPECT STREET, YORK STREET between BRIDGE STREET and GOLD STREET, SANDS STREET between JAY STREET and GOLD STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+628441,Shooting Permit,03/03/2022 12:00:00 PM,03/04/2022 03:00:00 AM,02/28/2022 02:35:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUTLAND ROAD between FLATBUSH AVENUE and ROGERS AVENUE, BEDFORD AVENUE between MIDWOOD STREET and WINTHROP STREET, FENIMORE STREET between BEDFORD AVENUE and ROGERS AVENUE, ROGERS AVENUE between FENIMORE STREET and WINTHROP STREET",Brooklyn,9,71,Television,Episodic series,United States of America,11225
+628437,Shooting Permit,03/04/2022 06:00:00 AM,03/04/2022 09:00:00 PM,02/28/2022 02:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between BOERUM PLACE and 3 AVENUE, SMITH STREET between PACIFIC STREET and ATLANTIC AVENUE",Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+628436,Shooting Permit,03/09/2022 01:00:00 PM,03/10/2022 03:00:00 AM,02/28/2022 02:29:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 80 STREET and EAST 85 STREET, YORK AVENUE between EAST 86 STREET and EAST 88 STREET, YORK AVENUE between EAST 85 STREET and EAST 86 STREET, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+628435,Shooting Permit,03/08/2022 10:00:00 AM,03/09/2022 01:00:00 AM,02/28/2022 02:29:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 80 STREET and EAST 88 STREET, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+628432,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 10:00:00 PM,02/28/2022 02:22:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between BUSHWICK PLACE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+628428,Shooting Permit,03/04/2022 06:00:00 AM,03/04/2022 08:00:00 PM,02/28/2022 02:12:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE,Queens,2,108,Television,Episodic series,United States of America,11378
+628422,Shooting Permit,03/11/2022 07:00:00 AM,03/11/2022 07:00:00 PM,02/28/2022 01:54:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Television,Pilot,United States of America,11222
+628419,Shooting Permit,03/04/2022 07:00:00 AM,03/04/2022 10:00:00 PM,02/28/2022 01:50:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+628416,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 10:00:00 PM,02/28/2022 01:42:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+628401,Shooting Permit,03/02/2022 02:00:00 PM,03/03/2022 01:00:00 AM,02/28/2022 01:11:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 11 AVENUE and 12 AVENUE, PARK AVENUE between NORTH PORTLAND AVENUE and CARLTON AVENUE",Brooklyn,"2, 3, 4","18, 79, 81, 84, 88",Television,Episodic series,United States of America,"10019, 11201, 11205, 11206"
+628389,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 10:00:00 PM,02/28/2022 12:53:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between FRANKLIN STREET and BANKER STREET, MESEROLE AVENUE between BANKER STREET and DOBBIN STREET, BANKER STREET between CALYER STREET and MESEROLE AVENUE, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628357,Shooting Permit,03/04/2022 10:00:00 AM,03/04/2022 11:59:00 PM,02/28/2022 12:03:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+628344,Theater Load in and Load Outs,03/05/2022 12:01:00 AM,03/06/2022 06:00:00 AM,02/28/2022 11:44:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+628339,Theater Load in and Load Outs,03/01/2022 12:01:00 AM,03/01/2022 11:59:00 PM,02/28/2022 11:39:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+628338,Theater Load in and Load Outs,03/01/2022 12:01:00 AM,03/01/2022 11:59:00 PM,02/28/2022 11:38:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+628334,Shooting Permit,03/10/2022 07:00:00 AM,03/10/2022 07:00:00 PM,02/28/2022 11:28:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Television,Pilot,United States of America,11222
+628333,Shooting Permit,03/04/2022 06:00:00 AM,03/04/2022 08:00:00 PM,02/28/2022 11:28:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 21 STREET and 14 STREET,Queens,"1, 4","110, 114",Film,Feature,United States of America,"11106, 11373"
+628331,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 07:00:00 PM,02/28/2022 11:23:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Television,Pilot,United States of America,11222
+628327,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 07:00:00 PM,02/28/2022 11:13:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Television,Pilot,United States of America,11222
+628325,Shooting Permit,03/07/2022 07:00:00 AM,03/07/2022 07:00:00 PM,02/28/2022 11:10:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE,Brooklyn,1,94,Television,Pilot,United States of America,11222
+628303,Shooting Permit,03/03/2022 06:00:00 AM,03/03/2022 08:00:00 PM,02/28/2022 10:10:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+628296,Rigging Permit,03/04/2022 09:00:00 AM,03/04/2022 05:00:00 PM,02/28/2022 09:33:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+628289,Rigging Permit,03/02/2022 09:00:00 AM,03/02/2022 05:00:00 PM,02/28/2022 08:52:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between BROADWAY and MERCER STREET,Manhattan,2,6,Student,Not Applicable,United States of America,10003
+628250,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 10:00:00 PM,02/27/2022 04:20:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 46 STREET, 45 STREET between 3 AVENUE and 2 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,"11220, 11232"
+628153,Shooting Permit,03/04/2022 02:00:00 PM,03/05/2022 05:00:00 AM,02/26/2022 12:18:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between GLENWOOD ROAD and AVENUE H, AVENUE H between CONEY ISLAND AVENUE and RUGBY ROAD, CONEY ISLAND AVENUE between GLENWOOD ROAD and AVENUE H, CONEY ISLAND AVENUE between AVENUE H and AVENUE I",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11230
+628152,Shooting Permit,03/07/2022 08:00:00 AM,03/07/2022 11:00:00 PM,02/26/2022 12:14:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and BEVERLEY ROAD, CONEY ISLAND AVENUE between ALBEMARLE ROAD and HINCKLEY PLACE, CONEY ISLAND AVENUE between BEVERLEY ROAD and LEWIS PLACE, TURNER PLACE between CONEY ISLAND AVENUE and STRATFORD ROAD, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, STRATFORD ROAD between CHURCH AVENUE and CATON AVENUE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11218
+628150,Shooting Permit,03/03/2022 11:00:00 AM,03/04/2022 03:00:00 AM,02/25/2022 11:37:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between 63 STREET and 65 STREET, 65 STREET between 8 AVENUE and 7 AVENUE, 65 STREET between 8 AVENUE and 9 AVENUE, 64 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between 65 STREET and 66 STREET, 66 STREET between 8 AVENUE and 9 AVENUE",Brooklyn,10,68,Television,Episodic series,United States of America,11220
+628128,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 10:00:00 PM,02/25/2022 05:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 130 STREET between 5 AVENUE and MADISON AVENUE, WEST 169 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE, EAST 130 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 12","25, 33",Film,Short,United States of America,"10032, 10035, 10037"
+628120,Shooting Permit,03/02/2022 08:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 04:45:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","36 STREET between BROADWAY and 34 AVENUE, 36 STREET between 31 AVENUE and BROADWAY, BROADWAY between 34 STREET and 38 STREET, 37 STREET between 31 AVENUE and BROADWAY",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+628115,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 04:17:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between BUSHWICK PLACE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+628104,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 09:00:00 PM,02/25/2022 03:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between DUPONT STREET and EAGLE STREET, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, EAGLE STREET between MANHATTAN AVENUE and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628095,Shooting Permit,03/01/2022 06:30:00 AM,03/01/2022 09:00:00 PM,02/25/2022 03:33:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRANFORD AVENUE between MURDOCK AVENUE and WILDER AVENUE, WILDER AVENUE between ST OUEN STREET and CRANFORD AVENUE, WILDER AVENUE between CRANFORD AVENUE and EAST 241 STREET, 241 STREET between WHITE PLAINS ROAD and RICHARDSON AVE, RICHARDSON AVENUE between EAST 241 STREET and EAST 240 STREET, RICHARDSON AVENUE between EAST 241 STREET and EAST 242 STREET, WHITE PLAINS ROAD between EAST 240 STREET and EAST 242 STREET, ST OUEN STREET between BARNES AVENUE and WILDER AVENUE, WEBSTER AVENUE between EAST 235 STREET and EAST 233 STREET",Bronx,12,47,Television,Episodic series,United States of America,"10466, 10470"
+628087,Shooting Permit,03/03/2022 08:00:00 AM,03/03/2022 11:00:00 PM,02/25/2022 03:19:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","68 AVENUE between UTOPIA PARKWAY and FRESH MEADOW LANE, 68 AVENUE between FRESH MEADOW LANE and 174 STREET, FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE, FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE, 69 AVENUE between UTOPIA PARKWAY and 175 STREET, 69 AVENUE between 175 STREET and 174 STREET, UTOPIA PARKWAY between 69 AVENUE and FRESH MEADOW LANE, JEWEL AVENUE between UTOPIA PARKWAY and 178 STREET, UTOPIA PARKWAY between JEWEL AVENUE and 73 AVENUE, 73 AVENUE between UTOPIA PARKWAY and 177 STREET, 174 STREET between 69 AVENUE and 68 AVENUE, 69 AVENUE between 174 STREET and 173 STREET, 175 STREET between 64 AVENUE and 67 AVENUE, 67 AVENUE between FRESH MEADOW LANE and UTOPIA PARKWAY",Queens,"11, 8","107, 111",Television,Cable-episodic,United States of America,"11362, 11364, 11365, 11366"
+628083,Shooting Permit,03/04/2022 07:00:00 AM,03/04/2022 09:00:00 PM,02/25/2022 03:08:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628081,Shooting Permit,03/03/2022 07:00:00 AM,03/03/2022 09:00:00 PM,02/25/2022 03:05:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628072,Shooting Permit,03/03/2022 06:00:00 AM,03/03/2022 10:00:00 PM,02/25/2022 02:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUPONT ST between PROVOST STREET and MCGUINNESS BLVD,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+628070,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 02:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+628052,Shooting Permit,03/02/2022 09:00:00 AM,03/02/2022 11:00:00 PM,02/25/2022 01:47:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, WEST 123 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 122 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 124 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 123 STREET and WEST 124 STREET, W 124TH ST between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 124 STREET and WEST 125 STREET, WEST 125 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 125 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 125 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, FREDERICK DOUGLAS BOULEVARD between WEST 124 STREET and WEST 125 STREET",Bronx,"10, 9","28, 43",Television,Cable-episodic,United States of America,"10027, 10473"
+628049,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 01:40:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 41 STREET between BROADWAY and 6 AVENUE, WEST 41 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 42 STREET and WEST 40 STREET, WEST 40 STREET between BROADWAY and 5 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10018, 10036"
+628047,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 01:30:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628045,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 10:00:00 PM,02/25/2022 01:25:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+628023,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 12:41:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+628003,Shooting Permit,03/02/2022 09:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 11:53:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and DOCK STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, FRONT STREET between DOCK STREET and YORK STREET, WATER STREET between MAIN STREET and DOCK STREET, GOLD STREET between SANDS STREET and NASSAU STREET, SANDS STREET between GOLD STREET and NAVY STREET, NASSAU STREET between GOLD STREET and NAVY STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11251"
+627979,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 10:00:00 PM,02/25/2022 10:48:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+627971,Shooting Permit,02/27/2022 03:30:00 PM,02/27/2022 11:59:00 PM,02/25/2022 10:34:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between RUTGERS STREET and JEFFERSON STREET, FORSYTH STREET between HESTER STREET and GRAND STREET, CANAL STREET between ELDRIDGE STREET and FORSYTH STREET, ELDRIDGE STREET between CANAL STREET and HESTER STREET, FORSYTH STREET between CANAL STREET and DIVISION STREET",Manhattan,3,"5, 7",Film,Feature,United States of America,10002
+627969,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 09:00:00 PM,02/25/2022 10:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 42 STREET and 43 STREET, 43 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 AVENUE between 42 STREET and 45 STREET, 44 STREET between QUEENS BOULEVARD and 43 AVENUE, QUEENS BOULEVARD between 43 STREET and 44 STREET, QUEENS BOULEVARD between 44 STREET and 45 STREET, 43 STREET between QUEENS BOULEVARD and 47 STREET, QUEENS BOULEVARD between 51 STREET and 58 STREET, SKILLMAN AVENUE between 44 STREET and 45 STREET, 157 STREET between 116 AVENUE and FOCH BOULEVARD, 157 STREET between 115 DRIVE and 116 AVENUE, 116 AVENUE between BARRON STREET and 160 STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and 154 STREET",Queens,"12, 2","108, 113",Television,Cable-episodic,United States of America,"11104, 11377, 11378, 11434"
+627967,Shooting Permit,03/02/2022 11:00:00 AM,03/03/2022 12:30:00 AM,02/25/2022 10:19:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 111 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 109 STREET and EAST 110 STREET, EAST 110 STREET between 1 AVENUE and 2 AVENUE, EAST 110 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 110 STREET and EAST 111 STREET, 2 AVENUE between EAST 111 STREET and EAST 112 STREET, EAST 112 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 112 STREET and EAST 115 STREET, EAST 113 STREET between DEAD END and 2 AVENUE, EAST 113 STREET between DEAD END and 2 AVENUE, EAST 111 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 110 STREET and EAST 111 STREET",Manhattan,11,23,Television,Episodic series,United States of America,10029
+627963,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 09:00:00 PM,02/25/2022 10:08:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627959,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 09:00:00 PM,02/25/2022 09:52:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","13 AVENUE between 138 STREET and 139 STREET, 139 STREET between 13 AVENUE and 14 AVENUE, 138 STREET between 11 AVENUE and 14 AVENUE, 11 AVENUE between 137 STREET and 138 STREET, 141 STREET between 11 AVENUE and 13 AVENUE, 140 STREET between 13 AVENUE and 14 AVENUE, 140 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET",Queens,7,109,Television,Episodic series,United States of America,"11356, 11357"
+627954,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 10:00:00 PM,02/25/2022 09:16:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+627951,Shooting Permit,03/01/2022 08:00:00 AM,03/01/2022 10:00:00 PM,02/25/2022 08:32:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 10 AVENUE and 6 AVENUE, WEST 26 STREET between 7 AVENUE and 6 AVENUE, WEST 26 STREET between 7 AVENUE and 6 AVENUE, WEST 26 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 28 STREET and WEST 26 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+627903,Shooting Permit,03/01/2022 09:00:00 AM,03/01/2022 11:59:00 PM,02/24/2022 05:07:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between HUDSON STREET and 8 AVENUE, 8 AVENUE between WEST 12 STREET and JANE STREET, HUDSON STREET between JANE STREET and BETHUNE STREET, BLEEKER STREET between 8 AVENUE and BANK STREET, 8 AVENUE between BLEEKER STREET and WEST 12 STREET, WEST 12 STREET between HUDSON STREET and 8 AVENUE, 6 AVENUE between WEST THIRD STREET and WASHINGTON PLACE, 6TH AVE between MINETTA LANE and W HOUSTON STREET, BLEEKER STREET between 6 AVENUE and MACDOUGAL STREET, NORTH MOORE STREET between HUDSON STREET and VARICK STREET, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET, HUDSON STREET between ERICSSON PLACE and NORTH MOORE STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 2","1, 6",Television,Episodic series,United States of America,"10011, 10012, 10013, 10014"
+627902,Theater Load in and Load Outs,02/26/2022 12:01:00 AM,02/26/2022 11:59:00 PM,02/24/2022 05:06:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 176 STREET between BROADWAY and WADSWORTH AVENUE,Manhattan,12,33,Theater,Theater,United States of America,10033
+627899,Shooting Permit,03/02/2022 10:00:00 AM,03/03/2022 04:00:00 AM,02/24/2022 04:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between JORALEMON STREET and MONTAGUE STREET, COURT STREET between JORALEMON STREET and LIVINGSTON STREET, JORALEMON STREET between COURT STREET and BOERUM PLACE, CLINTON STREET between REMSEN STREET and PIERREPONT STREET, MONTAGUE STREET between CLINTON STREET and COURT STREET, REMSEN STREET between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between HICKS STREET and BOERUM PLACE, ADAMS STREET between JOHNSON STREET and WILLOUGHBY STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+627895,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 11:00:00 PM,02/24/2022 04:11:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, LORIMER STREET between NORMAN AVENUE and MESEROLE AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET, NORMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627884,Shooting Permit,03/01/2022 07:00:00 AM,03/02/2022 01:00:00 AM,02/24/2022 03:45:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between JORALEMON STREET and MONTAGUE STREET, COURT STREET between JORALEMON STREET and LIVINGSTON STREET, JORALEMON STREET between COURT STREET and BOERUM PLACE, CLINTON STREET between JORALEMON STREET and PIERREPONT STREET, MONTAGUE STREET between CLINTON STREET and COURT STREET, REMSEN STREET between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between HICKS STREET and BOERUM PLACE, JAY STREET between JOHNSON STREET and WILLOUGHBY STREET, JAY STREET between WILLOUGHBY STREET and FULTON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+627864,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 11:00:00 PM,02/24/2022 02:43:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+627851,Shooting Permit,03/02/2022 03:00:00 PM,03/03/2022 05:00:00 AM,02/24/2022 02:17:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+627847,Shooting Permit,03/01/2022 03:00:00 PM,03/02/2022 05:00:00 AM,02/24/2022 02:10:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",20 AVENUE between SHORE BOULEVARD and 21 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+627846,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 09:00:00 PM,02/24/2022 02:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627810,Shooting Permit,03/01/2022 09:30:00 AM,03/01/2022 10:00:00 PM,02/24/2022 01:02:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRADHURST AVENUE between WEST 151 STREET and WEST 153 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 152 STREET and WEST 155 STREET, WEST 154 STREET between FREDERICK DOUGLASS BOULEVARD and MACOMBS PLACE, WEST 155 STREET between FREDERICK DOUGLASS BOULEVARD and WILLIE MAYS DRIVE, WEST 155 STREET between FREDERICK DOUGLASS BOULEVARD and WILLIE MAYS DRIVE, FREDERICK DOUGLASS BLVD between WEST 155 STREET and HARLEM RIVER DRIVE, WEST 155 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BLVD, WEST 153 STREET between FREDERICK DOUGLASS BOULEVARD and MACOMBS PLACE, MACOMBS PLACE between WEST 152 STREET and WEST 153 STREET, WEST 152 STREET between FREDERICK DOUGLASS BOULEVARD and MACOMBS PLACE, MACOMBS PLACE between WEST 154 STREET and WEST 155 STREET",Manhattan,"10, 9","30, 32",Television,Episodic series,United States of America,"10031, 10032, 10039"
+627809,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 03:00:00 PM,02/24/2022 01:02:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",TRINITY PLACE between THAMES STREET and RECTOR PLACE,Manhattan,N/A,N/A,Television,Cable-episodic,United States of America,N/A
+627808,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 09:00:00 PM,02/24/2022 01:00:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627804,Shooting Permit,02/26/2022 11:00:00 AM,02/26/2022 09:00:00 PM,02/24/2022 12:49:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, 10 STREET between 43 AVENUE and 44 AVENUE, NINTH STREET between 44 AVENUE and 43 ROAD, 44 AVENUE between NINTH STREET and TENTH STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+627800,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 09:00:00 PM,02/24/2022 12:39:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627798,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 11:30:00 PM,02/24/2022 12:31:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","SMITH STREET between 1 PLACE and CARROLL STREET, PRESIDENT STREET between COURT STREET and SMITH STREET, SMITH STREET between UNION STREET and SACKETT STREET, UNION STREET between SMITH STREET and HOYT STREET, SMITH STREET between 2 STREET and 4 STREET, COURT STREET between KANE STREET and DEGRAW STREET, COURT STREET between CARROLL STREET and SACKETT STREET, COURT STREET between 1 PLACE and 2 PLACE, WASHINGTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, DEKALB AVENUE between WAVERLY AVENUE and HALL STREET, MYRTLE AVENUE between WASHINGTON PARK and WAVERLY AVENUE, MYRTLE AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, MYRTLE AVENUE between WASHINGTON AVENUE and HALL STREET",Brooklyn,"2, 6","76, 88",Television,Episodic series,United States of America,"11201, 11205, 11231"
+627787,Shooting Permit,02/28/2022 10:00:00 AM,02/28/2022 02:00:00 PM,02/24/2022 12:02:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 8 STREET and BROADWAY, KENT AVENUE between BROADWAY and SOUTH 6 STREET, BROADWAY between KENT AVENUE and DUNHAM PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11249
+627785,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 10:00:00 PM,02/24/2022 11:59:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+627784,Shooting Permit,02/26/2022 08:00:00 AM,02/26/2022 10:00:00 PM,02/24/2022 11:58:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 42 STREET and WEST 43 STREET, WEST 43 STREET between 6 AVENUE and BROADWAY, WEST 44 STREET between 6 AVENUE and 7 AVENUE, ELDRIDGE STREET between CANAL STREET and HESTER STREET, FORSYTH STREET between HESTER STREET and GRAND STREET, CANAL STREET between ELDRIDGE STREET and FORSYTH STREET, FORSYTH STREET between CANAL STREET and DIVISION STREET",Manhattan,"3, 5","14, 5",Film,Feature,United States of America,"10002, 10017, 10018, 10036"
+627783,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 10:30:00 PM,02/24/2022 11:50:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, HENRY STREET between POPLAR STREET and MIDDAGH STREET, HENRY STREET between ORANGE STREET and PINEAPPLE STREET, HENRY STREET between PINEAPPLE STREET and CLARK STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+627782,Shooting Permit,03/07/2022 06:00:00 AM,03/07/2022 10:00:00 PM,02/24/2022 11:49:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 7 STREET and STILLWELL AVENUE, WEST 10 STREET between SURF AVENUE and BOARDWALK, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE",Brooklyn,"13, 15","60, 61",Television,Episodic series,United States of America,"11224, 11235"
+627769,Theater Load in and Load Outs,03/02/2022 01:00:00 AM,03/02/2022 11:59:00 PM,02/24/2022 11:23:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+627768,Shooting Permit,03/04/2022 04:00:00 PM,03/05/2022 04:00:00 AM,02/24/2022 11:22:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUTPHIN BOULEVARD between 97 AVENUE and 95 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 95 AVENUE and 94 AVENUE, 148 STREET between 97 AVENUE and 95 AVENUE, 95 AVENUE between 149 STREET and 150 STREET, 149 STREET between 97 AVENUE and 95 AVENUE, 148 STREET between 90 AVENUE and 88 AVENUE, 89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET",Queens,12,103,Television,Cable-episodic,United States of America,11435
+627767,Shooting Permit,03/03/2022 12:00:00 PM,03/04/2022 04:00:00 AM,02/24/2022 11:21:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between LAUREL HILL BOULEVARD and RAILROAD AVENUE, REVIEW AVENUE between RAILROAD AVENUE and 37 STREET, STARR AVENUE between 34 STREET and BORDEN AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11101
+627750,Shooting Permit,02/25/2022 06:00:00 AM,02/26/2022 01:00:00 AM,02/24/2022 10:20:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627743,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 10:00:00 PM,02/24/2022 10:03:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between CANAL STREET and WATTS STREET, GRAND STREET between VARICK STREET and 6 AVENUE, WEST BROADWAY between SPRING STREET and BROOME STREET, BROOME STREET between WEST BROADWAY and MERCER STREET, THOMPSON STREET between WATTS STREET and GRAND STREET",Manhattan,2,1,Television,Episodic series,United States of America,"10012, 10013"
+627726,Shooting Permit,03/02/2022 02:00:00 PM,03/03/2022 04:00:00 AM,02/24/2022 07:31:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between SPRING STREET and BROOME STREET, SPRING STREET between WOOSTER STREET and BROADWAY, GREENE STREET between SPRING STREET and PRINCE STREET, PRINCE STREET between GREENE STREET and WOOSTER STREET, PRINCE STREET between GREENE STREET and MERCER STREET, BROADWAY between SPRING STREET and WEST HOUSTON STREET",Manhattan,2,"1, 5",Film,Feature,United States of America,10012
+627714,Shooting Permit,03/02/2022 08:00:00 AM,03/02/2022 11:00:00 AM,02/23/2022 11:27:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between 63 STREET and 65 STREET, 65 STREET between 8 AVENUE and 7 AVENUE, 65 STREET between 8 AVENUE and 9 AVENUE, 64 STREET between 8 AVENUE and 9 AVENUE",Brooklyn,10,68,Television,Episodic series,United States of America,11220
+627712,Shooting Permit,02/28/2022 08:00:00 AM,02/28/2022 10:00:00 PM,02/23/2022 11:10:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between BEVERLEY ROAD and CORTELYOU ROAD, BEVERLEY ROAD between WESTMINSTER ROAD and MARLBOROUGH ROAD, CORTELYOU ROAD between ARGYLE ROAD and EAST 17 STREET, RUGBY ROAD between CORTELYOU ROAD and DORCHESTER ROAD, BEVERLEY ROAD between STRATFORD ROAD and CONEY ISLAND AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+627707,Shooting Permit,03/01/2022 08:00:00 AM,03/01/2022 10:00:00 PM,02/23/2022 10:46:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","33 STREET between 36 AVENUE and 37 AVENUE, 33 STREET between 36 AVENUE and 35 AVENUE, 34 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 33 STREET and 35 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+627686,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 11:00:00 PM,02/23/2022 08:05:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between HENRY STREET and BOERUM PLACE,Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+627677,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 11:00:00 PM,02/23/2022 07:07:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+627672,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 11:00:00 PM,02/23/2022 06:48:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between WEST BROADWAY and BROADWAY, BROADWAY between STONE STREET and EXCHANGE PLACE, BRIDGE STREET between STATE STREET and BROAD STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET, STATE STREET between PEARL STREET and BRIDGE STREET, BROADWAY between MORRIS STREET and BATTERY PLACE",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10006, 10007"
+627645,Shooting Permit,02/28/2022 06:30:00 AM,02/28/2022 08:00:00 PM,02/23/2022 05:09:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","3RD AVENUE between 147 STREET and WHITESTONE EXPY, WHITESTONE EXPY between 3 AVE and 8 AVE, WHITESTONE EXPY between 3 AVE and 4 AVE, 147 ST between DEAD END and 4 AVE, 8 AVENUE between PARSONS BOULEVARD and WHITESTONE EXPRESSWAY, 15 AVENUE between 138 STREET and 143 STREET",Queens,7,109,Television,Episodic series,United States of America,11357
+627638,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 10:00:00 PM,02/23/2022 04:41:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between FRANKLIN AVENUE and CLASSON AVENUE,Brooklyn,3,79,Television,Episodic series,United States of America,11238
+627635,Theater Load in and Load Outs,02/26/2022 02:00:00 PM,02/28/2022 06:00:00 PM,02/23/2022 04:30:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE,Manhattan,7,20,Television,Not Applicable,United States of America,10023
+627628,Shooting Permit,02/28/2022 09:00:00 AM,02/28/2022 11:00:00 PM,02/23/2022 04:13:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",168TH ST. between FORT WASHINGTON AVENUE and BROADWAY,Manhattan,12,33,WEB,Not Applicable,United States of America,10032
+627625,Shooting Permit,03/01/2022 08:00:00 AM,03/01/2022 10:00:00 PM,02/23/2022 04:10:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between YORK AVENUE and 1 AVENUE,Manhattan,8,19,WEB,Not Applicable,United States of America,"10021, 10065"
+627626,Shooting Permit,03/02/2022 08:00:00 AM,03/02/2022 10:00:00 PM,02/23/2022 04:10:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between YORK AVENUE and 1 AVENUE,Manhattan,8,19,WEB,Not Applicable,United States of America,"10021, 10065"
+627624,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 10:00:00 PM,02/23/2022 04:09:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 21 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+627621,Theater Load in and Load Outs,02/25/2022 05:00:00 AM,02/27/2022 11:00:00 PM,02/23/2022 04:03:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+627613,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 11:00:00 PM,02/23/2022 03:49:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between WAVERLY PLACE and GREENWICH AVENUE, WAVERLY PLACE between WEST 10 STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between GAY STREET and GREENWICH AVENUE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 12 STREET, WEST 9 STREET between 5 AVENUE and 6 AVENUE, EAST 9 STREET between 5 AVENUE and BROADWAY, 5 AVENUE between WEST 9 STREET and WEST 11 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011, 10014"
+627590,Shooting Permit,02/28/2022 08:00:00 AM,02/28/2022 09:00:00 PM,02/23/2022 02:52:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627584,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 10:00:00 PM,02/23/2022 02:30:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between KENT AVENUE and WYTHE AVENUE, FRANKLIN STREET between MESEROLE AVENUE and NORTH 14 STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 14 STREET and NORTH 15 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, KENT AVENUE between NORTH 11 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+627559,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 10:00:00 PM,02/23/2022 01:12:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627554,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 05:00:00 PM,02/23/2022 01:03:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","TIBBETT AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 231 STREET between RIVERDALE AVENUE and CORLEAR AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 232 STREET, CORLEAR AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 230 STREET between CORLEAR AVENUE and GODWIN TERRACE, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET",Bronx,8,50,Television,Cable-episodic,United States of America,10463
+627553,Shooting Permit,02/25/2022 09:00:00 AM,02/25/2022 10:00:00 PM,02/23/2022 01:03:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+627537,Shooting Permit,03/14/2022 06:00:00 AM,03/14/2022 10:00:00 PM,02/23/2022 12:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Commercial,Commercial,United States of America,"10019, 10020"
+627536,Shooting Permit,03/15/2022 06:00:00 AM,03/15/2022 10:00:00 PM,02/23/2022 12:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Commercial,Commercial,United States of America,"10019, 10020"
+627518,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 10:00:00 PM,02/23/2022 11:49:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 4 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 4 STREET and SOUTH 5 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11249
+627504,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 11:00:00 PM,02/23/2022 11:12:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWELL STREET, NEWEL STREET between GREENPOINT AVENUE and MESEROLE AVENUE, MCGUINESS BOULEVARD between CALYER STREET and NORMAN STREET, CALYER STREET between DIAMOND STREET and NEWEL STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, MANHATTAN AVENUE between BOX STREET and DUPONT STREET, BOX STREET between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, BOX STREET between MANHATTAN AVENUE and COMMERCIAL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627502,Theater Load in and Load Outs,02/28/2022 12:01:00 AM,03/02/2022 06:00:00 AM,02/23/2022 11:07:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+627497,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 10:00:00 PM,02/23/2022 10:53:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between HUDSON STREET and 8 AVENUE, 8 AVENUE between WEST 12 STREET and JANE STREET, HUDSON STREET between JANE STREET and BETHUNE STREET, BLEEKER STREET between 8 AVENUE and BANK STREET, 8 AVENUE between BLEEKER STREET and WEST 12 STREET, WEST 12 STREET between HUDSON STREET and 8 AVENUE, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, 6 AVENUE between WEST 11 STREET and WEST 10 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+627465,Shooting Permit,03/03/2022 06:00:00 AM,03/03/2022 10:00:00 PM,02/23/2022 10:15:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+627464,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 10:00:00 PM,02/23/2022 10:13:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+627448,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 08:00:00 PM,02/23/2022 09:19:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, 5 AVENUE between EAST 105 STREET and EAST 109 STREET, EAST 104 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 102 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+627440,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 08:00:00 PM,02/23/2022 08:44:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET, WILLIAM STREET between PINE STREET and CEDAR STREET, MAIDEN LANE between GOLD STREET and SOUTH STREET, WATER STREET between PINE STREET and MAIDEN LANE, JOHN STREET between SOUTH STREET and WATER STREET, JOHN STREET between PEARL STREET and WATER STREET, LIBERTY STREET between TRINITY PLACE and BROADWAY, LIBERTY STREET between NASSAU STREET and BROADWAY, BROADWAY between LIBERTY STREET and CORTLANDT STREET, MAIDEN LANE between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and JOHN STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10006, 10038, 10045"
+627438,Shooting Permit,02/27/2022 06:00:00 AM,02/27/2022 09:00:00 PM,02/23/2022 08:39:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, WILLIAM STREET between PINE STREET and CEDAR STREET, MAIDEN LANE between GOLD STREET and SOUTH STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between PEARL STREET and WATER STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+627436,Shooting Permit,02/25/2022 09:00:00 AM,02/25/2022 11:30:00 PM,02/23/2022 08:24:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+627424,Theater Load in and Load Outs,02/24/2022 07:00:00 AM,02/25/2022 01:00:00 AM,02/23/2022 03:05:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 6 AVENUE and FORT GREENE PLACE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+627396,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 11:00:00 PM,02/22/2022 08:20:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+627395,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 11:00:00 PM,02/22/2022 08:19:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+627384,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 10:00:00 PM,02/22/2022 06:54:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE, 35 STREET between 37 AVENUE and 38 AVENUE, 35 STREET between 37 AVENUE and 38 AVENUE, 35 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 35 STREET and 36 STREET, 36 STREET between 37 AVENUE and NORTHERN BOULEVARD",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11106"
+627378,Shooting Permit,02/28/2022 01:00:00 PM,03/01/2022 12:00:00 AM,02/22/2022 05:53:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 44 ROAD and 44 AVENUE, 44 AVENUE between 22 STREET and 23 STREET, HUNTER STREET between 43 AVENUE and 44 ROAD, HUNTER STREET between 44 ROAD and 44 DRIVE, 44 ROAD between 23 STREET and CRESCENT STREET, 24 STREET between 43 AVENUE and 44 ROAD, THOMPSON AVENUE between JACKSON AVENUE and 44 DRIVE, VERNON BOULEVARD between QUEENSBORO BRIDGE and 40 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+627361,Shooting Permit,02/25/2022 10:00:00 AM,02/25/2022 11:59:00 PM,02/22/2022 05:12:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PARK between MYRTLE AVENUE and DEKALB AVENUE, DEKALB AVENUE between FT GREENE PLACE and CUMBERLAND STREET, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11205, 11217"
+627359,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 07:00:00 PM,02/22/2022 05:05:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between BROOME STREET and GRAND STREET, BROOME STREET between MERCER STREET and BROADWAY, CROSBY STREET between GRAND STREET and HOWARD STREET, HOWARD STREET between CROSBY STREET and LAFAYETTE STREET, GRAND STREET between CROSBY STREET and BROADWAY, LAFAYETTE STREET between HOWARD STREET and CANAL STREET, BAXTER STREET between HESTER STREET and CANAL STREET, HESTER STREET between BAXTER STREET and CENTRE STREET, BROADWAY between BROOME STREET and GRAND STREET, GRAND STREET between BROADWAY and BAXTER STREET, LAFAYETTE STREET between BROOME STREET and HOWARD STREET, CENTRE STREET between BROOME STREET and HOWARD STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,10013
+627345,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 08:00:00 PM,02/22/2022 04:25:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 3 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,9,Student,Student Film,United States of America,10003
+627341,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 11:59:00 PM,02/22/2022 04:21:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, AVENUE D between EAST 49 STREET and UTICA AVENUE, AVENUE D between ALBANY AVENUE and TROY AVENUE, AVENUE D between TROY AVENUE and EAST 45 STREET, AVENUE D between EAST 45 STREET and EAST 46 STREET, AVENUE D between EAST 46 STREET and SCHENECTADY AVENUE, AVENUE D between SCHNECTADY AVENUE and EAST 48 STREET, AVENUE D between UTICA AVENUE and EAST 52 STREET, EAST 49 STREET between AVENUE D and FOSTER AVENUE, UTICA AVENUE between AVENUE D and FOSTER AVENUE, EAST 42 STREET between AVENUE D and FOSTER AVENUE",Queens,"1, 17, 2","108, 67, 94",Television,Episodic series,United States of America,"11101, 11203, 11222"
+627312,Shooting Permit,03/08/2022 07:00:00 AM,03/08/2022 06:00:00 PM,02/22/2022 03:23:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between CANAL STREET and LISPENARD STREET, LISPENARD STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+627303,Theater Load in and Load Outs,02/25/2022 12:01:00 AM,02/28/2022 06:00:00 AM,02/22/2022 02:58:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+627302,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 09:00:00 PM,02/22/2022 02:57:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+627297,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 09:00:00 PM,02/22/2022 02:45:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+627296,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 09:00:00 PM,02/22/2022 02:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627295,Shooting Permit,02/25/2022 01:00:00 PM,02/26/2022 02:00:00 AM,02/22/2022 02:42:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627279,Theater Load in and Load Outs,02/26/2022 12:01:00 AM,02/27/2022 06:00:00 AM,02/22/2022 01:42:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+627266,Rigging Permit,02/25/2022 10:00:00 PM,02/26/2022 02:00:00 PM,02/22/2022 12:58:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Episodic series,United States of America,10036
+627265,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 10:00:00 PM,02/22/2022 12:57:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, 6 AVENUE between WEST 43 STREET and WEST 44 STREET, VANDERBILT AVENUE between EAST 46 STREET and EAST 47 STREET, PARK AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 46 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10167, 10177"
+627264,Shooting Permit,02/25/2022 09:00:00 AM,02/25/2022 11:00:00 PM,02/22/2022 12:57:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between HUDSON STREET and EIGHTH AVENUE, 8 AVENUE between WEST 12 STREET and JANE STREET, HUDSON STREET between JANE STREET and BETHUNE STREET, BLEEKER STREET between 8 AVENUE and BANK STREET, 8 AVENUE between BLEEKER STREET and WEST 12 STREET, WEST 12 STREET between HUDSON STREET and 8 AVENUE, WEST 9 STREET between FIFTH AVENUE and SIXTH AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, 6 AVENUE between WEST 11 STREET and WEST 10 STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+627252,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 10:00:00 PM,02/22/2022 12:30:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between WHITE STREET and BOGART STREET, BOGART STREET between DEAD END and JOHNSON AVENUE, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+627251,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 10:00:00 PM,02/22/2022 12:25:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627244,Shooting Permit,02/24/2022 09:00:00 AM,02/25/2022 12:30:00 AM,02/22/2022 12:00:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","82 AVENUE between 218 STREET and 85 AVENUE, KEW GARDENS ROAD between LEFFERTS BOULEVARD and 84 ROAD, QUEENS BOULEVARD between MAIN STREET and 86 AVENUE, 84 DRIVE between QUEENS BOULEVARD and MANTON STREET, UNION TURNPIKE between 220 STREET and SPRINGFIELD BOULEVARD, PECK AVENUE between 218 STREET and 219 STREET, 218 STREET between 82 AVENUE and 86 AVENUE, 82 AVENUE between 85 AVENUE and 86 AVENUE, QUEENS BOULEVARD between 83 AVENUE and MAIN STREET, UNION TURNPIKE between BELL BOULEVARD and 220 STREET, BELL BOULEVARD between PECK AVENUE and UNION TURNPIKE, AUSTIN STREET between LEFFERTS BOULEVARD and 84 ROAD, 82 AVENUE between BELL BOULEVARD and 218 STREET",Queens,"11, 8, 9","102, 107, 111",Television,Episodic series,United States of America,"11364, 11415, 11427, 11435"
+627240,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 02:00:00 PM,02/22/2022 11:44:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between NASSAU AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+627230,Shooting Permit,03/03/2022 06:00:00 AM,03/03/2022 01:00:00 PM,02/22/2022 11:14:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 21 STREET and 14 STREET,Queens,1,114,Film,Feature,United States of America,11106
+627229,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 08:00:00 PM,02/22/2022 11:08:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 21 STREET and 14 STREET,Queens,1,114,Film,Feature,United States of America,11106
+627223,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 10:00:00 PM,02/22/2022 10:52:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","TILLARY STREET between JAY STREET and FLATBUSH AVENUE EXTENSION, TILLARY STREET between ADAMS STREET and JAY STREET, JAY STREET between CATHEDRAL PLACE and CHAPEL STREET, WASHINGTON PARK between MYRTLE AVENUE and DEKALB AVENUE, DEKALB AVENUE between FT GREENE PLACE and CUMBERLAND STREET, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205, 11217"
+627222,Shooting Permit,02/25/2022 08:00:00 AM,02/25/2022 10:00:00 PM,02/22/2022 10:49:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and 31 PLACE, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+627221,Shooting Permit,03/02/2022 06:00:00 AM,03/02/2022 08:00:00 PM,02/22/2022 10:38:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLARENDON ROAD between BEDFORD AVENUE and EAST 25 STREET, CLARENDON ROAD between EAST 25 STREET and EAST 26 STREET, CLARENDON ROAD between EAST 26 STREET and ROGERS AVENUE, AVENUE D between BEDFORD AVENUE and EAST 25 STREET, AVENUE D between BEDFORD AVENUE and EAST 25 STREET, AVENUE D between EAST 26 STREET and ROGERS AVENUE, CORTELYOU ROAD between BEDFORD AVENUE and EAST 25 STREET, CORTELYOU ROAD between EAST 25 STREET and EAST 26 STREET, CORTELYOU ROAD between EAST 26 STREET and ROGERS AVENUE, EAST 25 STREET between CLARENDON ROAD and AVENUE D",Brooklyn,17,67,Television,Episodic series,United States of America,11226
+627215,Theater Load in and Load Outs,02/24/2022 12:01:00 AM,02/24/2022 11:59:00 PM,02/22/2022 10:07:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+627216,Theater Load in and Load Outs,02/27/2022 12:01:00 AM,02/27/2022 11:59:00 PM,02/22/2022 10:07:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+627212,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 10:00:00 PM,02/22/2022 09:56:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+627211,Shooting Permit,02/24/2022 10:00:00 AM,02/24/2022 11:59:00 PM,02/22/2022 09:54:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,"1, 7","109, 114",Television,Episodic series,United States of America,"11101, 11106, 11359"
+627210,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 08:00:00 PM,02/22/2022 09:53:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGS HIGHWAY between EAST 7 STREET and EAST 8 STREET, EAST 8TH STREET between QUENTIN ROAD and KINGS HIGHWAY, CONEY ISLAND AVENUE between KINGS HIGHWAY and AVENUE R, KINGS HIGHWAY between EAST 9 STREET and EAST 8 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11223
+627204,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 06:00:00 PM,02/22/2022 09:05:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 21 STREET and 14 STREET,Queens,1,114,Film,Feature,United States of America,11106
+627174,Shooting Permit,02/28/2022 08:00:00 AM,02/28/2022 09:00:00 PM,02/21/2022 07:28:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTCOTT BOULEVARD between VICTORY BOULEVARD and COALE AVENUE, COALE AVENUE between WESTCOTT BOULEVARD and JEWETT AVENUE",Staten Island,1,120,Film,Feature,United States of America,10314
+627163,Theater Load in and Load Outs,02/25/2022 12:01:00 AM,02/26/2022 06:00:00 AM,02/21/2022 03:48:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+627162,Theater Load in and Load Outs,02/24/2022 12:01:00 AM,02/24/2022 11:59:00 PM,02/21/2022 03:46:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+627147,Theater Load in and Load Outs,02/25/2022 12:01:00 AM,02/27/2022 06:00:00 AM,02/21/2022 01:03:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+627130,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 06:00:00 PM,02/21/2022 10:36:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 21 STREET and 14 STREET,Queens,1,114,Film,Feature,United States of America,11106
+627046,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 03:00:00 PM,02/19/2022 04:03:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and HARRISON PLACE, INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE, PORTER AVENUE between JOHNSON AVENUE and THAMES STREET, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+626989,Shooting Permit,03/01/2022 08:00:00 AM,03/01/2022 12:00:00 PM,02/18/2022 05:16:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",BLEECKER STREET between CHARLES STREET and PERRY STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+626974,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 09:00:00 PM,02/18/2022 03:32:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 79 STREET and WEST 84 STREET, BROADWAY between WEST 84 STREET and WEST 86 STREET, WEST 83 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 82 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 82 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 81 STREET between WEST END AVENUE and BROADWAY, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Television,Episodic series,United States of America,10024
+626972,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 10:00:00 PM,02/18/2022 03:30:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and DEAD END, 54 AVENUE between CENTER BOULEVARD and SECOND STREET, 55 AVENUE between CENTER BOULEVARD and SECOND STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+626960,Shooting Permit,03/01/2022 06:00:00 AM,03/01/2022 08:00:00 PM,02/18/2022 02:47:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","ERASMUS STREET between BEDFORD AVENUE and WOODS PLACE, SNYDER AVENUE between BEDFORD AVENUE and WOODS PLACE, SNYDER AVENUE between WOODS PLACE and LOTT STREET, SNYDER AVENUE between LOTT STREET and VERONICA PLACE, ALBEMARLE ROAD between BEDFORD AVENUE and VERONICA PLACE, BEDFORD AVENUE between ERASMUS STREET and SNYDER AVENUE, BEDFORD AVENUE between SNYDER AVENUE and ALBEMARLE ROAD, ALBEMARLE ROAD between FLATBUSH AVENUE and BEDFORD AVENUE, ERASMUS STREET between WOODS PLACE and VERONICA PLACE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+626957,Shooting Permit,02/28/2022 06:00:00 AM,02/28/2022 10:00:00 PM,02/18/2022 02:36:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626955,Shooting Permit,02/26/2022 08:30:00 AM,02/27/2022 12:30:00 AM,02/18/2022 02:30:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626953,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 09:00:00 PM,02/18/2022 02:16:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626951,Shooting Permit,02/25/2022 08:00:00 AM,02/26/2022 12:01:00 AM,02/18/2022 02:09:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626914,Shooting Permit,02/21/2022 05:00:00 AM,02/21/2022 10:00:00 PM,02/18/2022 12:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between WEST 9 STREET and HUNTINGTON STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+626910,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 10:00:00 PM,02/18/2022 12:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+626909,Shooting Permit,02/23/2022 12:00:00 PM,02/23/2022 11:00:00 PM,02/18/2022 12:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between BROADWAY and SOUTH 6 STREET, BROADWAY between KENT AVENUE and WYTHE AVENUE, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between BROADWAY and SOUTH 8 STREET, FLUSHING AVENUE between CLINTON AVENUE and RYERSON STREET, WAVERLY AVENUE between FLUSHING AVENUE and PARK AVENUE, HALL STREET between FLUSHING AVENUE and PARK AVENUE, PARK AVENUE between WAVERLY AVENUE and HALL STREET",Brooklyn,"1, 2","88, 90",Television,Episodic series,United States of America,"11205, 11249"
+626902,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 11:00:00 PM,02/18/2022 11:35:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, VANDERBILT AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, COFFEY STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and CONOVER STREET",Brooklyn,"2, 6","76, 88",Television,Episodic series,United States of America,"11205, 11231"
+626893,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 08:00:00 PM,02/18/2022 11:15:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626882,Shooting Permit,02/23/2022 08:00:00 AM,02/23/2022 11:00:00 PM,02/18/2022 10:09:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626879,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 10:00:00 PM,02/18/2022 10:02:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PLACE between 6 AVENUE and WASHINGTON SQUARE WEST, 6 AVENUE between WASHINGTON PLACE and WEST 4 STREET",Manhattan,2,6,Commercial,Commercial,United States of America,"10011, 10014"
+626875,Rigging Permit,02/24/2022 07:00:00 AM,02/24/2022 07:00:00 PM,02/18/2022 09:58:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE,Queens,8,107,Television,Cable-episodic,United States of America,11365
+626874,Rigging Permit,02/23/2022 07:00:00 AM,02/23/2022 07:00:00 PM,02/18/2022 09:53:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE,Queens,8,107,Television,Cable-episodic,United States of America,11365
+626859,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 11:00:00 PM,02/18/2022 07:01:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NASSAU AVENUE between ECKFORD STREET and MCGUINNESS BOULEVARD, NASSAU AVENUE between LEONARD STREET and ECKFORD STREET, ECKFORD STREET between NORMAN AVENUE and NASSAU AVENUE, ECKFORD STREET between DRIGGS AVENUE and NASSAU AVENUE, LEONARD STREET between NORMAN AVENUE and NASSAU AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626854,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 09:00:00 PM,02/17/2022 11:16:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626853,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 09:00:00 PM,02/17/2022 10:58:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626852,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 09:00:00 PM,02/17/2022 10:50:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626842,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 10:00:00 PM,02/17/2022 08:31:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, EAST 51 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 53 STREET and EAST 51 STREET, EAST 53 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+626836,Theater Load in and Load Outs,02/18/2022 10:00:00 AM,02/19/2022 05:30:00 AM,02/17/2022 06:37:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+626835,Shooting Permit,02/22/2022 04:00:00 AM,02/22/2022 09:00:00 PM,02/17/2022 06:36:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and DEAD END, QUEENS BOULEVARD between 73 STREET and KNEELAND STREET, 73 STREET between QUEENS BOULEVARD and 48 AVENUE, 47 AVENUE between 73 STREET and 72 STREET, 48 AVENUE between 72 STREET and 73 STREET",Brooklyn,"1, 2, 4, 6","108, 110, 112, 94",Television,Episodic series,United States of America,"11222, 11373, 11374, 11375, 11377"
+626834,Shooting Permit,02/24/2022 08:00:00 AM,02/24/2022 10:00:00 PM,02/17/2022 06:35:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+626832,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 10:00:00 PM,02/17/2022 06:15:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626826,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 02:00:00 PM,02/17/2022 05:46:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE TERRACE between MONTAGUE STREET and REMSEN STREET, REMSEN STREET between BROOKLYN HEIGHTS PROMENADE and HICKS STREET, HENRY STREET between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+626784,Theater Load in and Load Outs,02/25/2022 10:00:00 AM,02/25/2022 11:00:00 PM,02/17/2022 03:57:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+626782,Shooting Permit,02/24/2022 06:30:00 AM,02/24/2022 08:30:00 PM,02/17/2022 03:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between 9 AVENUE and 10 AVENUE, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 57 STREET between 11 AVENUE and 12 AVENUE, WEST 58 STREET between 11 AVENUE and 12 AVENUE, WEST 59 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 59 STREET and WEST 57 STREET, 12 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+626781,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 06:00:00 PM,02/17/2022 03:48:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between SPRING STREET and WEST HOUSTON STREET, WEST HOUSTON STREET between WEST BROADWAY and GREENE STREET, LA GUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, BLEECKER ST between LA GUARDIA PLACE and WOOSTER ST, BOND STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between EAST 4 STREET and JONES ALLEY, BOND STREET between LAFAYETTE STREET and BROADWAY",Manhattan,2,"1, 6, 9",Television,Episodic series,United States of America,"10003, 10012"
+626780,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 09:00:00 PM,02/17/2022 03:47:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BLVD SOUTH between DRIGGS AVENUE and ENGERT AVENUE, ENGERT AVENUE between GRAHAM AVENUE and MCGUINNESS BLVD SOUTH, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626771,Shooting Permit,02/22/2022 05:00:00 PM,02/22/2022 11:00:00 PM,02/17/2022 03:25:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626768,Shooting Permit,02/24/2022 07:00:00 AM,02/24/2022 09:00:00 PM,02/17/2022 03:05:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626753,Rigging Permit,02/26/2022 07:00:00 AM,02/26/2022 07:00:00 PM,02/17/2022 02:37:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE,Queens,8,107,Television,Cable-episodic,United States of America,11365
+626744,Rigging Permit,02/22/2022 07:00:00 AM,02/22/2022 07:00:00 PM,02/17/2022 02:27:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE,Queens,8,107,Television,Cable-episodic,United States of America,11365
+626736,Rigging Permit,02/25/2022 07:00:00 AM,02/25/2022 07:00:00 PM,02/17/2022 02:13:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+626733,Rigging Permit,02/23/2022 07:00:00 AM,02/23/2022 07:00:00 PM,02/17/2022 02:08:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+626730,Shooting Permit,02/22/2022 09:00:00 AM,02/22/2022 10:30:00 PM,02/17/2022 02:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 58 STREET between 10 AVENUE and 11 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, WEST 59 STREET between 10 AVENUE and 11 AVENUE, WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 60 STREET between AMSTERDAM AVENUE and WEST END AVENUE, WEST 61 STREET between AMSTERDAM AVENUE and DEAD END, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+626715,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 06:00:00 PM,02/17/2022 01:51:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",UNION STREET between 5 AVENUE and 6 AVENUE,Brooklyn,6,78,Television,Magazine Show,United States of America,11215
+626709,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 09:00:00 PM,02/17/2022 01:36:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+626692,Shooting Permit,02/23/2022 09:00:00 AM,02/23/2022 06:00:00 PM,02/17/2022 01:13:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+626682,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 08:00:00 PM,02/17/2022 12:57:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BUREN STREET between LEWIS AVENUE and STUYVESANT AVENUE, LEWIS AVENUE between LAFAYETTE AVENUE and VAN BUREN STREET",Brooklyn,3,81,Commercial,Commercial,United States of America,11221
+626677,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 10:00:00 PM,02/17/2022 12:45:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626657,Shooting Permit,02/19/2022 07:00:00 AM,02/19/2022 09:00:00 PM,02/17/2022 11:57:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between JEFFERSON STREET and TROUTMAN STREET",Brooklyn,4,83,Still Photography,Not Applicable,United States of America,11237
+626649,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 11:00:00 PM,02/17/2022 11:46:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 54 STREET, 3 AVENUE between EAST 48 STREET and EAST 44 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+626648,Shooting Permit,02/23/2022 08:30:00 AM,02/23/2022 11:30:00 PM,02/17/2022 11:45:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 60 STREET and EAST 62 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, MADISON AVENUE between EAST 60 STREET and EAST 62 STREET, EAST 66 STREET between 2 AVENUE and 3 AVENUE, EAST 65 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 64 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Television,Cable-episodic,United States of America,"10022, 10065"
+626639,Shooting Permit,02/21/2022 08:00:00 AM,02/21/2022 10:00:00 PM,02/17/2022 11:31:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WESCOTT BOULEVARD between VICTORY BOULEVARD and COALE AVENUE, COALE AVENUE between WESTCOTT BOULEVARD and JEWETT AVENUE",Staten Island,1,120,Film,Feature,United States of America,10314
+626634,Shooting Permit,02/18/2022 10:00:00 AM,02/19/2022 12:00:00 AM,02/17/2022 11:25:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and DEAD END, 31 PLACE between 47 AVENUE and 48 AVENUE, VAN DAM STREET between THOMSON AVENUE and 47 AVENUE, 47 AVENUE between VAN DAM STREET and 30 PLACE, 31 STREET between THOMSON AVENUE and 47 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+626630,Shooting Permit,02/21/2022 07:00:00 AM,02/21/2022 06:00:00 PM,02/17/2022 11:20:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 8 AVENUE and 9 AVENUE, GRAND STREET between ORCHARD STREET and LUDLOW STREET, LUDLOW STREET between HESTER STREET and CANAL STREET",Manhattan,"3, 4","18, 7",Television,Not Applicable,United States of America,"10002, 10019"
+626605,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 11:00:00 PM,02/17/2022 10:07:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626566,Theater Load in and Load Outs,02/24/2022 12:01:00 AM,02/24/2022 11:59:00 PM,02/17/2022 12:50:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+626565,Theater Load in and Load Outs,02/23/2022 12:01:00 AM,02/23/2022 11:59:00 PM,02/17/2022 12:47:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+626564,Theater Load in and Load Outs,02/22/2022 12:01:00 AM,02/22/2022 11:59:00 PM,02/17/2022 12:44:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+626483,Shooting Permit,02/22/2022 08:00:00 AM,02/22/2022 11:00:00 PM,02/16/2022 04:40:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAMAICA AVENUE between 123 STREET and 126 STREET, 124 STREET between JAMAICA AVENUE and 89 AVENUE, 89 AVENUE between 123 STREET and 125 STREET, JAMAICA AVENUE between 131 STREET and METROPOLITAN AVENUE, 132 STREET between JAMAICA AVENUE and METROPOLITAN AVENUE, 90 AVENUE between PARSONS BOULEVARD and 161 STREET, PARSONS BOULEVARD between 89 AVENUE and HILLSIDE AVENUE, PARSONS BOULEVARD between 90 AVENUE and 89 AVENUE, PARSONS BOULEVARD between JAMAICA AVENUE and 90 AVENUE, 160 STREET between 90 AVENUE and JAMAICA AVENUE, 165 STREET between HILLSIDE AVENUE and 89 AVENUE, 89 AVENUE between 165 STREET and MERRICK BOULEVARD, 88 AVENUE between 165 STREET and MERRICK BOULEVARD, MERRICK BOULEVARD between HILLSIDE AVENUE and 89 AVENUE, LEFFERTS BOULEVARD between HILLSIDE AVENUE and JAMAICA AVENUE, 90 AVENUE between PARSONS BOULEVARD and GRACE COURT",Queens,"12, 9","102, 103",Television,Cable-episodic,United States of America,"11418, 11432"
+626480,Shooting Permit,02/28/2022 04:00:00 AM,02/28/2022 09:00:00 PM,02/16/2022 04:31:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 31 STREET between 2 AVENUE and 3 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 30 STREET between 2 AVENUE and 3 AVENUE, EAST 30 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 31 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+626477,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 11:59:00 PM,02/16/2022 04:29:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and NORTH HENRY STREET, KINGSLAND AVENUE between NASSAU AVENUE and DRIGGS AVENUE, NORTH HENRY STREET between NASSAU AVENUE and NORMAN AVENUE, MONITOR STREET between NASSAU AVENUE and NORMAN AVENUE, NORMAN AVENUE between NORTH HENRY STREET and KINGSLAND AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626474,Theater Load in and Load Outs,02/22/2022 12:01:00 AM,02/23/2022 06:00:00 AM,02/16/2022 04:25:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+626473,Theater Load in and Load Outs,02/23/2022 12:01:00 AM,02/23/2022 11:59:00 PM,02/16/2022 04:23:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+626458,Shooting Permit,02/24/2022 08:00:00 AM,02/25/2022 12:01:00 AM,02/16/2022 03:38:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 97 STREET and WEST 102 STREET, WEST 97 STREET between WEST END AVENUE and BROADWAY, WEST 98 STREET between WEST END AVENUE and BROADWAY, WEST 99 STREET between WEST END AVENUE and BROADWAY, WEST 101 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 99 STREET and WEST 101 STREET, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 100 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 97 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,24,Television,Episodic series,United States of America,10025
+626455,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 10:00:00 PM,02/16/2022 03:26:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 97 STREET and WEST 102 STREET, WEST 97 STREET between WEST END AVENUE and BROADWAY, WEST 98 STREET between WEST END AVENUE and BROADWAY, WEST 99 STREET between WEST END AVENUE and BROADWAY, WEST 101 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 99 STREET and WEST 101 STREET, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 100 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 97 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,24,Television,Episodic series,United States of America,10025
+626450,Shooting Permit,02/25/2022 10:00:00 AM,02/26/2022 12:30:00 AM,02/16/2022 03:12:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, CLINTON STREET between ATLANTIC AVENUE and PACIFIC STREET, ATLANTIC AVENUE between CLINTON STREET and COURT STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE, ATLANTIC AVENUE between BOERUM PLACE and SMITH STREET, COURT STREET between CONGRESS STREET and WARREN STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+626428,Shooting Permit,02/24/2022 09:00:00 AM,02/24/2022 11:30:00 PM,02/16/2022 02:16:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","DORCHESTER ROAD between STRATFORD ROAD and WESTMINSTER ROAD, DORCHESTER ROAD between WESTMINSTER ROAD and ARGYLE ROAD, DORCHESTER ROAD between ARGYLE ROAD and RUGBY ROAD, DORCHESTER ROAD between RUGBY ROAD and MARLBOROUGH ROAD, DITMAS AVENUE between WESTMINSTER ROAD and ARGYLE ROAD, DITMAS AVENUE between ARGYLE ROAD and RUGBY ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD, DITMAS AVENUE between MARLBOROUGH ROAD and EAST 16 STREET, ARGYLE ROAD between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+626426,Shooting Permit,02/25/2022 07:00:00 AM,02/25/2022 11:59:00 PM,02/16/2022 02:06:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+626424,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 11:00:00 PM,02/16/2022 02:06:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+626416,Shooting Permit,02/19/2022 07:00:00 AM,02/19/2022 07:00:00 PM,02/16/2022 01:36:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+626417,Shooting Permit,02/20/2022 06:00:00 AM,02/20/2022 08:00:00 PM,02/16/2022 01:36:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+626405,Shooting Permit,02/20/2022 06:00:00 AM,02/20/2022 08:30:00 PM,02/16/2022 01:05:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",THIRD AVENUE between EAST 14 STREET and EAST 13 STREET,Manhattan,"2, 3","6, 9",Still Photography,Not Applicable,United States of America,"10003, 10014"
+626401,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 08:00:00 PM,02/16/2022 12:59:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DORCHESTER ROAD between WESTMINSTER ROAD and ARGYLE ROAD, DORCHESTER ROAD between ARGYLE ROAD and RUGBY ROAD, DORCHESTER ROAD between RUGBY ROAD and MARLBOROUGH ROAD, ARGYLE ROAD between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between WESTMINSTER ROAD and ARGYLE ROAD, DITMAS AVENUE between ARGYLE ROAD and RUGBY ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD, DITMAS AVENUE between MARLBOROUGH ROAD and EAST 16 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+626396,Shooting Permit,02/17/2022 06:30:00 AM,02/17/2022 09:30:00 PM,02/16/2022 12:50:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORNELIA STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between CORNELIA STREET and JEFFERSON AVENUE, KNICKERBOCKER AVENUE between PUTNAM AVENUE and CORNELIA STREET, CORNELIA STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, JEFFERSON AVENUE between KNICKERBOCKER AVENUE and IRVING AVENUE, PUTNAM AVENUE between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between JEFFERSON AVENUE and HANCOCK STREET, IRVING AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, MYRTLE AVENUE between MADISON STREET and CORNELIA STREET, CYPRESS AVENUE between MYRTLE AVENUE and MADISON STREET, CYPRESS AVENUE between CORNELIA STREET and HANCOCK STREET, HANCOCK STREET between CYPRESS AVENUE and WYCKOFF AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+626391,Shooting Permit,02/23/2022 07:00:00 AM,02/24/2022 01:00:00 AM,02/16/2022 12:37:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVE between GREENPOINT AVE and DEAD END, GREENPOINT AVE between RAILROAD AVE and JOHN JAY BYRNE BRIDGE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+626387,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 08:00:00 PM,02/16/2022 12:13:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CRONSTON AVENUE between BEACH 133 STREET and BEACH 132 STREET, CRONSTON AVENUE between BEACH 132 STREET and BEACH 131 STREET, CRONSTON AVENUE between BEACH 131 STREET and BEACH 130 STREET, NEWPORT AVENUE between BEACH 133 STREET and BEACH 132 STREET, NEWPORT AVENUE between BEACH 132 STREET and BEACH 131 STREET, BEACH 131 STREET between NEWPORT AVENUE and CRONSTON AVENUE, BEACH 131 STREET between CRONSTON AVENUE and BEACH CHANNEL DRIVE, CRONSTON AVENUE between BEACH 130 STREET and BEACH 129 STREET",Queens,14,100,Television,Episodic series,United States of America,11694
+626384,Shooting Permit,02/22/2022 06:30:00 AM,02/22/2022 08:00:00 PM,02/16/2022 12:06:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBUS AVENUE between WEST 60 STREET and WEST 62 STREET, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 62 STREET and WEST 63 STREET, COLUMBUS AVENUE between WEST 63 STREET and BROADWAY, WEST 72 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 72 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, WEST 58 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 73 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+626380,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 09:00:00 PM,02/16/2022 11:54:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626372,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 10:00:00 PM,02/16/2022 11:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626370,Shooting Permit,02/18/2022 06:30:00 PM,02/18/2022 11:00:00 PM,02/16/2022 11:34:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 24 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+626364,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 10:00:00 PM,02/16/2022 11:24:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+626362,Shooting Permit,02/22/2022 07:00:00 AM,02/22/2022 10:00:00 PM,02/16/2022 11:21:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626358,Shooting Permit,02/23/2022 07:00:00 AM,02/23/2022 08:00:00 PM,02/16/2022 11:13:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+626344,Shooting Permit,02/25/2022 06:00:00 AM,02/25/2022 11:59:00 PM,02/16/2022 10:25:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Cable-other,United States of America,10027
+626333,Shooting Permit,02/19/2022 02:00:00 PM,02/19/2022 10:00:00 PM,02/16/2022 09:56:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","ENFIELD PLACE between LUIGI COURT and DIMARCO PLACE, ENFIELD PLACE between LUIGI COURT and RICHMOND ROAD, DIMARCO PLACE between ENDFIELD PLACE and MILBURN STREET",Staten Island,2,122,Film,Feature,United States of America,10306
+626281,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 10:00:00 PM,02/15/2022 05:53:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626268,DCAS Prep/Shoot/Wrap Permit,02/18/2022 12:00:00 PM,02/19/2022 12:00:00 AM,02/15/2022 05:25:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT PLACE between HYATT STREET and SCHUYLER STREET, HYATT STREET between STUYVESANT PLACE and CENTRAL AVENUE, BAY STREET between NICK LAPORTE PLACE and SLOSSON TERRACE",Staten Island,1,120,Television,Episodic series,United States of America,10301
+626261,Shooting Permit,02/18/2022 07:00:00 AM,02/18/2022 04:00:00 PM,02/15/2022 05:07:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between DORCHESTER ROAD and STEPHENS COURT, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET",Brooklyn,14,70,Television,Cable-episodic,United States of America,11226
+626260,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 08:00:00 PM,02/15/2022 05:05:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","Baychester Avenue between Schieffelin Avenue and Needham Avenue, NEEDHAM AVENUE between BAYCHESTER AVENUE and EAST 229 STREET, EAST 229 STREET between NEEDHAM AVENUE and SCHIEFFELIN AVENUE",Bronx,12,47,Television,Cable-episodic,United States of America,10466
+626256,Shooting Permit,02/18/2022 07:00:00 AM,02/18/2022 09:00:00 PM,02/15/2022 04:38:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORNELIA STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between CORNELIA STREET and JEFFERSON AVENUE, KNICKERBOCKER AVENUE between PUTNAM AVENUE and CORNELIA STREET, CORNELIA STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, PUTNAM AVENUE between IRVING AVENUE and RIDGEWOOD PLACE, JEFFERSON AVENUE between KNICKERBOCKER AVENUE and IRVING AVENUE, PUTNAM AVENUE between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between JEFFERSON AVENUE and HANCOCK STREET, IRVING AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, CORNELIA ST between WYCKOFF AVE and CYPRESS AVE, CYPRESS AVENUE between MYRTLE AVENUE and MADISON STREET, CYPRESS AVENUE between CORNELIA STREET and HANCOCK STREET, HANCOCK STREET between CYPRESS AVENUE and WYCKOFF AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+626254,Shooting Permit,02/18/2022 07:00:00 AM,02/18/2022 11:00:00 PM,02/15/2022 04:37:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between NEWEL STREET and MCGUINNESS BOULEVARD, NEWEL STREET between GREENPOINT AVENUE and MESEROLE AVENUE, CALYER STREET between NEWEL STREET and DIAMOND STREET, MCGUINNESS BOULEVARD between NORMAN AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626230,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 08:00:00 PM,02/15/2022 02:50:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","Baychester Avenue between Schieffelin Avenue and Needham Avenue, NEEDHAM AVENUE between BAYCHESTER AVENUE and EAST 229 STREET, EAST 229 STREET between NEEDHAM AVENUE and SCHIEFFELIN AVENUE",Bronx,12,47,Television,Cable-episodic,United States of America,10466
+626218,Shooting Permit,02/23/2022 06:00:00 AM,02/23/2022 11:00:00 PM,02/15/2022 02:34:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+626217,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 11:00:00 PM,02/15/2022 02:31:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+626215,Shooting Permit,02/18/2022 09:00:00 AM,02/18/2022 11:59:00 PM,02/15/2022 02:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+626209,Shooting Permit,02/27/2022 07:00:00 AM,02/27/2022 09:00:00 PM,02/15/2022 02:19:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 5 AVENUE and 6 AVENUE, 47 STREET between 5 AVENUE and 6 AVENUE, WEST 46 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 47 STREET and WEST 46 STREET, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"5, 7","14, 18, 72",Television,Episodic series,United States of America,"10020, 10036, 11220"
+626203,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 09:00:00 PM,02/15/2022 02:05:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+626193,Theater Load in and Load Outs,02/22/2022 12:01:00 AM,02/22/2022 11:59:00 PM,02/15/2022 01:31:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+626189,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 09:00:00 PM,02/15/2022 01:26:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 74 STREET and EAST 78 STREET, EAST 76 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 76 STREET between LEXINGTON AVENUE and THIRD AVENUE, 3 AVENUE between EAST 71 STREET and EAST 77 STREET, EAST 75 STREET between 2 AVENUE and 3 AVENUE, EAST 72 STREET between 2 AVENUE and 3 AVENUE, EAST 73 STREET between 1 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10075"
+626188,Theater Load in and Load Outs,02/21/2022 12:01:00 AM,02/21/2022 11:59:00 PM,02/15/2022 01:23:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+626179,Theater Load in and Load Outs,03/14/2022 12:01:00 AM,03/27/2022 11:59:00 PM,02/15/2022 01:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+626176,Theater Load in and Load Outs,02/28/2022 12:01:00 AM,03/05/2022 11:59:00 PM,02/15/2022 12:54:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+626164,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 05:00:00 PM,02/15/2022 12:04:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 21 STREET and 12 STREET, 13 STREET between 43 AVENUE and 44 AVENUE, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between QUEENSBORO BRIDGE and 40 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+626158,Shooting Permit,02/17/2022 10:00:00 AM,02/18/2022 02:00:00 AM,02/15/2022 11:45:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, VAN DYKE STREET between RICHARDS STREET and VAN BRUNT STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, DWIGHT STREET between VAN DYKE STREET and COFFEY STREET, COFFEY STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between BEARD STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+626148,Shooting Permit,02/17/2022 08:00:00 AM,02/17/2022 11:30:00 AM,02/15/2022 10:59:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+626138,Shooting Permit,02/18/2022 09:00:00 AM,02/18/2022 11:59:00 PM,02/15/2022 10:02:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+626135,Shooting Permit,02/18/2022 04:00:00 PM,02/19/2022 05:00:00 AM,02/15/2022 09:51:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+626104,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 09:00:00 PM,02/14/2022 09:29:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+626092,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 08:00:00 PM,02/14/2022 06:43:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","HARBOR VIEW TERRACE between HARBOR LANE and 80 STREET, 80 STREET between HARBOR VIEW TERRACE and SHORE ROAD",Brooklyn,10,68,Commercial,Promo,United States of America,11209
+626070,Shooting Permit,02/18/2022 08:00:00 AM,02/18/2022 11:59:00 PM,02/14/2022 04:26:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 72 STREET and EAST 73 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, 3 AVENUE between EAST 70 STREET and EAST 72 STREET, EAST 72 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 71 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 99 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 97 STREET and EAST 99 STREET, EAST 97 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 97 STREET and EAST 98 STREET",Manhattan,"11, 8","19, 23",Television,Cable-episodic,United States of America,"10021, 10029, 10065"
+626064,Shooting Permit,02/18/2022 10:00:00 AM,02/18/2022 06:00:00 PM,02/14/2022 04:03:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","HALL STREET between FLUSHING AVENUE and PARK AVENUE, PARK AVENUE between WAVERLY AVENUE and HALL STREET, FLUSHING AVENUE between CLINTON AVENUE and WAVERLY AVENUE, FLUSHING AVENUE between WASHINGTON AVENUE and RYERSON STREET",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+626054,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 10:00:00 PM,02/14/2022 03:20:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+626049,Shooting Permit,02/15/2022 07:00:00 AM,02/15/2022 09:00:00 PM,02/14/2022 03:09:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626041,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 09:00:00 PM,02/14/2022 02:39:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+626038,Theater Load in and Load Outs,02/15/2022 12:00:00 PM,02/17/2022 06:00:00 AM,02/14/2022 02:36:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+626036,Shooting Permit,02/18/2022 10:00:00 AM,02/18/2022 11:59:00 PM,02/14/2022 02:30:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+626022,Shooting Permit,02/19/2022 07:30:00 AM,02/19/2022 09:30:00 PM,02/14/2022 01:46:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 153 STREET between GRAND CONCOURSE and CONCOURSE VILLAGE WEST, CONCOURSE VILLAGE WEST between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 151 STREET and EAST 153 STREET",Bronx,4,44,Film,Feature,United States of America,10451
+626021,Shooting Permit,02/18/2022 07:30:00 AM,02/18/2022 09:30:00 PM,02/14/2022 01:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 153 STREET between GRAND CONCOURSE and CONCOURSE VILLAGE WEST, CONCOURSE VILLAGE WEST between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 151 STREET and EAST 153 STREET",Bronx,4,44,Film,Feature,United States of America,10451
+626020,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 09:00:00 PM,02/14/2022 01:46:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 153 STREET between GRAND CONCOURSE and CONCOURSE VILLAGE WEST, CONCOURSE VILLAGE WEST between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 153 STREET and EAST 156 STREET, GRAND CONCOURSE between EAST 151 STREET and EAST 153 STREET",Bronx,4,44,Film,Feature,United States of America,10451
+626015,Theater Load in and Load Outs,02/22/2022 12:01:00 AM,02/24/2022 06:00:00 AM,02/14/2022 01:37:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+626014,Shooting Permit,02/18/2022 03:00:00 PM,02/19/2022 05:00:00 AM,02/14/2022 01:36:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between SPRING STREET and BROOME STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROADWAY between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+626013,Theater Load in and Load Outs,02/20/2022 12:01:00 AM,02/21/2022 11:59:00 PM,02/14/2022 01:36:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+626003,Shooting Permit,02/18/2022 05:00:00 PM,02/19/2022 03:00:00 AM,02/14/2022 01:13:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 53 STREET and 54 STREET, 53 STREET between SKILLMAN AVENUE and ROOSEVELT AVENUE, ROOSEVELT AVENUE between 52 STREET and 53 STREET, ROOSEVELT AVENUE between 53 STREET and 54 STREET, 54 STREET between SKILLMAN AVENUE and ROOSEVELT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+625993,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 11:00:00 PM,02/14/2022 12:59:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625991,Shooting Permit,02/16/2022 06:30:00 AM,02/16/2022 09:30:00 PM,02/14/2022 12:56:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 6 STREET and 10 STREET, 10 STREET between 2 AVENUE and 3 AVENUE, 9 STREET between 2 AVENUE and 3 AVENUE, 8 STREET between 2 AVENUE and 3 AVENUE, 7 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between 7 STREET and 9 STREET, PROSPECT PARK WEST between 3 STREET and 6 STREET, 8 AVENUE between 4 STREET and 6 STREET, 5 STREET between 8 AVENUE and PROSPECT PARK WEST, 4 STREET between 8 AVENUE and PROSPECT PARK WEST",Brooklyn,"55, 6","76, 78",Television,Episodic series,United States of America,"11215, 11231"
+625983,Shooting Permit,02/17/2022 06:00:00 PM,02/18/2022 06:00:00 AM,02/14/2022 12:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 86 STREET and EAST 91 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 86 STREET and EAST 90 STREET, EAST 86 STREET between PARK AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 86 STREET and EAST 88 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10028, 10128"
+625978,Shooting Permit,02/17/2022 08:00:00 AM,02/17/2022 11:59:00 PM,02/14/2022 12:12:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+625976,Shooting Permit,02/24/2022 06:00:00 AM,02/24/2022 10:30:00 PM,02/14/2022 12:06:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between HUNTINGTON STREET and WEST NINTH STREET, WEST NINTH STREET between COLUMBIA STREET and HICKS STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+625975,Shooting Permit,02/16/2022 10:00:00 AM,02/17/2022 01:00:00 AM,02/14/2022 12:05:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+625965,Shooting Permit,02/17/2022 08:00:00 AM,02/17/2022 09:00:00 PM,02/14/2022 11:52:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+625963,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 08:00:00 PM,02/14/2022 11:45:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+625957,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 07:00:00 PM,02/14/2022 11:38:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 14 STREET and WEST 15 STREET, 8 AVENUE between WEST 15 STREET and WEST 16 STREET",Manhattan,4,10,Commercial,Promo,United States of America,10011
+625945,Shooting Permit,02/23/2022 06:30:00 AM,02/23/2022 09:30:00 PM,02/14/2022 10:59:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST NINTH STREET between COLUMBIA STREET and HICKS STREET, HICKS STREET between WEST NINTH STREET and HUNTINGTON STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+625935,Shooting Permit,02/17/2022 09:00:00 AM,02/17/2022 11:00:00 PM,02/14/2022 10:23:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET, LEONARD STREET between CONSELYEA STREET and JACKSON STREET, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, NORTH 3 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11249"
+625934,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 11:00:00 PM,02/14/2022 10:16:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between WALL STREET and JOHN STREET, MAIDEN LANE between SOUTH STREET and PEARL STREET, SOUTH STREET between MAIDEN LANE and FULTON STREET, JOHN STREET between WATER STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between OLD SLIP and BROAD STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Manhattan,1,"1, 94",Television,Episodic series,United States of America,"10004, 10005, 10038, 11222"
+625932,Theater Load in and Load Outs,02/19/2022 12:01:00 AM,02/20/2022 06:00:00 AM,02/14/2022 10:14:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+625928,Theater Load in and Load Outs,02/18/2022 12:01:00 AM,02/19/2022 06:00:00 AM,02/14/2022 10:06:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+625924,Shooting Permit,02/16/2022 09:00:00 AM,02/16/2022 10:00:00 PM,02/14/2022 10:05:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EASTERN PKWY between WASHINGTON AVENUE and PLAZA ST W, WASHINGTON AVENUE between PRESIDENT STREET and SULLIVAN PLACE, PLAZA ST W between UNION STREET and ST JOHNS PLACE, LINCOLN PLACE between 7 AVENUE and PLAZA ST WEST",Brooklyn,"55, 6, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11217, 11225, 11238"
+625923,Theater Load in and Load Outs,02/20/2022 12:01:00 AM,02/21/2022 06:00:00 AM,02/14/2022 10:04:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+625921,Theater Load in and Load Outs,02/19/2022 12:01:00 AM,02/19/2022 11:59:00 PM,02/14/2022 10:02:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+625920,Theater Load in and Load Outs,02/18/2022 12:01:00 AM,02/18/2022 11:59:00 PM,02/14/2022 10:00:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+625916,Theater Load in and Load Outs,03/06/2022 12:01:00 AM,03/13/2022 11:59:00 PM,02/14/2022 09:51:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+625915,Shooting Permit,02/18/2022 07:00:00 AM,02/18/2022 09:00:00 PM,02/14/2022 09:49:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625914,Shooting Permit,02/16/2022 10:00:00 AM,02/16/2022 11:30:00 PM,02/14/2022 09:49:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","HALSEY STREET between BEDFORD AVENUE and ARLINGTON PLACE, HALSEY STREET between ARLINGTON PLACE and NOSTRAND AVENUE, ARLINGTON PLACE between HALSEY STREET and MACON STREET, ARLINGTON PLACE between MACON STREET and FULTON STREET, NOSTRAND AVENUE between HALSEY STREET and MACON STREET, FULTON STREET between CLAVER PLACE and SPENCER PLACE, FULTON STREET between SPENCER PLACE and BEDFORD AVENUE, FULTON STREET between BEDFORD AVENUE and VERONA PLACE, FULTON STREET between VERONA PLACE and TOMPKINS AVENUE, MACON STREET between ARLINGTON PLACE and NOSTRAND AVENUE",Brooklyn,3,79,Television,Cable-episodic,United States of America,"11216, 11238"
+625913,Shooting Permit,02/18/2022 09:00:00 AM,02/18/2022 11:59:00 AM,02/14/2022 09:45:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 16 STREET between UNION SQUARE EAST and IRVING PLACE, EAST 16 STREET between UNION SQUARE EAST and IRVING PLACE, 2 AVENUE between EAST 15 STREET and EAST 17 STREET, 2 AVENUE between EAST 18 STREET and EAST 17 STREET, EAST 15 STREET between 3 AVENUE and RUTHERFORD PLACE, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 19 STREET and EAST 18 STREET, 3 AVENUE between EAST 18 STREET and EAST 17 STREET, EAST 17 STREET between 3 AVENUE and IRVING PLACE, IRVING PLACE between EAST 18 STREET and EAST 17 STREET, EAST 17 STREET between UNION SQUARE EAST and IRVING PLACE",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,10003
+625912,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 09:00:00 PM,02/14/2022 09:45:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625904,Shooting Permit,02/17/2022 06:00:00 AM,02/17/2022 10:00:00 PM,02/14/2022 08:58:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 20 STREET and WEST 21 STREET, 10 AVENUE between WEST 20 STREET and WEST 21 STREET, WEST 20 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+625902,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 10:00:00 PM,02/14/2022 08:57:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"12, 26, 9","43, 47, 50",Television,Cable-episodic,United States of America,"10466, 10467, 10470, 10471, 10473"
+625884,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 11:00:00 PM,02/13/2022 09:07:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between MEEKER AVENUE and RICHARDSON STREET, MEEKER AVENUE between NORTH HENRY STREET and MONITOR STREET, NORTH HENRY STREET between HERBERT STREET and RICHARDSON STREET, NORTH HENRY STREET between HERBERT STREET and MEEKER AVENUE, HERBERT STREET between HUMBOLDT STREET and MONITOR STREET, RICHARDSON STREET between HUMBOLDT STREET and KINGSLAND AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625864,Theater Load in and Load Outs,02/15/2022 12:01:00 AM,02/15/2022 11:59:00 PM,02/13/2022 03:23:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+625838,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 09:00:00 PM,02/13/2022 11:40:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625753,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 10:00:00 PM,02/11/2022 06:45:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, MIDDLETOWN ROAD between WESTCHESTER AVENUE and MULFORD AVENUE, MIDDLETOWN ROAD between MULFORD AVENUE and MAYFLOWER AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, Hutchinson River Parkway E between E Tremont Ave and Roebling Ave, EAST TREMONT AVENUE between LA SALLE AVENUE and BAISLEY AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10461, 10473"
+625751,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 09:00:00 PM,02/11/2022 06:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 23 STREET and HUNTER STREET, 44 ROAD between 23 STREET and CRESCENT STREET, 24 STREET between 44 ROAD and 43 AVENUE, 44 ROAD between 23 STREET and 21 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+625737,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 10:00:00 PM,02/11/2022 04:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625735,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 10:00:00 PM,02/11/2022 04:36:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between WHITE STREET and BOGART STREET, BOGART STREET between DEAD END and JOHNSON AVENUE, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+625702,Theater Load in and Load Outs,02/16/2022 12:01:00 AM,02/17/2022 11:59:00 PM,02/11/2022 03:16:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+625698,Theater Load in and Load Outs,02/17/2022 12:01:00 AM,02/17/2022 06:00:00 AM,02/11/2022 03:13:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+625694,Shooting Permit,02/15/2022 06:30:00 AM,02/15/2022 09:00:00 PM,02/11/2022 03:10:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","DESBROSSES STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET, VESTRY STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between VESTRY STREET and HUBERT STREET, GREENWICH STREET between WATTS STREET and CANAL STREET, HUBERT STREET between WEST SIDE HIGHWAY and COLLISTER STREET, WEST SIDE HIGHWAY between VESTRY STREET and NORTH MOORE STREET, WATTS STREET between GREENWICH STREET and CANAL STREET, WATTS STREET between WEST SIDE HIGHWAY and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+625691,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 11:00:00 PM,02/11/2022 02:57:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+625688,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 06:00:00 PM,02/11/2022 02:39:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,8,19,Television,Variety,United States of America,10021
+625672,Shooting Permit,02/16/2022 06:00:00 AM,02/16/2022 11:00:00 PM,02/11/2022 01:57:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+625670,Shooting Permit,02/17/2022 01:00:00 PM,02/18/2022 03:00:00 AM,02/11/2022 01:54:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+625661,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 08:00:00 PM,02/11/2022 12:55:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625657,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 09:00:00 PM,02/11/2022 12:36:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625655,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 11:00:00 PM,02/11/2022 12:26:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between 3 AVENUE and NEVINS STREET, ATLANTIC AVENUE between 3 AVENUE and SMITH STREET, 3 AVENUE between ATLANTIC AVENUE and PACIFIC STREET, DEKALB AVENUE between FORT GREENE PLACE and WASHINGTON PARK, WASHINGTON PARK between DEKALB AVENUE and WILLOUGHBY AVENUE, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, DEKALB AVENUE between ROCKWELL PLACE and ST FELIX STREET, LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, ATLANTIC AVENUE between NEVINS STREET and SMITH STREET",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205, 11217"
+625653,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 11:00:00 PM,02/11/2022 12:19:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625651,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 07:00:00 PM,02/11/2022 12:12:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON PLACE between BARROW STREET and 6 AVENUE, WASHINGTON PLACE between BARROW STREET and GROVE STREET, BARROW STREET between WEST 4 STREET and WASHINGTON PLACE, 6 AVENUE between WEST 4 STREET and WEST 8 STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET, WEST HOUSTON STREET between WEST BROADWAY and SULLIVAN STREET, WEST 4 STREET between BARROW STREET and GROVE STREET, WEST WASHINGTON PLACE between 6 AVENUE and WASHINGTON SQUARE WEST",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,"10011, 10012, 10014"
+625645,Shooting Permit,02/18/2022 06:00:00 AM,02/18/2022 11:59:00 PM,02/11/2022 11:59:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 39 AVENUE and WOODSIDE AVENUE, 57 STREET between 39 AVENUE and WOODSIDE AVENUE, WOODSIDE AVENUE between 56 STREET and 58 STREET, WOODSIDE AVENUE between 58 STREET and 59 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, ROOSEVELT AVENUE between 56 STREET and 58 STREET, QUEENS BOULEVARD between 50 STREET and 58 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11377
+625637,Shooting Permit,02/15/2022 08:30:00 AM,02/16/2022 01:00:00 AM,02/11/2022 11:49:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","211 STREET between 36 AVENUE and 38 AVENUE, 212 STREET between 38 AVENUE and 39 AVENUE, 38 AVENUE between 210 STREET and 213 STREET, 38 AVENUE between 213 STREET and BELL BOULEVARD, 39 AVENUE between 211 STREET and 213 STREET, 39 AVENUE between 213 STREET and BELL BOULEVARD",Queens,11,111,Television,Episodic series,United States of America,11361
+625635,Shooting Permit,02/15/2022 07:00:00 AM,02/15/2022 08:00:00 PM,02/11/2022 11:37:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+625632,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 10:00:00 PM,02/11/2022 11:32:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625630,Theater Load in and Load Outs,02/27/2022 12:01:00 AM,02/28/2022 06:00:00 AM,02/11/2022 11:29:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+625629,Theater Load in and Load Outs,02/17/2022 12:01:00 AM,02/18/2022 11:59:00 PM,02/11/2022 11:29:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+625625,Shooting Permit,02/16/2022 06:00:00 AM,02/16/2022 01:00:00 PM,02/11/2022 11:20:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 129 STREET between LENOX AVENUE and 5 AVENUE,Manhattan,10,32,Television,Special/Awards Show,United States of America,10027
+625611,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 11:00:00 PM,02/11/2022 10:32:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, 3 AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 47 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, 3 AVENUE between EAST 47 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+625608,Shooting Permit,02/16/2022 01:00:00 PM,02/17/2022 01:00:00 AM,02/11/2022 10:24:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between CHURCH AVENUE and BEVERLY ROAD, Stratford Road between CHURCH AVENUE and 27, WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, CONEY ISLAND AVENUE between ALBEMARLE ROAD and HINCKLEY PLACE, CONEY ISLAND AVENUE between BEVERLY ROAD and LEWIS PLACE, TURNER PLACE between CONEY ISLAND AVENUE and STRATFORD ROAD",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,11218
+625563,Shooting Permit,02/17/2022 07:00:00 AM,02/17/2022 01:00:00 PM,02/10/2022 07:51:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLEVELAND PLACE between FINGERBOARD ROAD and CHICAGO AVENUE, CHICAGO AVENUE between CLEVELAND PLACE and COLUMBIA AVENUE",Staten Island,2,122,Film,Feature,United States of America,10305
+625549,Shooting Permit,02/17/2022 06:00:00 AM,02/19/2022 02:00:00 AM,02/10/2022 05:59:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 106 STREET and EAST 107 STREET, PARK AVENUE between EAST 107 STREET and EAST 108 STREET, EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 109 STREET and EAST 107 STREET, LEXINGTON AVENUE between EAST 107 STREET and EAST 106 STREET, EAST 106 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 105 STREET and EAST 106 STREET, EAST 108 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 107 STREET and EAST 108 STREET, 3 AVENUE between EAST 108 STREET and EAST 109 STREET, 3 AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 106 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 106 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 107 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,11,23,Television,Episodic series,United States of America,10029
+625546,Theater Load in and Load Outs,02/14/2022 12:01:00 AM,02/15/2022 06:00:00 AM,02/10/2022 05:44:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+625496,Shooting Permit,02/15/2022 07:30:00 AM,02/15/2022 09:00:00 PM,02/10/2022 02:35:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between KINGSLAND AVE and DEAD END, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625476,Shooting Permit,02/14/2022 06:30:00 AM,02/14/2022 08:00:00 PM,02/10/2022 02:06:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 148 STREET and WEST 142 STREET, WEST 145 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 145 STREET and WEST 143 STREET",Manhattan,9,30,Television,Episodic series,United States of America,"10027, 10031"
+625464,Shooting Permit,02/16/2022 05:00:00 PM,02/17/2022 06:00:00 AM,02/10/2022 01:33:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 86 STREET and EAST 91 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 86 STREET and EAST 90 STREET, EAST 86 STREET between PARK AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 86 STREET and EAST 88 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10028, 10128"
+625421,Shooting Permit,02/17/2022 06:00:00 AM,02/17/2022 04:00:00 PM,02/10/2022 11:58:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 34 STREET and EAST 39 STREET, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, EAST 36 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,10016
+625420,Shooting Permit,02/16/2022 06:00:00 AM,02/16/2022 11:00:00 PM,02/10/2022 11:57:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","HALSEY STREET between PATCHEN AVENUE and RALPH AVENUE, HANCOCK STREET between PATCHEN AVENUE and RALPH AVENUE, RALPH AVENUE between HANCOCK STREET and MACON STREET, MACON STREET between PATCHEN AVENUE and RALPH AVENUE, JEFFERSON AVENUE between STUYVESANT AVENUE and MALCOLM X BOULEVARD, PUTNAM AVENUE between STUYVESANT AVENUE and MALCOLM X BOULEVARD, STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, STUYVESANT AVENUE between JEFFERSON AVENUE and HANCOCK STREET, STUYVESANT AVENUE between HANCOCK STREET and HALSEY STREET, HANCOCK STREET between STUYVESANT AVENUE and MALCOLM X BOULEVARD, BROADWAY between GATES AVENUE and HALSEY STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 16, 3, 4","73, 81, 83, 94",Television,Episodic series,United States of America,"11207, 11221, 11222, 11233"
+625403,Shooting Permit,02/16/2022 06:00:00 AM,02/16/2022 11:00:00 PM,02/10/2022 11:16:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 70 STREET and EAST 69 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 69 STREET and EAST 68 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, EAST 69 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 72 STREET and EAST 71 STREET, 3 AVENUE between EAST 70 STREET and EAST 69 STREET, 3 AVENUE between EAST 69 STREET and EAST 68 STREET, EAST 70 STREET between 3 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+625402,Shooting Permit,02/15/2022 09:00:00 AM,02/15/2022 11:30:00 PM,02/10/2022 11:12:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and BEARD STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between VAN DYKE STREET and BEARD STREET, CONOVER STREET between VAN DYKE STREET and COFFEY STREET, VAN DYKE STREET between BARNELL STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, CONOVER STREET between REED STREET and",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+625387,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 09:00:00 PM,02/10/2022 10:40:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between KINGSLAND AVE and DEAD END, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625377,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 08:00:00 PM,02/10/2022 09:58:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+625376,Shooting Permit,02/15/2022 05:00:00 PM,02/16/2022 06:00:00 AM,02/10/2022 09:50:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 86 STREET and EAST 91 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 86 STREET and EAST 90 STREET, EAST 86 STREET between PARK AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 86 STREET and EAST 88 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10028, 10128"
+625372,Shooting Permit,02/14/2022 08:00:00 AM,02/14/2022 11:00:00 PM,02/10/2022 09:30:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+625359,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 10:00:00 PM,02/10/2022 08:38:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+625327,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 11:00:00 PM,02/09/2022 08:44:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between 56 STREET and 57 STREET, 56 STREET between FLUSHING AVENUE and NURGE AVENUE, 56 STREET between NURGE AVENUE and ARNOLD AVENUE, NURGE AVENUE between 55 STREET and DEAD END, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NURGE AVENUE between 54 PLACE and 55 STREET, 54 PLACE between FLUSHING AVENUE and NURGE AVENUE, NURGE AVENUE between 54 PLACE and 54 STREET",Queens,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11378"
+625308,Shooting Permit,02/13/2022 12:01:00 AM,02/13/2022 11:00:00 PM,02/09/2022 05:51:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+625307,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 09:00:00 PM,02/09/2022 05:50:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 115 STREET between BROADWAY and RIVERSIDE DRIVE, BROADWAY between WEST 115 STREET and WEST 120 STREET, WEST 116 STREET between AMSTERDAM AVENUE and MORNINGSIDE AVENUE, MORNINGSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, WEST 115 STREET between AMSTERDAM AVENUE and MORNINGSIDE DRIVE, MORNINGSIDE DRIVE between WEST 114 STREET and WEST 115 STREET, MORNINGSIDE DRIVE between WEST 113 STREET and WEST 114 STREET, AMSTERDAM AVENUE between WEST 112 STREET and WEST 113 STREET",Manhattan,9,26,Television,Episodic series,United States of America,"10025, 10027"
+625305,Shooting Permit,02/12/2022 12:00:00 PM,02/12/2022 11:59:00 PM,02/09/2022 05:48:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+625300,Shooting Permit,02/12/2022 05:00:00 AM,02/12/2022 11:00:00 AM,02/09/2022 05:36:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+625298,Theater Load in and Load Outs,02/18/2022 12:01:00 AM,02/19/2022 11:59:00 PM,02/09/2022 05:24:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET",Manhattan,"4, 5","10, 14",Theater,Theater,United States of America,"10001, 10121"
+625293,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 10:00:00 PM,02/09/2022 05:11:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORREST STREET between FLUSHING AVENUE and CENTRAL AVENUE, FLUSHING AVENUE between CENTRAL AVENUE and WILSON AVENUE, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, JEFFERSON STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, WYCKOFF AVENUE between FLUSHING AVENUE and TROUTMAN STREET, JEFFERSON STREET between WYCKOFF AVENUE and IRVING AVENUE, JEFFERSON STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, TROUTMAN STREET between WYCKOFF AVENUE and IRVING AVENUE, EVERGREEN AVENUE between FLUSHING AVENUE and NOLL STREET, NOLL STREET between EVERGREEN AVENUE and CENTRAL AVENUE, CENTRAL AVENUE between FLUSHING AVENUE and FORREST STREET, INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+625290,Shooting Permit,02/15/2022 11:00:00 AM,02/16/2022 01:00:00 AM,02/09/2022 05:02:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 STREET between 20 AVENUE and 19 AVENUE, 19 AVENUE between 48 STREET and HAZEN STREET, 49 STREET between 20 AVENUE and 21 AVENUE, 19 AVENUE between HAZEN STREET and 81 STREET, 81 STREET between 19 AVENUE and DITMARS BOULEVARD",Bronx,"1, 12, 26, 80","114, 115, 47, 50",Television,Cable-episodic,United States of America,"10466, 10467, 10470, 10471, 11105, 11370, 11371"
+625273,Shooting Permit,02/15/2022 08:00:00 AM,02/15/2022 10:00:00 PM,02/09/2022 04:30:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 58 STREET and WEST 59 STREET, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 59 STREET between AMSTERDAM AVENUE and 9 AVENUE, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 60 STREET and WEST 61 STREET, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, 12 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 58 STREET between 11 AVENUE and 12 AVENUE, WEST 59 STREET between 11 AVENUE and 12 AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+625262,Shooting Permit,02/12/2022 02:00:00 PM,02/12/2022 07:00:00 PM,02/09/2022 04:00:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASH STREET between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, MCGUINNESS BLVD between ASH STREET and PAIDGE AVENUE, MCGUINNESS BLVD between BOX STREET and ASH STREET",Brooklyn,"1, 2","108, 94",Commercial,Commercial,United States of America,"11101, 11222"
+625249,Shooting Permit,02/10/2022 09:00:00 AM,02/10/2022 11:00:00 PM,02/09/2022 03:26:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625246,Shooting Permit,02/11/2022 07:00:00 AM,02/11/2022 10:00:00 PM,02/09/2022 03:21:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625243,Shooting Permit,02/14/2022 08:00:00 AM,02/14/2022 07:00:00 PM,02/09/2022 03:10:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625238,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 10:00:00 PM,02/09/2022 02:58:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+625234,Shooting Permit,02/11/2022 08:00:00 AM,02/11/2022 11:59:00 PM,02/09/2022 02:55:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+625231,Shooting Permit,02/17/2022 08:00:00 AM,02/18/2022 01:00:00 AM,02/09/2022 02:53:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between CHRISTOPHER STREET and GROVE STREET, BLEECKER STREET between GROVE STREET and BARROW STREET, 7 AVENUE SOUTH between BARROW STREET and COMMERCE STREET, 7 AVENUE SOUTH between COMMERCE STREET and MORTON STREET, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, 7 AVENUE SOUTH between GROVE STREET and BARROW STREET, 6 AVENUE between WEST 4 STREET and WEST 3 STREET, WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, MACDOUGAL STREET between WEST 3 STREET and MINETTA LANE, 6 AVENUE between MINETTA LANE and MINETTA STREET, BLEECKER STREET between CARMINE STREET and DOWNING STREET, 6 AVENUE between DOWNING STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10012, 10014"
+625230,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 10:00:00 PM,02/09/2022 02:53:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 11 STREET between 3 AVENUE and 4 AVENUE,Brooklyn,"14, 3","70, 9",Commercial,Commercial,United States of America,"10003, 11218"
+625227,Shooting Permit,02/10/2022 09:00:00 AM,02/10/2022 11:59:00 PM,02/09/2022 02:46:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+625217,Shooting Permit,02/14/2022 08:00:00 AM,02/14/2022 08:45:00 PM,02/09/2022 02:19:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 34 STREET and 36 STREET, 2 AVENUE between 37 STREET and 39 STREET, 3 AVENUE between 35 STREET and 36 STREET, 37 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between 34 STREET and 35 STREET, 3 AVENUE between 36 STREET and 37 STREET",Brooklyn,7,72,Television,Episodic series,United States of America,11232
+625209,Shooting Permit,02/11/2022 09:00:00 AM,02/11/2022 11:59:00 PM,02/09/2022 01:59:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+625201,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 10:00:00 PM,02/09/2022 01:33:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MESEROLE AVENUE between JEWEL STREET and RUSSELL STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625194,Shooting Permit,02/12/2022 06:00:00 AM,02/12/2022 09:00:00 PM,02/09/2022 01:11:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between BOWERY and ELIZABETH STREET, DELANCEY STREET between BOWERY and FORSYTH STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET, 44TH DRIVE between 5 STREET and EAST RIVER, 44 DRIVE between 5 STREET and VERNON BOULEVARD",Manhattan,"2, 3","108, 5",Commercial,Commercial,United States of America,"10002, 10012, 11101"
+625186,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 08:00:00 PM,02/09/2022 12:38:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and NORMAN AVENUE, NORTH HENRY STREET between NASSAU AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625183,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 09:00:00 PM,02/09/2022 12:18:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","150 STREET between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD, BAISLEY BOULEVARD between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD",Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11434, 11436"
+625179,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 07:00:00 PM,02/09/2022 11:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between RIVINGTON STREET and DELANCEY STREET, FORSYTH STREET between RIVINGTON STREET and STANTON STREET, ALLEN STREET between STANTON STREET and RIVINGTON STREET",Manhattan,3,"5, 7",Commercial,Promo,United States of America,10002
+625176,Shooting Permit,02/15/2022 01:00:00 AM,02/15/2022 07:00:00 PM,02/09/2022 11:56:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625171,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 11:00:00 PM,02/09/2022 11:37:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625166,Shooting Permit,02/15/2022 08:00:00 AM,02/15/2022 11:00:00 PM,02/09/2022 11:17:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between GLENWOOD ROAD and AVENUE H, ARGYLE ROAD between GLENWOOD ROAD and AVENUE H, AVENUE H between CONEY ISLAND AVENUE and RUGBY ROAD, CONEY ISLAND AVENUE between GLENWOOD ROAD and AVENUE H",Brooklyn,14,70,Television,Episodic series,United States of America,11230
+625164,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 09:00:00 PM,02/09/2022 11:14:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEVERLEY ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between BEVERLEY ROAD and CORTELYOU ROAD, EAST 17 STREET between BEVERLEY ROAD and CORTELYOU ROAD, CORTELYOU ROAD between EAST 16 STREET and OCEAN AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+625151,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 09:00:00 PM,02/09/2022 10:44:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+625148,Shooting Permit,02/11/2022 07:00:00 AM,02/11/2022 09:00:00 PM,02/09/2022 10:41:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+625145,Shooting Permit,03/02/2022 07:00:00 AM,03/02/2022 07:00:00 PM,02/09/2022 10:28:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",107 STREET between 37 AVENUE and 34 AVENUE,Queens,3,115,Documentary,Not Applicable,United States of America,11368
+625142,Shooting Permit,03/01/2022 07:00:00 AM,03/01/2022 07:00:00 PM,02/09/2022 10:24:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",107 STREET between 37 AVENUE and 34 AVENUE,Queens,3,115,Documentary,Not Applicable,United States of America,11368
+625137,Shooting Permit,02/28/2022 07:00:00 AM,02/28/2022 07:00:00 PM,02/09/2022 10:16:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",107 STREET between 37 AVENUE and 34 AVENUE,Queens,3,115,Documentary,Not Applicable,United States of America,11368
+625135,Shooting Permit,02/27/2022 07:00:00 AM,02/27/2022 07:00:00 PM,02/09/2022 10:12:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",107 STREET between 37 AVENUE and 34 AVENUE,Queens,3,115,Documentary,Not Applicable,United States of America,11368
+625131,Shooting Permit,02/14/2022 07:00:00 AM,02/14/2022 10:00:00 PM,02/09/2022 10:06:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+625124,Shooting Permit,02/14/2022 11:00:00 AM,02/15/2022 01:00:00 AM,02/09/2022 09:41:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, FIFTH AVENUE between EAST 105 STREET and DUKE ELLINGTON CIRCLE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 88 STREET and EAST 89 STREET, 5 AVENUE between EAST 89 STREET and EAST 91 STREET, 5 AVENUE between EAST 86 STREET and EAST 88 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 86 STREET and EAST 90 STREET, EAST 86 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 86 STREET and EAST 87 STREET, EAST 86 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 87 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 88 STREET and EAST 90 STREET",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10028, 10029, 10128"
+625118,Shooting Permit,02/10/2022 06:00:00 AM,02/11/2022 01:00:00 AM,02/09/2022 09:32:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625113,Shooting Permit,02/11/2022 10:00:00 AM,02/12/2022 01:00:00 AM,02/09/2022 09:12:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","KOSCIUSZKO STREET between MALCOLM X BOULEVARD and BROADWAY, BROADWAY between MALCOLM X BLVD and DEKALB AVE, DEKALB AVENUE between MALCOLM X BOULEVARD and BROADWAY, DEKALB AVENUE between MALCOLM X BOULEVARD and STUYVESANT AVENUE, MALCOLM X BOULEVARD between KOSCIUSZKO STREET and DEKALB AVENUE, MALCOLM X BOULEVARD between KOSCIUSZKO STREET and LAFAYETTE AVENUE, BROADWAY between LAFAYETTE AVENUE and GATES AVENUE, VAN BUREN STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between DEKALB AVENUE and KOSCIUSZKO STREET, KOSCIUSZKO STREET between MALCOLM X BOULEVARD and BROADWAY",Brooklyn,"3, 4","81, 83",Television,Episodic series,United States of America,11221
+625103,Shooting Permit,02/15/2022 07:00:00 AM,02/15/2022 07:00:00 PM,02/09/2022 08:20:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",70 STREET between ROOSEVELT AVENUE and 41 AVENUE,Queens,2,108,Documentary,Not Applicable,United States of America,11377
+625075,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 09:00:00 PM,02/08/2022 07:53:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","150 STREET between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD, BAISLEY BOULEVARD between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD",Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11434, 11436"
+625074,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 11:59:00 PM,02/08/2022 07:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 74 STREET and EAST 78 STREET, EAST 76 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 76 STREET and EAST 75 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, EAST 74 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, EAST 75 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+625062,Shooting Permit,02/11/2022 09:30:00 AM,02/11/2022 11:00:00 PM,02/08/2022 05:55:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+625058,Shooting Permit,02/11/2022 09:00:00 AM,02/11/2022 09:00:00 PM,02/08/2022 04:56:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between 34 STREET and 36 STREET, 2 AVENUE between 37 STREET and 39 STREET, 3 AVENUE between 34 STREET and 35 STREET, 3 AVENUE between 35 STREET and 36 STREET, 3 AVENUE between 36 STREET and 37 STREET, 4 AVENUE between 36 STREET and 38 STREET, 36 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between 36 STREET and 37 STREET, 36 STREET between 5 AVENUE and 7 AVENUE",Brooklyn,7,72,Television,Episodic series,United States of America,11232
+625045,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 11:00:00 PM,02/08/2022 03:47:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+625041,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 10:00:00 PM,02/08/2022 03:33:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+625040,Shooting Permit,02/15/2022 07:00:00 AM,02/15/2022 09:00:00 PM,02/08/2022 03:30:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625039,Shooting Permit,02/12/2022 08:00:00 AM,02/12/2022 08:00:00 PM,02/08/2022 03:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE,Brooklyn,1,90,Music Video,Signed Artist,United States of America,11237
+625026,Shooting Permit,02/09/2022 11:00:00 AM,02/09/2022 09:00:00 PM,02/08/2022 02:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COURT STREET between MONTAGUE STREET and LIVINGSTON STREET, SCHERMERHORN STREET between COURT STREET and CLINTON STREET, CLINTON STREET between STATE STREET and LIVINGSTON STREET, HENRY STREET between ORANGE STREET and CRANBERRY STREET, HENRY STREET between CRANBERRY STREET and MIDDAGH STREET, MIDDAGH STREET between HENRY STREET and CADMAN PLAZA WEST, HENRY STREET between MIDDAGH STREET and POPLAR STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+625014,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 10:00:00 PM,02/08/2022 02:13:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+625002,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 10:00:00 PM,02/08/2022 01:29:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS AVENUE between PUTMAN AVENUE and JEFFERSON AVENUE,Brooklyn,3,81,Documentary,Not Applicable,United States of America,11221
+625000,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/08/2022 01:25:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEWIS AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE,Brooklyn,3,81,Documentary,Not Applicable,United States of America,11221
+624999,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 10:00:00 PM,02/08/2022 01:23:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MESEROLE AVENUE between JEWEL STREET and RUSSELL STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624994,Theater Load in and Load Outs,02/14/2022 12:01:00 AM,02/14/2022 11:59:00 PM,02/08/2022 12:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+624988,Theater Load in and Load Outs,02/13/2022 12:01:00 AM,02/13/2022 11:59:00 PM,02/08/2022 12:27:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+624987,Theater Load in and Load Outs,02/12/2022 12:01:00 AM,02/12/2022 11:59:00 PM,02/08/2022 12:22:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+624983,Theater Load in and Load Outs,02/15/2022 12:01:00 AM,02/18/2022 06:00:00 AM,02/08/2022 12:07:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+624981,Theater Load in and Load Outs,02/12/2022 12:01:00 AM,02/14/2022 06:00:00 AM,02/08/2022 12:03:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+624980,Theater Load in and Load Outs,02/11/2022 12:01:00 AM,02/11/2022 11:59:00 PM,02/08/2022 11:56:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+624972,Shooting Permit,02/12/2022 11:00:00 AM,02/13/2022 01:00:00 AM,02/08/2022 11:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624971,Shooting Permit,02/11/2022 12:00:00 PM,02/12/2022 02:00:00 AM,02/08/2022 11:29:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624968,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 11:00:00 PM,02/08/2022 11:22:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+624963,Shooting Permit,02/11/2022 02:00:00 PM,02/12/2022 04:00:00 AM,02/08/2022 10:57:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, PATTERSON AVENUE between ST LAWRENCE AVENUE and THERIOT AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, BEACH AVENUE between PATTERSON AVENUE and O'BRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, THERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THERIOT AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and RANDALL AVENUE, Soundview Ave between Leland Ave and Underhill Ave",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+624933,Shooting Permit,02/22/2022 06:00:00 AM,02/22/2022 09:00:00 PM,02/08/2022 08:28:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624931,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 10:00:00 PM,02/08/2022 08:18:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624907,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 07:00:00 PM,02/07/2022 08:03:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 5 AVENUE and 6 AVENUE, WEST 19 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 19 STREET and EAST 18 STREET, 5 AVENUE between EAST 19 STREET and EAST 18 STREET, 5 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,5,13,Commercial,Commercial,United States of America,"10003, 10011"
+624899,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/07/2022 06:08:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+624897,Shooting Permit,02/10/2022 09:00:00 AM,02/11/2022 02:00:00 AM,02/07/2022 06:02:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 58 STREET and WEST 59 STREET, 6 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, CENTRAL PARK SOUTH between 6 AVENUE and COLUMBUS CIRCLE",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+624886,Shooting Permit,02/11/2022 07:00:00 AM,02/11/2022 10:00:00 PM,02/07/2022 04:52:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between MORGAN AVENUE and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+624877,Shooting Permit,02/11/2022 01:00:00 PM,02/12/2022 03:00:00 AM,02/07/2022 04:22:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, 54 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 54 AVENUE and 55 AVENUE, 56 AVENUE between CENTER BOULEVARD and 2 STREET, 55 AVENUE between CENTER BOULEVARD and 2 STREET, CENTER BOULEVARD between 54 AVENUE and 55 AVENUE, CENTER BOULEVARD between 55 AVENUE and 56 AVENUE, 48 AVENUE between VERNON BOULEVARD and FIFTH STREET, 57 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 57 AVENUE and 56 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+624868,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 06:00:00 PM,02/07/2022 03:52:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between SPRING STREET and GRAND STREET,Manhattan,2,"1, 5",Commercial,Commercial,United States of America,"10012, 10013"
+624859,Shooting Permit,02/17/2022 08:00:00 AM,02/18/2022 12:00:00 AM,02/07/2022 03:29:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","CANAL STREET between WASHINGTON STREET and RENWICK STREET, GREENWICH STREET between CANAL STREET and VANDAM STREET, WEST STREET between CHAMBERS STREET and HARRISON STREET, WEST STREET between HARRISON STREET and NORTH MOORE STREET, GREENWICH STREET between CHAMBERS STREET and JAY STREET, GREENWICH STREET between HARRISON STREET and FRANKLIN STREET, JAY STREET between GREENWICH STREET and STAPLE STREET, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,"1, 2",1,Television,Cable-episodic,United States of America,"10013, 10282"
+624858,Shooting Permit,02/10/2022 02:00:00 PM,02/11/2022 04:00:00 AM,02/07/2022 03:26:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","34 STREET between 31 AVENUE and BROADWAY, BROADWAY between 34 STREET and 35 STREET, 35 STREET between 31 AVENUE and BROADWAY, BROADWAY between 35 STREET and 36 STREET, 36 STREET between 31 AVENUE and 34 AVENUE, BROADWAY between 36 STREET and 37 STREET, 35 STREET between BROADWAY and 34 AVENUE, 33 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 33 STREET and 34 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+624854,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 10:00:00 PM,02/07/2022 03:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+624837,Shooting Permit,02/11/2022 07:00:00 AM,02/11/2022 09:00:00 PM,02/07/2022 02:32:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624834,Shooting Permit,02/10/2022 02:00:00 PM,02/11/2022 05:00:00 AM,02/07/2022 02:28:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","89 AVENUE between 165 STREET and 168 STREET, 165 STREET between 89 AVENUE and HILLSIDE AVENUE, 165 STREET between 89 AVENUE and JAMAICA AVENUE, 89 AVENUE between 164 STREET and 165 STREET, MERRICK BOULEVARD between JAMAICA AVENUE and 89 AVENUE, MERRICK BOULEVARD between 89 AVENUE and HILLSIDE AVENUE, HILLSIDE AVENUE between 162 STREET and 165 STREET, HILLSIDE AVENUE between 161 STREET and 162 STREET",Queens,"12, 8","103, 107",Television,Cable-episodic,United States of America,11432
+624832,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 09:00:00 PM,02/07/2022 02:23:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624829,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 10:00:00 PM,02/07/2022 02:19:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624826,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/07/2022 02:09:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,4,10,Commercial,Promo,United States of America,10011
+624825,Shooting Permit,02/16/2022 07:00:00 AM,02/16/2022 11:00:00 PM,02/07/2022 02:09:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+624821,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 10:00:00 PM,02/07/2022 01:57:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,4,10,Commercial,Promo,United States of America,10011
+624810,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 11:00:00 PM,02/07/2022 01:38:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between HAUSMAN STREET and APOLLO STREET, APOLLO STREET between BRIDGEWATER STREET and DEAD END, APOLLO STREET between BRIDGEWATER STREET and NASSAU AVENUE, BRIDGEWATER STREET between APOLLO STREET and VAN DAM STREET, BRIDGEWATER STREET between MEEKER AVENUE and VARICK STREET",Queens,"1, 5","104, 94",Television,Cable-episodic,United States of America,"11222, 11385"
+624799,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 08:00:00 PM,02/07/2022 01:20:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+624767,Theater Load in and Load Outs,02/11/2022 12:01:00 AM,02/13/2022 06:00:00 AM,02/07/2022 11:48:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+624766,Shooting Permit,02/17/2022 08:00:00 AM,02/17/2022 08:00:00 PM,02/07/2022 11:43:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between ARGYLE ROAD and RUGBY ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD, RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+624765,Theater Load in and Load Outs,02/10/2022 12:01:00 AM,02/10/2022 11:59:00 PM,02/07/2022 11:41:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+624763,Shooting Permit,02/16/2022 08:00:00 AM,02/16/2022 08:00:00 PM,02/07/2022 11:38:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between ARGYLE ROAD and RUGBY ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+624762,Theater Load in and Load Outs,02/10/2022 12:01:00 AM,02/11/2022 11:59:00 PM,02/07/2022 11:37:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+624753,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 10:00:00 PM,02/07/2022 11:05:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+624744,Shooting Permit,02/10/2022 07:00:00 AM,02/10/2022 10:00:00 PM,02/07/2022 10:53:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+624735,Shooting Permit,02/10/2022 12:00:00 PM,02/11/2022 02:00:00 AM,02/07/2022 10:24:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624712,Theater Load in and Load Outs,02/08/2022 07:00:00 AM,02/09/2022 01:00:00 AM,02/07/2022 08:30:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 6 AVENUE and FORT GREENE PLACE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+624671,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 07:00:00 PM,02/06/2022 03:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 5 AVENUE and 6 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, CENTER BOULEVARD between 47 ROAD and 47 AVENUE",Manhattan,"2, 5","108, 18",Commercial,Commercial,United States of America,"10020, 10112, 11101, 11109"
+624662,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 11:59:00 PM,02/06/2022 01:20:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between 41 STREET and 45 STREET, 47 AVENUE between 42 STREET and 44 STREET, 43 STREET between 47 AVENUE and GREENPOINT AVENUE, 43 STREET between QUEENS BOULEVARD and 43 AVENUE, QUEENS BOULEVARD between 43 STREET and 44 STREET, QUEENS BOULEVARD between 42 STREET and 43 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 AVENUE between 42 STREET and 44 STREET, QUEENS BOULEVARD between 44 STREET and 45 STREET, QUEENS BOULEVARD between 41 STREET and 42 STREET, SKILLMAN AVENUE between VAN DAM STREET and 37 STREET, VAN DAM STREET between 47 AVENUE and THOMSON AVENUE, 32 PL between QUEENS BLVD and 47TH AVE, 33 STREET between 47 AVENUE and QUEENS BOULEVARD, 44 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104, 11377"
+624655,Shooting Permit,02/09/2022 08:00:00 AM,02/09/2022 11:59:00 PM,02/06/2022 12:01:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, 19 STREET between 23 AVENUE and 22 ROAD, 22 ROAD between 19 STREET and 21 STREET, 21 STREET between 22 ROAD and 23 AVENUE, 22 DRIVE between 19 STREET and 21 STREET",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+624636,Theater Load in and Load Outs,02/11/2022 12:01:00 AM,02/13/2022 06:00:00 AM,02/05/2022 04:45:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+624633,Theater Load in and Load Outs,02/12/2022 12:01:00 AM,02/13/2022 06:00:00 AM,02/05/2022 04:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+624632,Theater Load in and Load Outs,02/11/2022 12:01:00 AM,02/11/2022 11:59:00 PM,02/05/2022 04:33:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 8 AVENUE between WEST 30 STREET and WEST 31 STREET, 8 AVENUE between WEST 29 STREET and WEST 30 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+624607,Shooting Permit,02/15/2022 08:00:00 AM,02/15/2022 08:00:00 PM,02/05/2022 10:18:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between ARGYLE ROAD and RUGBY ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD, RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+624582,DCAS Prep/Shoot/Wrap Permit,02/09/2022 07:00:00 AM,02/09/2022 12:00:00 PM,02/04/2022 05:21:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Episodic series,United States of America,11201
+624570,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 09:00:00 PM,02/04/2022 03:57:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and WEST 115 STREET, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 112 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, MORNINGSIDE AVENUE between WEST 114 STREET and WEST 120 STREET, WEST 115 STREET between ST NICHOLAS AVENUE and LENOX AVENUE",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,10026
+624567,Shooting Permit,02/09/2022 10:00:00 AM,02/10/2022 02:00:00 AM,02/04/2022 03:51:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY AVENUE between DEKALB AVENUE and WILLOUGHBY AVENUE, CLINTON AVENUE between DEKALB AVENUE and WILLOUGHBY AVENUE, DEKALB AVENUE between VANDERBILT AVENUE and WASHINGTON AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+624538,Shooting Permit,02/09/2022 12:00:00 PM,02/10/2022 12:30:00 AM,02/04/2022 02:28:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between KING STREET and WEST HOUSTON STREET, HUDSON STREET between VANDAM STREET and KING STREET, CHARLTON STREET between HUDSON STREET and GREENWICH STREET, CHARLTON STREET between HUDSON STREET and VARICK STREET, THOMAS STREET between WEST BROADWAY and CHURCH STREET, WEST BROADWAY between THOMAS STREET and LEONARD STREET, CHURCH STREET between THOMAS STREET and WORTH STREET, HUBERT STREET between GREENWICH STREET and WEST STREET, NORTH MOORE STREET between WEST STREET and HUDSON STREET, WEST STREET between HUBERT STREET and NORTH MOORE STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,"10007, 10013, 10014"
+624537,Shooting Permit,02/09/2022 05:00:00 PM,02/09/2022 11:00:00 PM,02/04/2022 02:20:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADSEN AVENUE between RICHMOND VALLEY ROAD and BOSCOMBE AVENUE, BOSCOMBE AVENUE between MADSEN AVENUE and TYRELLAN AVENUE",Staten Island,3,123,Television,Episodic series,United States of America,10309
+624533,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 11:00:00 PM,02/04/2022 02:07:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE D between ALBANY AVENUE and TROY AVENUE, AVENUE D between TROY AVENUE and EAST 45 STREET, AVENUE D between EAST 45 STREET and EAST 46 STREET, AVENUE D between EAST 46 STREET and SCHENECTADY AVENUE, AVENUE D between SCHNECTADY AVENUE and EAST 48 STREET, AVENUE D between EAST 49 STREET and UTICA AVENUE, AVENUE D between UTICA AVENUE and EAST 52 STREET, EAST 49 STREET between AVENUE D and FOSTER AVENUE, UTICA AVENUE between AVENUE D and FOSTER AVENUE",Brooklyn,"1, 17","67, 94",Television,Episodic series,United States of America,"11203, 11222"
+624527,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 10:00:00 PM,02/04/2022 01:49:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+624525,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 05:30:00 PM,02/04/2022 01:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",CUMBERLAND STREET between DEKALB AVENUE and LAFAYETTE AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,"11201, 11205, 11217"
+624522,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 09:00:00 PM,02/04/2022 01:31:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624512,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 10:00:00 PM,02/04/2022 01:05:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624508,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 11:00:00 PM,02/04/2022 12:52:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between MESEROLE AVENUE and CALYER STREET, MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and DIAMOND STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624495,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 08:00:00 PM,02/04/2022 11:57:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+624493,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 12:00:00 PM,02/04/2022 11:51:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","FREDERICK DOUGLASS BOULEVARD between WEST 114 STREET and WEST 113 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 114 STREET and WEST 115 STREET",Manhattan,10,28,Television,Special/Awards Show,United States of America,10026
+624485,Shooting Permit,02/10/2022 06:00:00 AM,02/11/2022 01:00:00 AM,02/04/2022 11:40:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 6 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10010, 10011"
+624481,Shooting Permit,02/09/2022 06:00:00 AM,02/10/2022 01:00:00 AM,02/04/2022 11:36:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 16 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 16 STREET between 8 AVENUE and 9 AVENUE, WEST 14 STREET between 8 AVENUE and 10 AVENUE, WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE, WEST 17 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 19 STREET, 9 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+624473,Shooting Permit,02/15/2022 06:00:00 AM,02/15/2022 11:00:00 PM,02/04/2022 11:13:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between 2 AVENUE and 1 AVENUE, EAST 59 STREET between 1 AVENUE and YORK AVENUE, EAST 58 STREET between 1 AVENUE and SUTTON PLACE, EAST 57 STREET between 1 AVENUE and 2 AVENUE, EAST 57 STREET between 1 AVENUE and SUTTON PLACE, EAST 56 STREET between 1 AVENUE and SUTTON PLACE SOUTH",Manhattan,"6, 8","17, 19",Television,Cable-episodic,United States of America,10022
+624471,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 10:00:00 PM,02/04/2022 11:11:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+624465,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 11:00:00 PM,02/04/2022 10:49:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+624455,Shooting Permit,02/09/2022 09:00:00 AM,02/09/2022 11:59:00 PM,02/04/2022 10:18:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 84 STREET between 1 AVENUE and 2 AVENUE, YORK AVENUE between EAST 79 STREET and EAST 84 STREET, EAST 80 STREET between 1 AVENUE and YORK AVENUE, EAST 85 STREET between 1 AVENUE and YORK AVENUE, EAST 86 STREET between 1 AVENUE and 2 AVENUE, EAST 83 STREET between 1 AVENUE and 2 AVENUE, EAST 83 STREET between YORK AVENUE and 1 AVENUE, 1 AVENUE between EAST 83 STREET and EAST 84 STREET, 2 AVENUE between EAST 84 STREET and EAST 85 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075"
+624454,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 10:00:00 PM,02/04/2022 10:16:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",48 AVENUE between VERNON BOULEVARD and 5 STREET,Queens,2,108,Commercial,Commercial,United States of America,"11101, 11109"
+624433,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 09:00:00 PM,02/04/2022 08:48:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624430,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/04/2022 07:29:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624407,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 07:00:00 PM,02/03/2022 07:21:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between LINDEN STREET and GROVE STREET, BROADWAY between GROVE STREET and GREENE AVENUE",Brooklyn,"3, 4","81, 83",WEB,Not Applicable,United States of America,11221
+624390,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 07:00:00 PM,02/03/2022 05:09:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Commercial,Commercial,United States of America,10036
+624386,Shooting Permit,02/08/2022 06:00:00 AM,02/09/2022 01:00:00 AM,02/03/2022 04:55:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, 5 AVENUE between EAST 71 STREET and EAST 73 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6, 64, 8","17, 18, 19, 22",Television,Episodic series,United States of America,"10021, 10022, 10023, 10152"
+624382,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 10:00:00 PM,02/03/2022 04:46:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624379,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 09:00:00 PM,02/03/2022 04:34:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRON STREET between 116 AVENUE and 116 DRIVE, 116 ROAD between BARRON STREET and 155 STREET, 157 STREET between 116 AVENUE and FOCH BOULEVARD, 157 STREET between 115 DRIVE and 116 AVENUE, 116 AVENUE between BARRON STREET and BEDELL STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and 154 STREET, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Queens,"12, 9","113, 43",Television,Cable-episodic,United States of America,"10473, 11434"
+624377,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,02/03/2022 04:31:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+624371,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 09:00:00 PM,02/03/2022 04:11:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE BOULEVARD between 21 AVENUE and 20 AVENUE, 20 AVENUE between SHORE BOULEVARD and 25 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+624370,Shooting Permit,02/11/2022 06:00:00 AM,02/12/2022 12:00:00 AM,02/03/2022 04:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 10 AVENUE and 11 AVENUE, WEST END AVENUE between WEST 60 STREET and WEST 59 STREET, WEST 58 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 59 STREET and WEST 58 STREET, 11 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"4, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+624369,Theater Load in and Load Outs,02/04/2022 12:01:00 AM,02/05/2022 06:00:00 AM,02/03/2022 04:03:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+624366,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 10:00:00 PM,02/03/2022 03:48:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 4 STREET and EAST 7 STREET, AVENUE A between EAST 9 STREET and EAST 10 STREET, EAST 9 STREET between AVENUE A and 1 AVENUE, EAST 10 STREET between AVENUE A and AVENUE B",Manhattan,3,9,Television,Episodic series,United States of America,10009
+624352,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 10:00:00 PM,02/03/2022 03:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, SHEFFIELD AVENUE between PITKIN AVENUE and BELMONT AVENUE, PENNSYLVANIA AVENUE between PITKIN AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+624349,Shooting Permit,02/07/2022 01:00:00 AM,02/07/2022 11:00:00 PM,02/03/2022 03:11:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE D between ALBANY AVENUE and TROY AVENUE, AVENUE D between TROY AVENUE and EAST 45 STREET, AVENUE D between EAST 45 STREET and EAST 46 STREET, AVENUE D between EAST 46 STREET and SCHENECTADY AVENUE, AVENUE D between SCHNECTADY AVENUE and EAST 48 STREET, AVENUE D between EAST 49 STREET and UTICA AVENUE, AVENUE D between UTICA AVENUE and EAST 52 STREET, EAST 56 STREET between CLARENDON ROAD and AVENUE D, EAST 57 STREET between CLARENDON ROAD and AVENUE D, EAST 58 STREET between CLARENDON ROAD and DITMAS AVENUE, AVENUE D between EAST 56 STREET and EAST 57 STREET, DITMAS AVENUE between EAST 57 STREET and EAST 58 STREET, 19 STREET between 24 AVENUE and 22 DRIVE, HOYT AVENUE NORTH between 19 STREET and 21 STREET, HOYT AVENUE NORTH between 21 STREET and 23 STREET, ASTORIA PARK SOUTH between 18 STREET and 21 STREET",Brooklyn,"1, 17","114, 67",Television,Episodic series,United States of America,"11102, 11105, 11203"
+624310,Shooting Permit,02/07/2022 08:00:00 AM,02/07/2022 10:00:00 PM,02/03/2022 01:21:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+624309,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 11:00:00 PM,02/03/2022 01:20:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 33 STREET and 37 STREET, 36 STREET between BROADWAY and 34 AVENUE, 34 STREET between BROADWAY and 34 AVENUE, 35 STREET between 34 AVENUE and BROADWAY, 34 AVENUE between 33 STREET and 36 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 23 STREET and 21 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2","108, 114",Television,Not Applicable,United States of America,"11101, 11106"
+624307,Shooting Permit,02/06/2022 07:00:00 AM,02/06/2022 07:00:00 PM,02/03/2022 01:18:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+624282,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/03/2022 11:49:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 13 STREET between BERRY STREET and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11249
+624281,Shooting Permit,02/09/2022 06:00:00 AM,02/09/2022 11:59:00 PM,02/03/2022 11:49:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 12 STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NORTH 12 STREET between KENT AVENUE and BERRY STREET, NORTH 12 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 15 STREET, KENT AVENUE between NORTH 11 STREET and NORTH 12 STREET, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11249
+624280,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 07:00:00 PM,02/03/2022 11:44:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","FORT GREENE PLACE between LAFAYETTE AVENUE and HANSON PLACE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREENE PLACE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+624278,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,02/03/2022 11:39:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between WILLETT STREET and PITT STREET, GRAND STREET between WILLETT STREET and COLUMBIA STREET, WILLETT STREET between DELANCEY STREET and GRAND STREET, GRAND STREET between PITT STREET and CLINTON STREET, GRAND STREET between CLINTON STREET and SUFFOLK STREET, GRAND STREET between SUFFOLK STREET and NORFOLK STREET, GRAND STREET between NORFOLK STREET and ESSEX STREET",Manhattan,3,7,Television,Cable-episodic,United States of America,10002
+624273,Theater Load in and Load Outs,02/08/2022 12:01:00 AM,02/09/2022 06:00:00 AM,02/03/2022 11:18:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+624271,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 08:00:00 PM,02/03/2022 11:16:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between MADISON AVENUE and PARK AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between 2 AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 46 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 46 STREET, 3 AVENUE between EAST 46 STREET and EAST 47 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10171"
+624268,Theater Load in and Load Outs,02/07/2022 12:01:00 AM,02/08/2022 06:00:00 AM,02/03/2022 11:10:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+624265,Shooting Permit,02/05/2022 07:00:00 AM,02/05/2022 08:00:00 PM,02/03/2022 10:58:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624245,Shooting Permit,02/12/2022 09:00:00 AM,02/13/2022 12:30:00 AM,02/03/2022 09:33:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624244,Shooting Permit,02/11/2022 10:00:00 AM,02/12/2022 01:00:00 AM,02/03/2022 09:32:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624243,Shooting Permit,02/10/2022 08:00:00 AM,02/10/2022 11:00:00 PM,02/03/2022 09:30:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624235,Theater Load in and Load Outs,02/09/2022 12:01:00 AM,02/10/2022 11:59:00 PM,02/03/2022 06:58:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+624208,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 08:00:00 PM,02/02/2022 06:03:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+624203,Shooting Permit,02/08/2022 03:00:00 PM,02/08/2022 11:59:00 PM,02/02/2022 05:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENSBORO BRIDGE and 40 AVENUE, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 ROAD, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET",Queens,"1, 2","108, 114",Television,Cable-episodic,United States of America,11101
+624200,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 07:00:00 PM,02/02/2022 04:56:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and NEVINS STREET, BOND STREET between UNION STREET and SACKETT STREET",Brooklyn,6,"76, 78",WEB,Not Applicable,United States of America,"11215, 11217, 11231"
+624196,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 06:00:00 AM,02/02/2022 04:43:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+624194,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 06:00:00 AM,02/02/2022 04:39:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+624193,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 09:00:00 PM,02/02/2022 04:38:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",BRIDGE STREET between PLYMOUTH STREET and JOHN STREET,Brooklyn,2,84,Commercial,Industrial/Corporate,United States of America,11201
+624192,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 09:00:00 PM,02/02/2022 04:29:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVE between WEST 170 STREET and WEST 174 STREET, WEST 171 STREET between BROADWAY and ST NICHOLAS AVENUE, WEST 172 STREET between BROADWAY and ST NICHOLAS AVENUE, BROADWAY between WEST 168 STREET and WEST 174 STREET, WEST 171 STREET between BROADWAY and FT WASHINGTON AVENUE, WEST 170 STREET between FT WASHINGTON AVENUE and BROADWAY",Manhattan,12,"33, 34",Television,Episodic series,United States of America,"10032, 10033, 10040"
+624182,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 10:00:00 PM,02/02/2022 03:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+624180,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 09:00:00 PM,02/02/2022 03:31:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","157 STREET between 115 DRIVE and 116 AVENUE, 116 AVENUE between BARRON STREET and BEDELL STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and 154 STREET, 157 STREET between 116 AVENUE and FOCH BOULEVARD",Queens,12,113,Television,Cable-episodic,United States of America,11434
+624177,Shooting Permit,02/09/2022 09:00:00 AM,02/09/2022 11:00:00 PM,02/02/2022 03:13:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624175,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 09:00:00 PM,02/02/2022 03:11:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624174,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 09:00:00 PM,02/02/2022 03:11:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624170,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 10:00:00 PM,02/02/2022 02:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELDERT STREET between DEAD END and WYCKOFF AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+624152,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 09:00:00 PM,02/02/2022 02:02:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between KINGSLAND AVENUE and DEAD END, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624144,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,02/02/2022 01:50:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+624125,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 09:00:00 PM,02/02/2022 12:57:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 44 AVENUE and 43 AVENUE, 44 AVENUE between 10 STREET and 9 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+624120,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 11:00:00 PM,02/02/2022 12:46:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITESTONE EXPRESSWAY SR NB between 20TH AVE and 14TH AVE, 15 AVENUE between 141 STREET and 138 STREET, PETRACCA PLACE between 20 AVENUE and DEAD END, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 7","109, 94",Television,Episodic series,United States of America,"11222, 11357"
+624111,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 10:00:00 PM,02/02/2022 12:23:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between DYER AVENUE and 10 AVENUE, WEST 36 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 9 AVENUE, WEST 38 STREET between 10 AVENUE and 11 AVENUE, WEST 38 STREET between 10 AVENUE and 9 AVENUE, WEST 39 STREET between 10 AVENUE and 11 AVENUE, WEST 38 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,10018
+624104,Shooting Permit,02/03/2022 10:00:00 AM,02/03/2022 11:30:00 PM,02/02/2022 12:06:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+624092,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 09:00:00 PM,02/02/2022 11:04:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 7 STREET and NORTH 8 STREET, NORTH 8 STREET between WYTHE AVENUE and ADAM VENESKI WALK, NORTH 7 STREET between WYTHE AVENUE and ADAM VENESKI WALK, NORTH 8 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 9 STREET between WYTHE AVENUE and KENT AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11249"
+624090,Shooting Permit,02/04/2022 09:30:00 AM,02/05/2022 07:30:00 PM,02/02/2022 10:57:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, QUEENS PLAZA SOUTH between 13 STREET and 21 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 12 STREET and 13 STREET, 43 AVENUE between 13 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+624081,Shooting Permit,03/09/2022 07:00:00 AM,03/09/2022 09:00:00 PM,02/02/2022 10:22:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+624078,Theater Load in and Load Outs,02/08/2022 12:01:00 AM,02/08/2022 11:59:00 PM,02/02/2022 09:59:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+624070,Shooting Permit,02/04/2022 07:00:00 AM,02/04/2022 09:00:00 PM,02/02/2022 08:07:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 187 STREET between HOFFMAN STREET and HUGHES AVENUE, EAST 187 STREET between ARTHUR AVENUE and BEAUMONT AVENUE, HUGHES AVENUE between EAST 187 STREET and EAST 188 STREET, HUGHES AVENUE between EAST 187 STREET and EAST 186 STREET, ARTHUR AVENUE between EAST 187 STREET and EAST 188 STREET, ARTHUR AVENUE between EAST 187 STREET and EAST 186 STREET, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"6, 9","43, 48",Television,Cable-episodic,United States of America,"10458, 10473"
+624054,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 09:00:00 PM,02/01/2022 09:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+624045,Shooting Permit,02/04/2022 09:00:00 AM,02/04/2022 11:00:00 PM,02/01/2022 06:15:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 29 STREET and 35 STREET, REVIEW AVENUE between 35 STREET and VAN DAM STREET, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+624038,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,02/01/2022 05:00:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 STREET between 47 AVENUE and 48 AVENUE, 47 AVENUE between 31 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+624036,Shooting Permit,02/12/2022 06:00:00 AM,02/12/2022 11:00:00 PM,02/01/2022 04:58:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+624035,Shooting Permit,02/04/2022 08:30:00 AM,02/05/2022 01:30:00 AM,02/01/2022 04:55:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 STREET between 47 AVENUE and 48 AVENUE, 47 AVENUE between 31 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+624033,DCAS Prep/Shoot/Wrap Permit,02/06/2022 06:00:00 AM,02/06/2022 07:00:00 PM,02/01/2022 04:48:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, CENTRE STREET between WORTH STREET and HOGAN PLACE, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, LAFAYETTE STREET between LEONARD STREET and WHITE STREET, WALKER STREET between CANAL STREET and BROADWAY, WORTH STREET between CENTRE STREET and BAXTER STREET, MADISON STREET between JAMES STREET and OLIVER STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,"10007, 10013, 10038"
+624032,Shooting Permit,02/13/2022 10:00:00 AM,02/13/2022 10:00:00 PM,02/01/2022 04:46:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 72 STREET between YORK AVENUE and DEAD END,Manhattan,8,19,Film,Short,United States of America,10021
+624030,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 11:00:00 PM,02/01/2022 04:33:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 79 STREET and EAST 76 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 76 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, PARK AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 75 STREET between PARK AVENUE and MADISON AVENUE, EAST 77 STREET between MADISON AVENUE and 5 AVENUE, EAST 79 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+624029,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,02/01/2022 04:32:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 79 STREET and EAST 76 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 76 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, PARK AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 75 STREET between PARK AVENUE and MADISON AVENUE, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, EAST 79 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+624028,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 09:00:00 PM,02/01/2022 04:29:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+624004,Shooting Permit,02/04/2022 08:00:00 AM,02/04/2022 11:59:00 PM,02/01/2022 03:45:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 30 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, EAST 31 STREET between 3 AVENUE and LEXINGTON AVENUE, 1 AVENUE between EAST 27 STREET and EAST 28 STREET, 1 AVENUE between EAST 26 STREET and EAST 25 STREET, 2 AVENUE between EAST 29 STREET and EAST 28 STREET, 2 AVENUE between EAST 28 STREET and EAST 27 STREET, 2 AVENUE between EAST 27 STREET and EAST 26 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and FDR DRIVE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 2 AVENUE and 1 AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, EAST 27 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+623992,Shooting Permit,02/03/2022 12:00:00 PM,02/03/2022 11:00:00 PM,02/01/2022 03:22:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, 37 STREET between STARR AVENUE and BRADLEY AVENUE, BRADLEY AVENUE between GREENPOINT AVENUE and 37 STREET, GREENPOINT AVENUE between STARR AVENUE and BRADLEY AVENUE, 47 AVENUE between 31 PLACE and VAN DAM STREET, VAN DAM STREET between 47 AVENUE and 48 AVENUE, 32 PLACE between QUEENS BOULEVARD and 47 AVENUE, 32 PLACE between 47 AVENUE and 48 AVENUE, 47 AVENUE between 32 PLACE and 33 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+623979,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 11:00:00 PM,02/01/2022 02:44:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between VAN DAM STREET and REVIEW AVENUE, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, REVIEW AVENUE between 35 STREET and 29 STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+623972,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 10:00:00 PM,02/01/2022 02:25:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between DYER AVENUE and 10 AVENUE, WEST 36 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 9 AVENUE, WEST 38 STREET between 10 AVENUE and 11 AVENUE, WEST 38 STREET between 10 AVENUE and 9 AVENUE, WEST 39 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,10018
+623960,Shooting Permit,02/04/2022 07:00:00 AM,02/04/2022 08:00:00 PM,02/01/2022 01:53:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 11 STREET between BEDFORD AVENUE and WYTHE AVENUE, NORTH 11 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 10 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+623959,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 05:00:00 PM,02/01/2022 01:51:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 37 STREET and EAST 36 STREET,Manhattan,6,17,Commercial,Promo,United States of America,10016
+623957,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 08:00:00 PM,02/01/2022 01:46:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 90 STREET and EAST 91 STREET, LEXINGTON AVENUE between EAST 91 STREET and EAST 92 STREET, LEXINGTON AVENUE between EAST 92 STREET and EAST 93 STREET, EAST 92 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 88 STREET and EAST 90 STREET, EAST 90 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 90 STREET between 5 AVENUE and MADISON AVENUE, 3 AVENUE between EAST 89 STREET and EAST 92 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10128
+623949,Shooting Permit,02/04/2022 08:00:00 AM,02/04/2022 09:30:00 PM,02/01/2022 01:32:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between PECK SLIP and BEEKMAN STREET, SOUTH STREET between BEEKMAN STREET and FLETCHER STREET, JOHN STREET between FRONT STREET and SOUTH STREET, JOHN STREET between WATER STREET and PEARL STREET, MAIDEN LANE between FRONT STREET and PEARL STREET, FRONT STREET between MAIDEN LANE and WALL STREET, PEARL STREET between MAIDEN LANE and PINE STREET, CEDAR STREET between PEARL STREET and WILLIAM STREET, HANOVER STREET between WALL STREET and EXCHANGE PLACE",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+623945,Theater Load in and Load Outs,02/04/2022 12:01:00 AM,02/04/2022 11:59:00 PM,02/01/2022 01:26:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+623938,Theater Load in and Load Outs,02/14/2022 05:30:00 AM,02/15/2022 11:00:00 PM,02/01/2022 12:50:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+623935,Theater Load in and Load Outs,02/12/2022 06:00:00 AM,02/13/2022 11:00:00 PM,02/01/2022 12:40:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+623932,Theater Load in and Load Outs,02/11/2022 05:00:00 AM,02/12/2022 05:00:00 AM,02/01/2022 12:30:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+623926,Shooting Permit,02/04/2022 09:00:00 AM,02/05/2022 01:00:00 AM,02/01/2022 12:06:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","149 STREET between 95 AVENUE and 97 AVENUE, 95 AVENUE between 149 STREET and 150 STREET, 148 STREET between 94 AVENUE and 95 AVENUE, 95 AVENUE between 149 STREET and 148 STREET, 95 AVENUE between 148 STREET and SUTPHIN BOULEVARD, SUTPHIN BOULEVARD between 94 AVENUE and 97 AVENUE, 97 AVENUE between 149 STREET and 148 STREET, 148 STREET between 95 AVENUE and 97 AVENUE",Queens,12,103,Television,Cable-episodic,United States of America,11435
+623921,Shooting Permit,02/12/2022 09:00:00 AM,02/12/2022 09:00:00 PM,02/01/2022 11:42:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 72 STREET between YORK AVENUE and DEAD END,Manhattan,8,19,Film,Short,United States of America,10021
+623917,Shooting Permit,02/04/2022 08:00:00 AM,02/04/2022 10:00:00 PM,02/01/2022 11:32:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, SHORE ROAD between ARLEIGH ROAD and WEST DRIVE",Queens,11,111,Television,Episodic series,United States of America,11363
+623911,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 11:00:00 PM,02/01/2022 11:02:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 11 STREET, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 10 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 ROAD between 9 STREET and 10 STREET, 43 AVENUE between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 22 STREET and 23 STREET",Queens,2,108,Television,Not Applicable,United States of America,11101
+623885,Theater Load in and Load Outs,02/05/2022 05:30:00 AM,02/06/2022 11:59:00 PM,02/01/2022 08:25:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+623882,Theater Load in and Load Outs,02/02/2022 05:00:00 AM,02/05/2022 05:00:00 AM,02/01/2022 08:14:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+623855,Shooting Permit,02/04/2022 08:00:00 AM,02/04/2022 09:00:00 PM,01/31/2022 07:13:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+623854,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 08:00:00 PM,01/31/2022 07:12:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+623845,Shooting Permit,02/17/2022 10:00:00 AM,02/18/2022 12:01:00 AM,01/31/2022 05:52:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","YORK AVENUE between EAST 81 STREET and EAST 88 STREET, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, EAST 87 STREET between 1 AVENUE and YORK AVENUE, EAST 87 STREET between YORK AVENUE and EAST END AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+623840,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 06:00:00 AM,01/31/2022 05:13:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+623839,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 06:00:00 AM,01/31/2022 05:11:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+623838,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 06:00:00 AM,01/31/2022 05:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+623832,Shooting Permit,02/04/2022 07:00:00 AM,02/04/2022 10:00:00 PM,01/31/2022 04:32:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+623822,Shooting Permit,02/06/2022 10:00:00 AM,02/06/2022 03:00:00 PM,01/31/2022 03:50:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",SANDS ST between JAY ST and PEARL ST,Manhattan,"1, 2, 3","1, 5, 84",Film,Feature,United States of America,"10002, 10013, 10038, 11201"
+623821,Shooting Permit,02/03/2022 08:00:00 AM,02/03/2022 08:00:00 PM,01/31/2022 03:34:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between CAMBRIDGE PLACE and GRAND AVENUE, GRAND AVENUE between GREENE AVENUE and GATES AVENUE, CAMBRIDGE PLACE between GREENE AVENUE and GATES AVENUE, FULTON STREET between ST JAMES PLACE and CLASSON AVENUE, GATES AVENUE between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,"2, 3","79, 88",Television,Episodic series,United States of America,11238
+623818,Shooting Permit,02/02/2022 06:00:00 AM,02/03/2022 12:00:00 AM,01/31/2022 03:25:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 29 STREET between 24 AVENUE and HOYT AVENUE NORTH, 24 AVENUE between 27 STREET and 29 STREET, 24 AVENUE between 29 STREET and 31 STREET, HOYT AVENUE NORTH between 19 STREET and 21 STREET, HOYT AVENUE NORTH between 21 STREET and 23 STREET, ASTORIA PARK SOUTH between 18 STREET and 21 STREET",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11102, 11222"
+623810,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 09:00:00 PM,01/31/2022 03:10:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRON STREET between 116 AVENUE and 116 DRIVE, 116 ROAD between BARRON STREET and 155 STREET, 157 STREET between 116 AVENUE and FOCH BOULEVARD, 116 AVENUE between BARRON STREET and BEDELL STREET, 157 STREET between 116 AVENUE and 115 DRIVE, BAISLEY BOULEVARD between LAKEVIEW LANE and 154 STREET, PARSONS BOULEVARD between JEWEL AVENUE and 65 AVENUE, JEWEL AVENUE between PARSONS BOULEVARD and 161 STREET, KISSENA BOULEVARD between MELBOURNE AVENUE and 65 AVENUE",Queens,"12, 8","107, 113",Television,Cable-episodic,United States of America,"11365, 11367, 11434"
+623793,Shooting Permit,02/03/2022 11:00:00 AM,02/04/2022 01:00:00 AM,01/31/2022 02:06:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 82 STREET and EAST 85 STREET, LEXINGTON AVENUE between EAST 79 STREET and EAST 82 STREET, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 83 STREET and EAST 85 STREET, EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10075"
+623785,Shooting Permit,02/18/2022 11:00:00 AM,02/19/2022 01:00:00 AM,01/31/2022 01:46:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 13 STREET and NORTH 15 STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 11 STREET between KENT AVENUE and BERRY STREET, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 9 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11249
+623784,Shooting Permit,02/15/2022 07:00:00 AM,02/15/2022 09:00:00 PM,01/31/2022 01:45:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and DELANCEY STREET, BOWERY between BROOME STREET and CANAL STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, ELDRIDGE STREET between RIVINGTON STREET and DELANCEY STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+623762,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,01/31/2022 12:33:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 25 STREET, EAST 23 STREET between 3 AVENUE and 2 AVENUE, EAST 22 STREET between 3 AVENUE and 2 AVENUE, EAST 22 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 20 STREET and EAST 22 STREET, IRVING PLACE between EAST 15 STREET and EAST 16 STREET",Manhattan,"1, 5, 6","1, 13",Television,Cable-episodic,United States of America,"10003, 10005, 10010, 10045"
+623756,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 09:00:00 PM,01/31/2022 12:06:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 32 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,5,14,Commercial,Industrial/Corporate,United States of America,10016
+623752,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 10:00:00 PM,01/31/2022 11:52:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 11 STREET between WHYTE AVENUE and KENT AVENUE, NORTH 10 STREET between KENT AVENUE and WHYTE AVENUE, NORTH 11 STREET between WHYTE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+623749,Shooting Permit,02/04/2022 09:00:00 AM,02/04/2022 11:00:00 PM,01/31/2022 11:40:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 33 STREET and 37 STREET, 36 STREET between BROADWAY and 34 AVENUE, 34 STREET between BROADWAY and 34 AVENUE, 35 STREET between 34 AVENUE and BROADWAY, 34 AVENUE between 33 STREET and 36 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 23 STREET and 21 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2","108, 114",Television,Not Applicable,United States of America,"11101, 11106"
+623748,Shooting Permit,02/08/2022 07:00:00 AM,02/08/2022 10:00:00 PM,01/31/2022 11:40:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623745,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 09:00:00 PM,01/31/2022 11:31:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+623744,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,01/31/2022 11:29:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623743,Shooting Permit,02/04/2022 07:00:00 AM,02/04/2022 10:00:00 PM,01/31/2022 11:25:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623739,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 09:00:00 PM,01/31/2022 11:07:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Commercial,Industrial/Corporate,United States of America,10018
+623732,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 09:00:00 PM,01/31/2022 10:40:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET, ELIZABETH STREET between BROOME STREET and GRAND STREET, GRAND STREET between ELIZABETH STREET and BOWERY, CHRYSTIE STREET between BROOME STREET and GRAND STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET, GRAND STREET between CHRYSTIE STREET and FORSYTH STREET, BOWERY between GRAND STREET and HESTER STREET, BOWERY between HESTER STREET and CANAL STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+623728,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 09:00:00 PM,01/31/2022 10:35:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",3 AVENUE between 32 STREET and 34 STREET,Brooklyn,7,72,Commercial,Industrial/Corporate,United States of America,11232
+623722,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 11:00:00 PM,01/31/2022 10:22:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 59 STREET and WEST 57 STREET, WEST 57 STREET between 11 AVENUE and 10 AVENUE, WEST 57 STREET between 10 AVENUE and 8 AVENUE, 10 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, WEST 56 STREET between 12 AVENUE and 11 AVENUE, WEST 56 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 54 STREET and WEST 56 STREET, WEST 55 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Not Applicable,United States of America,10019
+623720,Shooting Permit,02/07/2022 07:00:00 AM,02/07/2022 10:00:00 PM,01/31/2022 10:15:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623714,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 11:00:00 PM,01/31/2022 09:16:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 27 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 27 STREET and WEST 28 STREET, 6 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10016"
+623711,Shooting Permit,02/02/2022 09:00:00 AM,02/02/2022 10:00:00 PM,01/31/2022 08:51:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, MIDDLETOWN ROAD between WESTCHESTER AVENUE and MULFORD AVENUE, MIDDLETOWN ROAD between MULFORD AVENUE and MAYFLOWER AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, HUTCHINSON RIVER PARKWAY E between E TREMONT AVE and ROEBLING AVE, EAST TREMONT AVENUE between LA SALLE AVENUE and BAISLEY AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10461, 10473"
+623695,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 08:00:00 PM,01/30/2022 07:33:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+623686,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 10:00:00 PM,01/30/2022 04:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 52 STREET",Manhattan,5,18,WEB,Not Applicable,United States of America,10019
+623677,Shooting Permit,02/02/2022 06:00:00 AM,02/02/2022 09:00:00 PM,01/30/2022 11:54:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 AVENUE and 22 ROAD, 22 ROAD between 19 STREET and 21 STREET, 21 STREET between 22 ROAD and 23 AVENUE, 22 DRIVE between 19 STREET and 21 STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+623630,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 09:00:00 PM,01/28/2022 05:03:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 19 STREET and WEST 16 STREET, WEST 18 STREET between 6 AVENUE and 7 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+623629,Shooting Permit,02/02/2022 09:00:00 AM,02/03/2022 12:00:00 AM,01/28/2022 05:02:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","PRINCE STREET between BOWERY and LAFAYETTE STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET, MOTT STREET between PRINCE STREET and SPRING STREET, MULBERRY STREET between PRINCE STREET and SPRING STREET, BROADWAY between BROOME STREET and GRAND STREET, WOOSTER STREET between PRINCE STREET and BROOME STREET, SPRING STREET between WOOSTER STREET and GREENE STREET, BROOME STREET between WOOSTER STREET and GREENE STREET, WEST 21 STREET between 5 AVENUE and 6 AVENUE, WEST 21 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 22 STREET and WEST 21 STREET, 6 AVENUE between WEST 21 STREET and WEST 20 STREET, 5 AVENUE between WEST 22 STREET and WEST 20 STREET, 7 AVENUE between WEST 16 STREET and WEST 19 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"2, 4, 5","1, 10, 13, 5",Television,Episodic series,United States of America,"10010, 10011, 10012, 10013"
+623625,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 09:00:00 PM,01/28/2022 04:42:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between SOUTH STREET and WATER STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+623622,Theater Load in and Load Outs,02/15/2022 09:00:00 AM,02/15/2022 05:00:00 PM,01/28/2022 04:28:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+623621,Theater Load in and Load Outs,02/08/2022 09:00:00 AM,02/08/2022 05:00:00 PM,01/28/2022 04:25:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+623620,Theater Load in and Load Outs,02/05/2022 07:00:00 AM,02/05/2022 05:00:00 PM,01/28/2022 04:22:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+623615,Shooting Permit,02/09/2022 07:00:00 AM,02/09/2022 07:00:00 PM,01/28/2022 03:57:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 114 STREET between PLEASANT AVENUE and 1 AVENUE,Manhattan,11,"23, 25",Music Video,Signed Artist,United States of America,10029
+623614,Theater Load in and Load Outs,02/12/2022 09:00:00 AM,02/12/2022 11:59:00 PM,01/28/2022 03:54:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+623612,Theater Load in and Load Outs,02/04/2022 07:00:00 AM,02/04/2022 08:00:00 PM,01/28/2022 03:34:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+623600,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 08:00:00 PM,01/28/2022 02:59:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623585,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 11:00:00 PM,01/28/2022 01:44:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 AVENUE between SHORE BOULEVARD and 21 STREET, 19 STREET between 21 DRIVE and 21 AVENUE, 21 STREET between 21 AVENUE and 22 ROAD, 21 ROAD between 19 STREET and 21 STREET",Queens,1,114,Television,Not Applicable,United States of America,11105
+623583,Shooting Permit,02/03/2022 08:30:00 AM,02/03/2022 11:30:00 PM,01/28/2022 01:35:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","82 AVENUE between 132 STREET and 126 STREET, QUEENS BOULEVARD between 83 AVENUE and VAN WYCK EXPRESSWAY, QUEENS BOULEVARD between 77 AVENUE and UNION TURNPIKE, 77 AVENUE between QUEENS BOULEVARD and 113 STREET",Queens,"6, 9","102, 112",Television,Cable-episodic,United States of America,"11375, 11415"
+623582,Shooting Permit,02/04/2022 03:00:00 PM,02/05/2022 11:00:00 PM,01/28/2022 01:28:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 5 AVENUE and 6 AVENUE, WEST 46 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 47 STREET and WEST 46 STREET, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,10036
+623581,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 10:00:00 PM,01/28/2022 01:24:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+623580,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 10:00:00 PM,01/28/2022 01:16:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+623567,Shooting Permit,02/03/2022 03:00:00 PM,02/04/2022 04:00:00 AM,01/28/2022 12:25:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","TROUTMAN STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between JEFFERSON STREET and STARR STREET, JEFFERSON STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET, TROUTMAN STREET between ST NICHOLAS AVENUE and CYPRESS AVENUE",Brooklyn,4,83,Television,Episodic series,United States of America,11237
+623565,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 10:00:00 PM,01/28/2022 12:09:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MESEROLE AVENUE between RUSSELL STREET and JEWEL STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623562,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 09:00:00 PM,01/28/2022 12:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIN STREET between NORTHERN BOULEVARD and 37 AVENUE, MAIN STREET between 37 AVENUE and 38 AVENUE",Queens,7,109,Commercial,Commercial,United States of America,11354
+623558,Shooting Permit,02/02/2022 08:00:00 AM,02/03/2022 06:00:00 PM,01/28/2022 11:59:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 2 AVENUE and 3 AVENUE, EAST 73 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 70 STREET and EAST 75 STREET, EAST 71 STREET between 2 AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 69 STREET and EAST 73 STREET, EAST 71 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 71 STREET and EAST 72 STREET, 5 AVENUE between EAST 71 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023"
+623550,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 11:00:00 PM,01/28/2022 11:34:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 43 AVENUE and 44 ROAD, 44 ROAD between 24 STREET and CRESCENT STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, 44 DRIVE between JACKSON AVENUE and THOMPSON AVENUE, COURT SQUARE EAST between THOMPSON AVENUE and DEAD END, THOMPSON AVENUE between JACKSON AVENUE and 44 DRIVE, COURT SQUARE WEST between JACKSON AVENUE and DEAD END",Queens,"0, 2","0, 108",Television,Cable-episodic,United States of America,"0, 11101"
+623545,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 11:30:00 PM,01/28/2022 11:12:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+623539,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 08:00:00 PM,01/28/2022 10:20:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623534,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 10:00:00 PM,01/28/2022 09:56:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOF AVE and IRVING AVE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+623525,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 09:00:00 PM,01/28/2022 06:52:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",EXTERIOR ST between EAST 150 STREET and MAJOR DEEGAN EXPRESSWAY,Bronx,4,44,Commercial,Promo,United States of America,10451
+623507,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 08:00:00 PM,01/27/2022 05:32:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between CAMBRIDGE PLACE and GRAND AVENUE, GRAND AVENUE between GREENE AVENUE and GATES AVENUE, CAMBRIDGE PLACE between GREENE AVENUE and GATES AVENUE, FULTON STREET between ST JAMES PLACE and CLASSON AVENUE, GATES AVENUE between CLASSON AVENUE and FRANKLIN AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Brooklyn,"2, 3, 5","104, 79, 88",Television,Episodic series,United States of America,"11237, 11238, 11385"
+623500,Shooting Permit,02/01/2022 09:00:00 AM,02/01/2022 11:30:00 PM,01/27/2022 04:55:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 60 STREET and WEST 61 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 58 STREET, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY, 11 AVENUE between WEST 59 STREET and WEST 57 STREET, WEST 58 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 57 STREET between 11 AVENUE and 12 AVENUE, WEST 59 STREET between 11 AVENUE and 12 AVENUE, WEST 59 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+623499,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 08:00:00 PM,01/27/2022 04:54:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 AVENUE between 34 STREET and 35 STREET, 31 AVENUE between 35 STREET and 36 STREET, 35 STREET between 31 AVENUE and BROADWAY, 31 AVENUE between 37 STREET and 38 STREET, STEINWAY STREET between 28 AVENUE and 30 AVENUE, 28 AVENUE between 38 STREET and 41 STREET, 36 STREET between 30 AVENUE and 31 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+623496,Shooting Permit,02/02/2022 06:00:00 AM,02/02/2022 10:00:00 PM,01/27/2022 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITESTONE EXPRESSWAY SR NB between 20TH AVE and 14TH AVE, 15 AVENUE between 141 STREET and 138 STREET, PETRACCA PLACE between 20 AVENUE and DEAD END",Queens,7,109,Television,Episodic series,United States of America,11357
+623495,Shooting Permit,01/31/2022 10:00:00 AM,02/01/2022 12:00:00 AM,01/27/2022 04:31:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between ST MARKS PLACE and EAST 6 STREET, EAST 7 STREET between COOPER SQUARE and 2 AVENUE, TARAS SHEVCHENKO PLACE between EAST 7 STREET and EAST 6 STREET, COOPER SQUARE between EAST 6 STREET and EAST 5 STREET, BOWERY between EAST 3 STREET and EAST 2 STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 155 STREET and WEST 153 STREET",Manhattan,"12, 2, 3, 9","30, 33, 5, 9",Film,Feature,United States of America,"10003, 10012, 10032"
+623491,Shooting Permit,01/29/2022 09:00:00 AM,01/29/2022 07:00:00 PM,01/27/2022 04:23:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+623488,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 11:00:00 PM,01/27/2022 04:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623482,Shooting Permit,02/02/2022 08:00:00 AM,02/02/2022 11:00:00 PM,01/27/2022 04:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 11 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 7 AVENUE, WEST 45 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 44 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+623472,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 10:00:00 PM,01/27/2022 03:33:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between GREEN STREET and FREEMAN STREET, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623458,Shooting Permit,02/01/2022 06:30:00 AM,02/01/2022 08:30:00 PM,01/27/2022 03:04:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROTONA AVENUE between EAST FORDHAM ROAD and EAST 189 STREET, CROTONA AVENUE between EAST 189 STREET and EAST 187 STREET, BEAUMONT AVENUE between EAST 189 STREET and EAST 187 STREET, EAST 187 STREET between SOUTHERN BOULEVARD and BELMONT AVENUE, EAST 187 STREET between HUGHES AVENUE and BELMONT AVENUE",Bronx,6,48,Television,Episodic series,United States of America,10458
+623454,Shooting Permit,02/02/2022 08:00:00 AM,02/02/2022 09:30:00 PM,01/27/2022 02:55:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 150 STREET between EDGECOMBE AVENUE and ST NICHOLAS PLACE, ST NICHOLAS PLACE between WEST 150 STREET and WEST 151 STREET, EDGECOMBE AVENUE between WEST 148 STREET and WEST 151 STREET, ST NICHOLAS PLACE between WEST 151 STREET and WEST 152 STREET, ST NICHOLAS AVENUE between WEST 148 STREET and WEST 149 STREET, CONVENT AVENUE between WEST 148 STREET and WEST 150 STREET, CONVENT AVENUE between WEST 150 STREET and WEST 151 STREET, WEST 148 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, WEST 149 STREET between ST NICHOLAS AVENUE and CONVENT AVENUE, WEST 149 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, WEST 151 STREET between ST NICHOLAS PLACE and ST NICHOLAS AVENUE, WEST 151 STREET between ST NICHOLAS AVENUE and CONVENT AVENUE",Manhattan,"10, 9",30,Television,Episodic series,United States of America,"10030, 10031, 10039"
+623443,Shooting Permit,02/01/2022 06:00:00 AM,02/02/2022 01:00:00 AM,01/27/2022 02:20:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623416,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 11:00:00 PM,01/27/2022 12:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between 1 STREET and GARFIELD PLACE, 5 AVENUE between UNION STREET and CARROLL STREET, 6 AVENUE between PRESIDENT STREET and CARROLL STREET, PRESIDENT STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between 1 STREET and 3 STREET, 2 STREET between 5 AVENUE and 6 AVENUE, 2 STREET between 5 AVENUE and 4 AVENUE, 5 AVENUE between GARFIELD PLACE and CARROLL STREET, UNION STREET between 6 AVENUE and 4 AVENUE",Brooklyn,6,78,Television,Not Applicable,United States of America,11215
+623410,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 08:00:00 PM,01/27/2022 12:08:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+623406,Theater Load in and Load Outs,02/02/2022 12:01:00 AM,02/03/2022 06:00:00 AM,01/27/2022 12:01:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+623407,Theater Load in and Load Outs,02/05/2022 12:01:00 AM,02/06/2022 11:59:00 PM,01/27/2022 12:01:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+623402,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 10:00:00 PM,01/27/2022 11:50:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623400,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 09:00:00 PM,01/27/2022 11:45:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","38 STREET between 30 AVENUE and 31 AVENUE, 31 AVENUE between 36 STREET and 37 STREET, 31 AVENUE between 37 STREET and 38 STREET, 31 AVENUE between 38 STREET and STEINWAY STREET, STEINWAY STREET between 30 AVENUE and 31 AVENUE, 31 AVENUE between STEINWAY STREET and 41 STREET",Queens,1,114,Television,Cable-episodic,United States of America,"11103, 11106"
+623399,Theater Load in and Load Outs,02/02/2022 12:01:00 AM,02/03/2022 06:00:00 AM,01/27/2022 11:44:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+623398,Shooting Permit,02/02/2022 06:00:00 AM,02/02/2022 10:00:00 PM,01/27/2022 11:43:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 10 AVENUE and DYER AVENUE, WEST 36 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 38 STREET between 10 AVENUE and 11 AVENUE, WEST 38 STREET between 10 AVENUE and 9 AVENUE, WEST 37 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 36 STREET and WEST 35 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10018
+623395,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 09:00:00 PM,01/27/2022 11:34:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","74 AVENUE between METROPOLITAN AVENUE and KESSEL STREET, KESSEL STREET between ASCAN AVENUE and 74 AVENUE, 74 AVENUE between METROPOLITAN AVENUE and UNION TURNPIKE, 72 ROAD between METROPOLITAN AVENUE and MANSE STREET, 72 AVENUE between INGRAM STREET and JUNO STREET, 72 AVENUE between JUNO STREET and KESSEL STREET, 72 AVENUE between KESSEL STREET and LOUBET STREET, 72 AVENUE between LOUBET STREET and MANSE STREET, 72 AVENUE between MANSE STREET and NANSEN STREET, 72 AVENUE between NANSEN STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between 74 AVENUE and 75 AVENUE, METROPOLITAN AVENUE between 75 AVENUE and 75 ROAD, METROPOLITAN AVENUE between 72 ROAD and 72 DRIVE, METROPOLITAN AVENUE between 72 DRIVE and 74 AVENUE",Queens,6,112,Television,Cable-episodic,United States of America,11375
+623385,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 10:00:00 PM,01/27/2022 10:43:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623381,Shooting Permit,01/30/2022 07:00:00 AM,01/30/2022 06:00:00 PM,01/27/2022 10:36:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 67 STREET and WEST 68 STREET,Manhattan,7,20,Television,Cable-other,United States of America,10023
+623365,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 10:00:00 PM,01/27/2022 09:36:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623362,Shooting Permit,02/03/2022 06:30:00 AM,02/03/2022 10:35:00 PM,01/27/2022 09:20:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST NINTH STREET between COLUMBIA STREET and HICKS STREET, HICKS STREET between HUNTINGTON STREET and WEST NINTH STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+623359,Shooting Permit,02/04/2022 06:30:00 AM,02/04/2022 10:00:00 PM,01/27/2022 09:11:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST NINTH STREET between COLUMBIA STREET and HICKS STREET, HICKS STREET between HUNTINGTON STREET and WEST NINTH STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+623354,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 10:00:00 PM,01/27/2022 08:59:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORWOOD AVENUE between TOMPKINS AVENUE and TALBOT PLACE, NORWOOD AVENUE between TALBOT PLACE and ERRINGTON PLACE, TALBOT PLACE between NORWOOD AVENUE and DEAD END, VANDERBILT AVENUE between TOMPKINS AVENUE and BAY STREET, TOMPKINS STREET between BROWNELL STREET and QUINN STREET",Staten Island,1,120,Television,Episodic series,United States of America,10304
+623345,Shooting Permit,01/30/2022 06:00:00 AM,01/30/2022 08:00:00 PM,01/27/2022 08:10:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","HARBOR VIEW TERRACE between HARBOR LANE and 80 STREET, 80 STREET between HARBOR VIEW TERRACE and SHORE ROAD",Brooklyn,10,68,Commercial,Promo,United States of America,11209
+623309,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 09:00:00 PM,01/26/2022 05:55:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","TIBBETT AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 231 STREET between RIVERDALE AVENUE and CORLEAR AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 232 STREET, CORLEAR AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 230 STREET between CORLEAR AVENUE and GODWIN TERRACE, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"8, 9","43, 50",Television,Cable-episodic,United States of America,"10463, 10473"
+623307,Shooting Permit,02/06/2022 07:00:00 AM,02/06/2022 10:00:00 PM,01/26/2022 05:54:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MESEROLE AVENUE between RUSSELL STREET and JEWEL STREET, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623303,Shooting Permit,02/05/2022 06:00:00 AM,02/05/2022 10:00:00 PM,01/26/2022 05:29:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623302,Shooting Permit,02/09/2022 09:00:00 AM,02/09/2022 11:00:00 PM,01/26/2022 05:27:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 ROAD, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 10 STREET, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+623300,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/26/2022 05:21:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and INDIA STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623299,Shooting Permit,01/30/2022 08:00:00 AM,01/30/2022 11:59:00 PM,01/26/2022 05:19:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 44 STREET and EAST 47 STREET, GREENE STREET between BROOME STREET and SPRING STREET, BROOME STREET between WOOSTER STREET and MERCER STREET, 1 AVE between EAST 44 STREET and EAST 42 STREET",Manhattan,"2, 6","1, 17",Film,Feature,United States of America,"10012, 10013, 10017"
+623296,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/26/2022 05:01:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","HALSEY STREET between BEDFORD AVENUE and ARLINGTON PLACE, ARLINGTON PLACE between HALSEY STREET and MACON STREET, ARLINGTON PLACE between MACON STREET and FULTON STREET, HALSEY STREET between ARLINGTON PLACE and NOSTRAND AVENUE, NOSTRAND AVENUE between HALSEY STREET and MACON STREET, FULTON STREET between CLAVER PLACE and SPENCER PLACE, FULTON STREET between SPENCER PLACE and BEDFORD AVENUE, FULTON STREET between BEDFORD AVENUE and VERONA PLACE, FULTON STREET between VERONA PLACE and TOMPKINS AVENUE, MACON STREET between ARLINGTON PLACE and NOSTRAND AVENUE",Brooklyn,3,79,Television,Cable-episodic,United States of America,"11216, 11238"
+623288,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 08:00:00 PM,01/26/2022 04:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 AVENUE between 35 STREET and 36 STREET, 35 STREET between 28 AVENUE and 30 AVENUE, 35 STREET between 30 AVENUE and 31 AVENUE, 36 STREET between 30 AVENUE and 31 AVENUE, 37 STREET between 30 AVENUE and 31 AVENUE, 28 AVENUE between 38 STREET and 41 STREET, STEINWAY STREET between 28 AVENUE and 30 AVENUE, 30 AVENUE between 35 STREET and 34 STREET, 34 STREET between 30 AVENUE and 28 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11103
+623284,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/26/2022 04:18:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between UNION STREET and CARROLL STREET, 6 AVENUE between PRESIDENT STREET and CARROLL STREET, PRESIDENT STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between 1 STREET and 3 STREET, 2 STREET between 5 AVENUE and 6 AVENUE, 2 STREET between 5 AVENUE and 4 AVENUE, 7 AVENUE between 6 STREET and UNION STREET, 5 AVENUE between 1 STREET and GARFIELD PLACE, 5 AVENUE between GARFIELD PLACE and CARROLL STREET",Brooklyn,6,78,Television,Not Applicable,United States of America,11215
+623281,Shooting Permit,01/29/2022 10:00:00 AM,01/29/2022 11:59:00 PM,01/26/2022 04:08:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 47 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 47 STREET and EAST 44 STREET, EAST 44 STREET between 1 AVENUE and 2 AVENUE, 1 AVE between EAST 46 STREET and EAST 45 STREET",Manhattan,6,17,Film,Feature,United States of America,10017
+623278,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 10:00:00 PM,01/26/2022 03:51:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+623276,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 08:00:00 PM,01/26/2022 03:51:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIEBIG AVENUE between WEST 260 STREET and WEST 261 STREET, LIEBIG AVENUE between WEST 261 STREET and WEST 263 STREET, DELAFIELD AVENUE between WEST 261 STREET and WEST 263 STREET, DELAFIELD AVENUE between WEST 260 STREET and WEST 261 STREET, WEST 261 STREET between TYNDALL AVENUE and DELAFIELD AVENUE, RIVERDALE AVENUE between WEST 259 STREET and WEST 260 STREET, RIVERDALE AVENUE between WEST 260 STREET and WEST 261 STREET, RIVERDALE AVENUE between WEST 261 STREET and WEST 263 STREET, WEST 150 STREET between EDGECOMBE AVENUE and ST NICHOLAS PLACE, ST NICHOLAS PLACE between WEST 150 STREET and WEST 151 STREET, EDGECOMBE AVENUE between WEST 148 STREET and WEST 151 STREET, ST NICHOLAS PLACE between WEST 151 STREET and WEST 152 STREET, ST NICHOLAS AVENUE between WEST 148 STREET and WEST 149 STREET, CONVENT AVENUE between WEST 148 STREET and WEST 150 STREET, CONVENT AVENUE between WEST 150 STREET and WEST 151 STREET, WEST 148 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, WEST 149 STREET between ST NICHOLAS AVENUE and CONVENT AVENUE, WEST 149 STREET between CONVENT AVENUE and AMSTERDAM AVENUE, WEST 151 STREET between ST NICHOLAS PLACE and ST NICHOLAS AVENUE, WEST 151 STREET between ST NICHOLAS AVENUE and CONVENT AVENUE",Bronx,"10, 8, 9","30, 50",Television,Episodic series,United States of America,"10030, 10031, 10039, 10471"
+623269,Theater Load in and Load Outs,01/31/2022 12:01:00 AM,01/31/2022 11:59:00 PM,01/26/2022 03:35:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+623270,Theater Load in and Load Outs,02/02/2022 12:01:00 AM,02/03/2022 06:00:00 AM,01/26/2022 03:35:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+623268,Shooting Permit,02/03/2022 07:00:00 AM,02/03/2022 11:30:00 PM,01/26/2022 03:35:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 9 AVENUE and 10 AVENUE, WEST 46 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 46 STREET and WEST 45 STREET, 10 AVENUE between WEST 47 STREET and WEST 46 STREET, WEST 47 STREET between 9 AVENUE and 10 AVENUE, WEST 50 STREET between 11 AVENUE and 9 AVENUE, 9 AVENUE between WEST 46 STREET and WEST 45 STREET",Manhattan,4,18,Television,Episodic series,United States of America,"10019, 10036"
+623266,Theater Load in and Load Outs,01/31/2022 12:01:00 AM,01/31/2022 11:59:00 PM,01/26/2022 03:21:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+623265,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 11:00:00 PM,01/26/2022 03:21:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",MELBOURNE AVENUE between KISSENA BOULEVARD and 149 STREET,Queens,8,107,Television,Episodic series,United States of America,11367
+623262,DCAS Prep/Shoot/Wrap Permit,01/30/2022 06:00:00 AM,01/30/2022 08:00:00 PM,01/26/2022 03:10:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between LAFAYETTE STREET and CANAL STREET, CENTRE STREET between WALKER STREET and HOGAN PLACE, CENTRE STREET between HOGAN PLACE and WORTH STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between LEONARD STREET and WHITE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,"1, 3",5,Commercial,Commercial,United States of America,"10007, 10013"
+623247,Shooting Permit,02/04/2022 07:00:00 AM,02/04/2022 10:00:00 PM,01/26/2022 01:55:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623246,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 07:00:00 PM,01/26/2022 01:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+623243,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 11:30:00 PM,01/26/2022 01:50:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between NEWEL STREET and DIAMOND STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623236,Shooting Permit,01/28/2022 09:30:00 AM,01/28/2022 11:00:00 PM,01/26/2022 01:15:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between ENGERT AVENUE and DRIGGS AVENUE, ENGERT AVENUE between HUMBOLDT STREET and MONITOR STREET, RUSSELL STREET between ENGERT AVENUE and MEEKER AVENUE, DRIGGS AVENUE between RUSSELL STREET and HUMBOLDT STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623231,Shooting Permit,02/01/2022 01:00:00 PM,02/02/2022 01:00:00 AM,01/26/2022 01:05:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between FERRIS STREET and DEAD END, FERRIS STREET between VAN DYKE STREET and COFFEY STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between COFFEY STREET and VAN DYKE STREET, BAY STREET between HENRY STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+623230,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 11:59:00 PM,01/26/2022 12:55:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","113 STREET between 85 AVENUE and MYRTLE AVENUE, 85 AVENUE between 113 STREET and 114 STREET, MYRTLE AVENUE between 85 AVENUE and 114 STREET, 114 STREET between 85 AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 107 STREET between 85 AVENUE and 86 AVENUE, 85 AVENUE between 106 STREET and 108 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 106 STREET and 108 STREET",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+623228,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 11:00:00 PM,01/26/2022 12:30:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623224,Shooting Permit,01/28/2022 09:00:00 AM,01/29/2022 01:00:00 AM,01/26/2022 12:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+623219,Shooting Permit,02/01/2022 07:00:00 AM,02/01/2022 09:00:00 PM,01/26/2022 11:35:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 19 STREET and WEST 16 STREET, WEST 18 STREET between 6 AVENUE and 7 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+623218,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 11:00:00 PM,01/26/2022 11:25:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between GOLD STREET and PEARL STREET, RYDERS ALLEY between FULTON STREET and EDENS ALLEY, JOHN STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, GOLD STREET between FULTON STREET and ANN STREET, PINE STREET between BROADWAY and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WATER STREET between JOHN STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045, 10271"
+623216,Shooting Permit,01/28/2022 08:00:00 AM,01/29/2022 03:00:00 AM,01/26/2022 11:18:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623208,Shooting Permit,01/31/2022 11:00:00 AM,01/31/2022 10:00:00 PM,01/26/2022 10:14:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 68 STREET and EAST 70 STREET, EAST 69 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 68 STREET and EAST 70 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10065"
+623206,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 10:00:00 PM,01/26/2022 10:07:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, EAST 19 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 20 STREET, EAST 18 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 19 STREET and EAST 21 STREET, EAST 21 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 21 STREET and EAST 23 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+623190,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/26/2022 09:43:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 110 STREET and WEST 115 STREET, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY",Manhattan,9,26,Television,Episodic series,United States of America,"10024, 10025, 10027"
+623188,Theater Load in and Load Outs,01/29/2022 12:01:00 AM,01/30/2022 06:00:00 AM,01/26/2022 09:41:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+623184,Shooting Permit,02/03/2022 09:00:00 AM,02/04/2022 01:00:00 AM,01/26/2022 09:36:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623175,Shooting Permit,01/29/2022 06:00:00 AM,01/29/2022 08:00:00 PM,01/26/2022 09:22:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","HARBOR VIEW TERRACE between HARBOR LANE and 80 STREET, 80 STREET between HARBOR VIEW TERRACE and SHORE ROAD",Brooklyn,10,68,Commercial,Promo,United States of America,11209
+623170,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/26/2022 09:14:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623169,Shooting Permit,02/02/2022 07:00:00 PM,02/02/2022 11:00:00 PM,01/26/2022 09:13:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623167,Shooting Permit,02/02/2022 07:00:00 AM,02/02/2022 08:00:00 PM,01/26/2022 08:32:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST NINTH STREET between COLUMBIA STREET and HICKS STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+623149,Shooting Permit,01/28/2022 03:00:00 PM,01/28/2022 11:00:00 PM,01/25/2022 09:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between NASSAU AVENUE and NORMAN AVENUE, NASSAU AVENUE between HUMBOLDT STREET and RUSSELL STREET, NASSAU AVENUE between MONITOR STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623130,Shooting Permit,01/28/2022 10:00:00 AM,01/29/2022 12:30:00 AM,01/25/2022 04:26:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 60 STREET and WEST 61 STREET, AMSTERDAM AVENUE between WEST 58 STREET and WEST 60 STREET, WEST 59 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 58 STREET between 10 AVENUE and 11 AVENUE, WEST 59 STREET between 12 AVENUE and 11 AVENUE, WEST 58 STREET between 12 AVENUE and 11 AVENUE, 12 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 21 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 21 STREET and WEST 22 STREET, 6 AVENUE between WEST 20 STREET and WEST 21 STREET, WEST 21 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 20 STREET and WEST 22 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5, 6, 7","13, 18, 20",Television,Episodic series,United States of America,"10010, 10011, 10019, 10023"
+623128,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 10:00:00 PM,01/25/2022 04:25:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623126,Shooting Permit,01/29/2022 07:00:00 AM,01/29/2022 07:00:00 PM,01/25/2022 04:11:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+623125,Shooting Permit,01/27/2022 06:00:00 AM,01/28/2022 01:00:00 AM,01/25/2022 04:01:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+623121,Shooting Permit,01/30/2022 05:00:00 AM,01/30/2022 10:00:00 PM,01/25/2022 03:57:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, WILLIAM STREET between CEDAR STREET and PINE STREET, MAIDEN LANE between GOLD STREET and SOUTH STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, JOHN STREET between WATER STREET and SOUTH STREET, JOHN STREET between PEARL STREET and WATER STREET, WALL STREET between WILLIAM STREET and PEARL STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+623103,Shooting Permit,01/28/2022 10:00:00 AM,01/29/2022 01:00:00 AM,01/25/2022 03:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+623092,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 09:00:00 PM,01/25/2022 02:47:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 STREET and 48 STREET, 48 STREET between SKILLMAN AVENUE and 39 AVENUE, 44 STREET between SKILLMAN AVENUE and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11104
+623091,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 09:00:00 PM,01/25/2022 02:45:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between 8 AVENUE and BROADWAY, WEST 48 STREET between BROADWAY and 8 AVENUE, WEST 47 STREET between BROADWAY and 8 AVENUE, 7 AVENUE between WEST 48 STREET and WEST 49 STREET, WEST 54 STREET between 8 AVENUE and BROADWAY",Manhattan,5,"14, 18",Film,Feature,United States of America,"10019, 10036"
+623078,Theater Load in and Load Outs,01/28/2022 12:01:00 AM,01/29/2022 06:00:00 AM,01/25/2022 02:21:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+623066,Shooting Permit,01/28/2022 06:00:00 AM,01/28/2022 10:00:00 PM,01/25/2022 01:41:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH OXFORD STREET between LAFAYETTE AVENUE and DEKALB AVENUE, DEKALB AVENUE between SOUTH OXFORD STREET and SOUTH PORTLAND AVENUE, Prospect St between Jay St and Bridge St, YORK STREET between GOLD STREET and BRIDGE STREET",Brooklyn,2,"84, 88",Commercial,Commercial,United States of America,"11201, 11217"
+623064,Shooting Permit,01/27/2022 10:00:00 AM,01/28/2022 12:00:00 AM,01/25/2022 01:34:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Manhattan,"1, 8","114, 94",Television,Episodic series,United States of America,"10044, 11222"
+623051,Theater Load in and Load Outs,01/29/2022 12:01:00 AM,01/30/2022 06:00:00 AM,01/25/2022 12:48:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+623049,Theater Load in and Load Outs,01/28/2022 12:01:00 AM,01/29/2022 06:00:00 AM,01/25/2022 12:45:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+623024,Theater Load in and Load Outs,02/13/2022 12:01:00 AM,02/15/2022 11:59:00 PM,01/25/2022 11:14:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+623021,Shooting Permit,01/28/2022 08:00:00 AM,01/28/2022 01:30:00 PM,01/25/2022 11:08:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 10 AVENUE, WEST 16 STREET between 8 AVENUE and 9 AVENUE, WEST 16 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+623016,Shooting Permit,01/28/2022 11:00:00 AM,01/29/2022 02:00:00 AM,01/25/2022 10:39:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between BANK STREET and JANE STREET, WEST 12 STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between BETHUNE STREET and JANE STREET, 11 AVENUE between WEST 27 STREET and WEST 28 STREET, W 14th ST between 10 AVENUE and 9th Ave, W 14th St between 9th Ave and 8th Ave, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"2, 4","10, 6",Television,Cable-episodic,United States of America,"10001, 10011, 10014"
+622986,Rigging Permit,02/05/2022 08:00:00 AM,02/05/2022 06:00:00 PM,01/24/2022 09:12:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Commercial,Promo,United States of America,11249
+622983,Rigging Permit,01/31/2022 08:00:00 AM,01/31/2022 06:00:00 PM,01/24/2022 09:09:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Commercial,Promo,United States of America,11249
+622966,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 07:00:00 PM,01/24/2022 07:12:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Television,Episodic series,United States of America,10474
+622927,Shooting Permit,02/04/2022 12:00:00 PM,02/04/2022 10:00:00 PM,01/24/2022 04:31:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+622924,Shooting Permit,01/27/2022 06:00:00 AM,01/27/2022 10:00:00 PM,01/24/2022 04:26:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 42 ROAD and 43 AVENUE, NORTH 11 STREET between WYTHE AVENUE and BEDFORD AVENUE, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, NORTH 12 STREET between WYTHE AVENUE and DRIGGS AVENUE",Queens,"1, 2","108, 94",Commercial,Commercial,United States of America,"11101, 11211, 11249"
+622902,Shooting Permit,01/28/2022 09:00:00 AM,01/29/2022 12:00:00 AM,01/24/2022 03:45:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622901,Shooting Permit,01/26/2022 06:30:00 AM,01/26/2022 08:00:00 PM,01/24/2022 03:45:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","Clay St between MCGUINNESS BLVD SOUTH and mcguiness blvd north, MCGUINESS BOULEVARD between CLAY STREET and PAIDGE AVENUE, CLAY STREET between PAIDGE AVENUE and MCGUINESS BOULEVARD, Mcguiness blvd between clay st and dupont st, PAIDGE AVENUE between MCGUINESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and INDIA STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622888,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 07:00:00 PM,01/24/2022 02:54:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+622884,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 10:00:00 PM,01/24/2022 02:46:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622883,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 07:00:00 PM,01/24/2022 02:46:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+622875,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 09:00:00 PM,01/24/2022 02:15:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+622874,Shooting Permit,01/27/2022 07:30:00 AM,01/27/2022 09:00:00 PM,01/24/2022 02:06:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOLLYWOOD AVENUE between SHORE ROAD and WEST DRIVE, SHORE ROAD between HOLLYWOOD AVENUE and ARLEIGH ROAD, ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, SHORE ROAD between WEST DRIVE and ARLEIGH ROAD, 36 AVENUE between SHORE ROAD and WEST DRIVE, SHORE ROAD between ORDINANCE ROAD and WEAVER AVENUE",Queens,"11, 7","109, 111",Television,Episodic series,United States of America,"11359, 11363"
+622866,Shooting Permit,01/27/2022 08:00:00 AM,01/27/2022 11:00:00 PM,01/24/2022 01:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOWNSEND AVENUE between TOMPKINS AVENUE and BAY STREET, TOMPKINS AVENUE between TOWNSEND AVENUE and NORWOOD AVENUE",Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+622864,Shooting Permit,01/27/2022 09:00:00 AM,01/28/2022 11:00:00 PM,01/24/2022 01:28:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+622863,Shooting Permit,01/26/2022 09:00:00 AM,01/26/2022 11:00:00 PM,01/24/2022 01:25:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+622848,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 10:00:00 PM,01/24/2022 01:02:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+622843,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 10:00:00 PM,01/24/2022 12:53:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+622839,Shooting Permit,01/27/2022 06:30:00 AM,01/27/2022 10:00:00 PM,01/24/2022 12:44:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between NEWEL STREET and DIAMOND STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622827,Shooting Permit,01/27/2022 09:00:00 AM,01/28/2022 01:00:00 AM,01/24/2022 12:24:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+622826,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 08:00:00 PM,01/24/2022 12:23:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622819,Shooting Permit,01/26/2022 08:00:00 AM,01/26/2022 10:30:00 PM,01/24/2022 11:55:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET, WATER STREET between DOCK STREET and OLD FULTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+622807,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 06:00:00 PM,01/24/2022 11:09:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","CRESCENT STREET between 43 AVENUE and 44 ROAD, 43 AVENUE between CRESCENT STREET and HUNTER STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+622806,Theater Load in and Load Outs,01/27/2022 12:01:00 AM,01/30/2022 06:00:00 AM,01/24/2022 11:00:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+622804,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 10:00:00 PM,01/24/2022 10:57:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+622802,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 09:00:00 PM,01/24/2022 10:54:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 22 STREET and WEST 21 STREET, WEST 21 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 22 STREET and WEST 20 STREET, 6 AVENUE between WEST 21 STREET and WEST 20 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5, 6",13,Television,Episodic series,United States of America,"10010, 10011"
+622797,Shooting Permit,02/03/2022 10:00:00 AM,02/04/2022 02:03:00 AM,01/24/2022 10:34:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622771,Theater Load in and Load Outs,01/25/2022 08:00:00 AM,01/26/2022 11:00:00 PM,01/24/2022 07:02:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+622735,Shooting Permit,01/27/2022 06:00:00 AM,01/27/2022 09:00:00 PM,01/23/2022 11:21:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622734,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 09:00:00 PM,01/23/2022 11:14:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622642,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 09:00:00 PM,01/21/2022 05:35:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between FROST STREET and BAYARD STREET, LORIMER STREET between BAYARD STREET and DRIGGS AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,"11211, 11222"
+622625,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 10:00:00 PM,01/21/2022 04:40:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARSONS BOULEVARD between 88 AVENUE and JAMAICA AVENUE, 90 AVENUE between PARSONS BOULEVARD and 161 STREET, 160 STREET between 90 AVENUE and JAMAICA AVENUE, 161 STREET between 90 AVENUE and JAMAICA AVENUE, HILLSIDE AVENUE between 161 STREET and 162 STREET, HILLSIDE AVENUE between 162 STREET and 164 STREET, PARSONS BOULEVARD between 65 AVENUE and JEWEL AVENUE, JEWEL AVENUE between PARSONS BOULEVARD and 161 STREET, KISSENA BOULEVARD between MELBOURNE AVENUE and 65 AVENUE",Queens,"12, 8","103, 107",Television,Cable-episodic,United States of America,"11365, 11367, 11432"
+622597,Shooting Permit,01/26/2022 08:00:00 AM,01/26/2022 05:00:00 PM,01/21/2022 04:01:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between LISPENARD STREET and FRANKLIN STREET, WALKER STREET between 6 AVENUE and BROADWAY, HUDSON STREET between ERICSSON PLACE and NORTH MOORE STREET, NORTH MOORE STREET between HUDSON STREET and VARICK STREET, NORTH MOORE STREET between GREENWICH STREET and HUDSON STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+622574,Shooting Permit,01/26/2022 08:00:00 AM,01/26/2022 10:00:00 PM,01/21/2022 03:43:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 5 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+622567,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 08:00:00 PM,01/21/2022 03:35:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, LEONARD STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+622557,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 07:00:00 PM,01/21/2022 03:26:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+622553,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 08:00:00 PM,01/21/2022 03:18:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10018
+622547,Shooting Permit,01/27/2022 06:00:00 AM,01/27/2022 10:00:00 PM,01/21/2022 03:09:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATTS STREET between WASHINGTON STREET and CANAL STREET, GREENWICH STREET between CANAL STREET and WATTS STREET, GREENWICH STREET between WATTS STREET and DESBROSSES STREET, DEBROSSES STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10011, 10013"
+622543,Rigging Permit,01/27/2022 02:00:00 PM,01/28/2022 01:00:00 PM,01/21/2022 03:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WATTS STREET between GREENWICH STREET and CANAL STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+622535,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 08:00:00 PM,01/21/2022 02:52:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET,Manhattan,"5, 6","17, 18",Commercial,Commercial,United States of America,"10017, 10019, 10036"
+622501,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 09:00:00 PM,01/21/2022 02:15:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 87 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 87 STREET and EAST 88 STREET, YORK AVENUE between EAST 81 STREET and EAST 86 STREET, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between 1 AVENUE and EAST END AVENUE, YORK AVENUE between EAST 86 STREET and EAST 87 STREET, EAST 87 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10028, 10128"
+622491,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 09:00:00 PM,01/21/2022 01:49:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 20 STREET and WEST 21 STREET, 5 AVENUE between WEST 21 STREET and WEST 22 STREET, 6 AVENUE between WEST 20 STREET and WEST 21 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET",Manhattan,"4, 5, 6",13,Television,Episodic series,United States of America,"10010, 10011"
+622444,Shooting Permit,01/31/2022 07:00:00 AM,01/31/2022 10:00:00 PM,01/21/2022 12:31:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622440,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 08:00:00 PM,01/21/2022 12:21:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Commercial,Promo,United States of America,10018
+622436,Shooting Permit,01/24/2022 02:00:00 PM,01/25/2022 05:00:00 AM,01/21/2022 12:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between CANAL STREET and HESTER STREET, HESTER STREET between ALLEN STREET and ELDRIDGE STREET, HESTER STREET between ELDRIDGE STREET and FORSYTH STREET",Manhattan,3,"5, 7",Film,Short,United States of America,10002
+622425,Shooting Permit,01/23/2022 02:00:00 PM,01/24/2022 05:00:00 AM,01/21/2022 12:05:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between HESTER STREET and CANAL STREET, HESTER STREET between ALLEN STREET and ELDRIDGE STREET, HESTER STREET between FORSYTH STREET and ELDRIDGE STREET",Manhattan,3,"5, 7",Film,Short,United States of America,10002
+622396,Shooting Permit,02/08/2022 06:00:00 AM,02/08/2022 10:00:00 PM,01/21/2022 11:14:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+622384,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 11:00:00 PM,01/21/2022 10:42:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+622379,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 11:00:00 PM,01/21/2022 10:31:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+622362,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 10:00:00 PM,01/21/2022 09:17:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 21 STREET and 13 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+622336,Theater Load in and Load Outs,01/26/2022 12:01:00 AM,01/27/2022 06:00:00 AM,01/21/2022 02:00:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+622204,Theater Load in and Load Outs,01/24/2022 12:01:00 AM,01/24/2022 11:59:00 PM,01/20/2022 04:13:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+622190,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 11:00:00 PM,01/20/2022 03:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 9 STREET between 43 AVENUE and 43 ROAD, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, PAIDGE AVENUE between PROVOST STREET and DEAD END",Queens,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+622187,Shooting Permit,01/27/2022 11:00:00 AM,01/28/2022 02:00:00 AM,01/20/2022 03:31:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622186,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 10:00:00 PM,01/20/2022 03:30:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT HAMILTON PARKWAY between 66 STREET and BAY RIDGE AVENUE, 68 STREET between FORT HAMILTON PARKWAY and 9 AVENUE, 67 STREET between FORT HAMILTON PARKWAY and 9 AVENUE, FORT HAMILTON PARKWAY between BAY RIDGE PARKWAY and 74 STREET",Staten Island,"1, 10","120, 68",Television,Cable-episodic,United States of America,"10304, 11219, 11228"
+622183,Shooting Permit,01/28/2022 06:00:00 AM,01/28/2022 08:00:00 PM,01/20/2022 03:19:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622178,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 10:00:00 PM,01/20/2022 03:13:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 5 AVENUE and 6 AVENUE, WEST 56 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 7 AVENUE and BROADWAY, BROADWAY between WEST 55 STREET and WEST 56 STREET, WEST 56 STREET between BROADWAY and 8 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, AMSTERDAM AVENUE between WEST 110 STREET and WEST 112 STREET, WEST 110 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 110 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 110 STREET and WEST 114 STREET, WEST 110 STREET between BROADWAY and RIVERSIDE DRIVE, WEST 109 STREET between AMSTERDAM AVENUE and BROADWAY, MORNINGSIDE DRIVE between WEST 114 STREET and WEST 115 STREET, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE",Manhattan,"5, 64, 7, 9","18, 22, 24, 26",Television,Cable-episodic,United States of America,"10019, 10025"
+622171,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 11:00:00 PM,01/20/2022 03:00:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, PAIDGE AVENUE between PROVOST STREET and DEAD END, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Brooklyn,"1, 2","108, 94",Film,Feature,United States of America,"11101, 11222"
+622169,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 09:00:00 PM,01/20/2022 02:56:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622167,Shooting Permit,01/24/2022 06:30:00 AM,01/24/2022 10:00:00 PM,01/20/2022 02:52:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIDGE ROAD between EAST DRIVE and CENTER DRIVE, OAK LANE between DOUGLAS ROAD and RIDGE ROAD, RIDGE ROAD between DOUGLAS ROAD and EAST DRIVE, RIDGE ROAD between ARDSLEY ROAD and EAST DRIVE, EAST DRIVE between PARK LANE and RIDGE ROAD",Queens,11,111,Television,Episodic series,United States of America,11363
+622163,Shooting Permit,01/26/2022 11:00:00 AM,01/27/2022 02:00:00 AM,01/20/2022 02:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between NORMAN AVENUE and MESEROLE AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622156,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 11:00:00 PM,01/20/2022 02:13:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, MARTENSE STREET between BEDFORD AVENUE and ROGERS AVENUE",Brooklyn,"14, 17","67, 70",Film,Feature,United States of America,11226
+622153,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 10:00:00 PM,01/20/2022 02:10:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+622152,Shooting Permit,02/07/2022 06:00:00 AM,02/07/2022 10:00:00 PM,01/20/2022 02:09:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+622149,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 10:00:00 PM,01/20/2022 02:01:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 60 STREET and WEST 61 STREET, WEST 60 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 58 STREET between 10 AVENUE and 11 AVENUE, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, 11 AVENUE between WEST 59 STREET and WEST 57 STREET, WEST 58 STREET between 12 AVENUE and 11 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, WEST 59 STREET between 11 AVENUE and 12 AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+622139,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 09:00:00 PM,01/20/2022 01:34:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, COOPER SQ between EAST 8 STREET and EAST 6 STREET, LAFAYETTE STREET between EAST 4 STREET and BLEEKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, EAST 9 STREET between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+622122,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 11:59:00 PM,01/20/2022 12:25:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH 9 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 8 STREET and NORTH 11 STREET, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 9 STREET and NORTH 10 STREET, WYTHE AVENUE between NORTH 7 STREET and NORTH 8 STREET, WYTHE AVENUE between NORTH 8 STREET and NORTH 9 STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, NORTH 10 STREET between WYTHE AVENUE and BERRY STREET, NORTH 9 STREET between WYTHE AVENUE and BERRY STREET, BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, NORTH 12 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+622094,Shooting Permit,01/22/2022 02:00:00 PM,01/23/2022 05:00:00 AM,01/20/2022 11:04:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between CANAL STREET and HESTER STREET, HESTER STREET between ALLEN STREET and ELDRIDGE STREET, HESTER STREET between FORSYTH STREET and ELDRIDGE STREET",Manhattan,"1, 3","5, 7",Film,Short,United States of America,"10002, 10013"
+622093,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 11:00:00 PM,01/20/2022 11:01:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+622091,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 11:00:00 PM,01/20/2022 10:55:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+622089,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 11:00:00 PM,01/20/2022 10:47:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+622076,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 09:00:00 PM,01/20/2022 10:03:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+622063,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 10:00:00 PM,01/20/2022 09:18:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+622061,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 11:00:00 PM,01/20/2022 09:10:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between PAIDGE AVENUE and FREEMAN STREET, VERNON BOULEVARD between 40 AVENUE and ED KOCH QUEENSBORO BRIDGE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Brooklyn,"1, 2","108, 114, 94",Film,Feature,United States of America,"11101, 11222"
+622051,Shooting Permit,01/23/2022 09:00:00 AM,01/23/2022 01:00:00 PM,01/20/2022 08:34:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between CANAL STREET and HESTER STREET,Manhattan,"2, 3","5, 84",Film,Feature,United States of America,"10002, 10013, 11201"
+621985,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 08:00:00 PM,01/19/2022 06:48:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TALBOT PLACE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+621973,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 09:00:00 PM,01/19/2022 06:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621971,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 09:00:00 PM,01/19/2022 05:51:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 22 STREET and WEST 21 STREET, 5 AVENUE between WEST 22 STREET and WEST 20 STREET, WEST 21 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 21 STREET and WEST 20 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 17 STREET, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, 7 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,"1, 4, 5","10, 13, 94",Television,Episodic series,United States of America,"10010, 10011, 11222"
+621967,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 10:00:00 PM,01/19/2022 04:37:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+621963,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 10:00:00 PM,01/19/2022 04:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621960,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 10:00:00 PM,01/19/2022 04:12:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+621945,Shooting Permit,01/21/2022 01:00:00 PM,01/21/2022 11:00:00 PM,01/19/2022 03:40:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST HOUSTON STREET and BLEEKER STREET, LAGUARDIA PLACE between BLEEKER STREET and WEST 3 STREET, BLEEKER STREET between LAGUARDIA PLACE and MERCER STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET",Manhattan,2,"1, 6",Television,Episodic series,United States of America,10012
+621938,Shooting Permit,01/26/2022 07:00:00 AM,01/27/2022 03:00:00 AM,01/19/2022 03:20:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","20 AVENUE between SHORE BOULEVARD and 24 STREET, SHORE BOULEVARD between 20 AVENUE and 20 ROAD",Queens,1,114,Television,Episodic series,United States of America,11105
+621935,Shooting Permit,01/21/2022 07:30:00 AM,01/21/2022 10:00:00 PM,01/19/2022 03:17:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARLEIGH ROAD between WEST DRIVE and CENTER DRIVE, PARK LANE between WEST DRIVE and CENTER DRIVE, WEST DRIVE between 36 AVENUE and ARLEIGH ROAD, SHORE ROAD between ARLEIGH ROAD and WEST DRIVE, ARLEIGH ROAD between SHORE ROAD and WEST DRIVE, CENTER DRIVE between ARLEIGH ROAD and PARK LANE, RIDGE ROAD between WEST DRIVE and CENTER DRIVE, ALSTON PLACE between WEST DRIVE and DEAD END",Queens,11,111,Television,Episodic series,United States of America,"11360, 11363"
+621908,Shooting Permit,01/21/2022 07:00:00 AM,01/22/2022 12:00:00 AM,01/19/2022 02:10:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET, EAST 57 STREET between 2 AVENUE and 3 AVENUE, EAST 56 STREET between 1 AVENUE and 2 AVENUE, EAST 55 STREET between 2 AVENUE and 3 AVENUE, EAST 55 STREET between 1 AVENUE and 2 AVENUE, EAST 62 STREET between 2 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 61 STREET and EAST 62 STREET",Manhattan,"5, 6, 8","17, 18, 19",Television,Episodic series,United States of America,"10019, 10022, 10065"
+621886,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 10:00:00 PM,01/19/2022 01:23:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, INDIA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621883,Theater Load in and Load Outs,01/25/2022 12:01:00 AM,01/26/2022 06:00:00 AM,01/19/2022 01:09:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+621882,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 11:00:00 PM,01/19/2022 01:00:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+621878,Shooting Permit,01/22/2022 07:00:00 AM,01/22/2022 11:00:00 PM,01/19/2022 12:52:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+621877,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 11:00:00 PM,01/19/2022 12:51:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+621870,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 10:00:00 PM,01/19/2022 12:36:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621862,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/19/2022 12:27:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOERUM STREET between BROADWAY and LORIMER STREET,Brooklyn,1,90,Film,Feature,United States of America,11206
+621857,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 10:00:00 PM,01/19/2022 12:13:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621856,Theater Load in and Load Outs,01/24/2022 12:01:00 AM,01/25/2022 06:00:00 AM,01/19/2022 12:13:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+621850,Shooting Permit,01/21/2022 02:00:00 PM,01/22/2022 05:00:00 AM,01/19/2022 12:00:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, VANDERBILT AVENUE between MYRTLE AVENUE and PARK AVENUE",Brooklyn,2,88,Film,Short,United States of America,11205
+621848,Shooting Permit,01/25/2022 07:00:00 AM,01/26/2022 03:00:00 AM,01/19/2022 11:57:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and NORTH HENRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621844,Shooting Permit,01/27/2022 06:00:00 AM,01/27/2022 11:00:00 PM,01/19/2022 11:39:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and 11 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 11 STREET between 43 AVENUE and 43 ROAD, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 11 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 12 STREET and 13 STREET, 43 AVENUE between 9 STREET and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+621843,Shooting Permit,01/28/2022 06:00:00 AM,01/28/2022 11:00:00 PM,01/19/2022 11:39:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and 11 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 11 STREET between 43 AVENUE and 43 ROAD, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 11 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 12 STREET and 13 STREET, 43 AVENUE between 9 STREET and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+621837,Shooting Permit,01/21/2022 10:00:00 AM,01/22/2022 01:00:00 AM,01/19/2022 11:33:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUYDAM STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, STARR STREET between KNICKERBOCKER AVENUE and IRVING AVENUE, KNICKERBOCKER AVENUE between SUYDAM STREET and STARR STREET, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, NORTH 3 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, IRVING AVENUE between SUYDAM STREET and HART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET",Brooklyn,"1, 4","83, 90, 94",Television,Episodic series,United States of America,"11206, 11237, 11249"
+621836,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 10:00:00 PM,01/19/2022 11:32:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 52 STREET, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10171"
+621835,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 11:00:00 PM,01/19/2022 11:31:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 52 STREET, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10171"
+621833,Theater Load in and Load Outs,01/23/2022 12:01:00 AM,01/24/2022 06:00:00 AM,01/19/2022 11:16:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+621824,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 11:00:00 PM,01/19/2022 10:50:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621822,Shooting Permit,01/22/2022 07:00:00 AM,01/22/2022 07:00:00 PM,01/19/2022 10:44:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Still Photography,Not Applicable,United States of America,11226
+621819,Shooting Permit,01/25/2022 01:00:00 PM,01/26/2022 03:00:00 AM,01/19/2022 10:38:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 87 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 88 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 90 STREET, BROADWAY between WEST 84 STREET and WEST 85 STREET, BROADWAY between WEST 85 STREET and WEST 86 STREET, BROADWAY between WEST 86 STREET and WEST 87 STREET, BROADWAY between WEST 87 STREET and WEST 88 STREET, BROADWAY between WEST 88 STREET and WEST 89 STREET, BROADWAY between WEST 89 STREET and WEST 90 STREET, BROADWAY between WEST 90 STREET and WEST 91 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+621818,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 11:00:00 PM,01/19/2022 10:33:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621810,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 10:00:00 PM,01/19/2022 09:52:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+621796,Shooting Permit,02/14/2022 06:00:00 AM,02/14/2022 08:00:00 PM,01/19/2022 08:49:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+621795,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 08:00:00 PM,01/19/2022 08:43:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+621792,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 08:00:00 PM,01/19/2022 08:37:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+621790,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 09:00:00 PM,01/19/2022 07:19:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WYCKOFF AVENUE between SUYDAM STREET and STARR STREET",Brooklyn,4,83,Commercial,Commercial,United States of America,11237
+621788,Theater Load in and Load Outs,01/20/2022 05:00:00 AM,01/23/2022 11:00:00 PM,01/19/2022 05:10:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+621787,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 07:00:00 PM,01/19/2022 04:41:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 84 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Still Photography,Not Applicable,United States of America,10024
+621786,Shooting Permit,01/22/2022 06:00:00 AM,01/22/2022 08:00:00 PM,01/19/2022 04:38:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 6 AVENUE and 7 AVENUE,Manhattan,"4, 5","10, 13",Still Photography,Not Applicable,United States of America,10001
+621772,Shooting Permit,01/21/2022 08:00:00 AM,01/22/2022 01:00:00 AM,01/18/2022 09:07:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, 19 STREET between HOYT AVENUE NORTH and 24 AVENUE, HOYT AVE N between 19 STREET and 21ST ST, HOYT AVE N between 21ST ST and 23RD ST, CRESCENT STREET between DITMARS BOULEVARD and 23 AVENUE",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11102, 11105, 11222"
+621771,Shooting Permit,01/28/2022 07:00:00 AM,01/28/2022 11:00:00 PM,01/18/2022 08:55:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+621767,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 09:00:00 PM,01/18/2022 08:55:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+621768,Shooting Permit,01/25/2022 07:00:00 AM,01/25/2022 09:00:00 PM,01/18/2022 08:55:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+621769,Shooting Permit,01/26/2022 07:00:00 AM,01/26/2022 09:00:00 PM,01/18/2022 08:55:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+621770,Shooting Permit,01/27/2022 07:00:00 AM,01/27/2022 09:00:00 PM,01/18/2022 08:55:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+621761,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 07:00:00 PM,01/18/2022 07:56:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621759,Shooting Permit,01/20/2022 05:00:00 PM,01/20/2022 11:00:00 PM,01/18/2022 07:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",48 AVENUE between VERNON BOULEVARD and 5 STREET,Queens,2,108,Television,Episodic series,United States of America,11101
+621756,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 11:59:00 PM,01/18/2022 06:06:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and CONOVER STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+621753,Shooting Permit,02/02/2022 06:00:00 AM,02/02/2022 11:00:00 PM,01/18/2022 05:53:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Film,Feature,United States of America,11230
+621751,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 11:00:00 PM,01/18/2022 05:51:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Film,Feature,United States of America,11230
+621749,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 11:00:00 PM,01/18/2022 05:48:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Film,Feature,United States of America,11230
+621732,Shooting Permit,01/20/2022 06:30:00 AM,01/20/2022 08:00:00 PM,01/18/2022 04:40:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GROSVENOR STREET between EAST DRIVE and DOUGLAS ROAD, EAST DRIVE between GROSVENOR STREET and WARWICK AVENUE",Queens,11,111,Television,Episodic series,United States of America,"11361, 11363"
+621731,Shooting Permit,01/24/2022 06:30:00 AM,01/24/2022 08:00:00 PM,01/18/2022 04:39:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GUERNSEY STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between BANKER STREET and MANHATTAN AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, LORIMER STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+621721,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 10:00:00 PM,01/18/2022 03:57:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+621716,Shooting Permit,01/26/2022 06:00:00 AM,01/26/2022 10:00:00 PM,01/18/2022 03:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11105"
+621714,Shooting Permit,01/25/2022 06:00:00 AM,01/25/2022 10:00:00 PM,01/18/2022 03:44:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+621710,Shooting Permit,01/28/2022 05:00:00 AM,01/29/2022 10:00:00 PM,01/18/2022 03:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 169 STREET between FORT WASHINGTON AVENUE and BROADWAY,Manhattan,12,33,Television,Not Applicable,United States of America,10032
+621699,DCAS Prep/Shoot/Wrap Permit,01/23/2022 06:00:00 AM,01/23/2022 07:00:00 PM,01/18/2022 02:36:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, BAXTER STREET between HOGAN PLACE and WORTH STREET, LAFAYETTE STREET between LEONARD STREET and WHITE STREET, CENTRE STREET between HOGAN PLACE and WHITE STREET, WALKER STREET between BROADWAY and 6 AVENUE, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10007, 10013"
+621698,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 10:00:00 PM,01/18/2022 02:35:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 87 STREET and WEST 91 STREET, WEST 88 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 90 STREET between WEST END AVENUE and BROADWAY, WEST 91 STREET between WEST END AVENUE and BROADWAY, WEST 87 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 85 STREET and WEST 87 STREET, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 87 STREET between BROADWAY and AMSTERDAM AVENUE, WEST END AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 86 STREET between WEST END AVENUE and BROADWAY",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+621690,Shooting Permit,01/21/2022 09:00:00 AM,01/21/2022 11:00:00 PM,01/18/2022 02:10:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 43 AVENUE between 21 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+621679,Shooting Permit,01/23/2022 06:00:00 AM,01/23/2022 10:00:00 PM,01/18/2022 01:50:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10018
+621676,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 09:00:00 PM,01/18/2022 01:41:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10018
+621677,Shooting Permit,01/22/2022 06:00:00 AM,01/22/2022 09:00:00 PM,01/18/2022 01:41:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10018
+621672,Shooting Permit,01/21/2022 11:30:00 AM,01/22/2022 01:00:00 AM,01/18/2022 01:20:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between BROADWAY and CROSBY STREET, CROSBY STREET between EAST HOUSTON STREET and SPRING STREET, CROSBY STREET between EAST HOUSTON STREET and BLEECKER STREET, BROADWAY between EAST HOUSTON STREET and SPRING STREET, PRINCE STREET between BROADWAY and CROSBY STREET, SPRING STREET between BROADWAY and MERCER STREET",Manhattan,2,"1, 5, 9",Television,Episodic series,United States of America,10012
+621670,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 07:00:00 PM,01/18/2022 01:13:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,"10019, 10020"
+621658,Shooting Permit,01/24/2022 06:00:00 AM,01/24/2022 10:00:00 PM,01/18/2022 12:43:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 44 STREET and WEST 43 STREET, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 38 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10018, 10036"
+621655,Theater Load in and Load Outs,01/23/2022 12:01:00 AM,01/23/2022 11:59:00 AM,01/18/2022 12:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+621652,Shooting Permit,01/21/2022 08:00:00 AM,01/21/2022 10:00:00 PM,01/18/2022 12:27:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between LIBERTY STREET and MAIDEN LANE, LIBERTY STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, PINE STREET between NASSAU STREET and BROADWAY, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, CEDAR STREET between NASSAU STREET and BROADWAY, PINE STREET between WILLIAM STREET and NASSAU STREET, WARREN STREET between BROADWAY and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10007, 10038, 10045, 10271"
+621627,Shooting Permit,01/21/2022 06:00:00 AM,01/22/2022 01:00:00 AM,01/18/2022 11:41:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and NEWTOWN CREEK, RAILROAD AVE between GREENPOINT AVE and DEAD END, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+621625,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 10:00:00 PM,01/18/2022 11:37:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621622,Theater Load in and Load Outs,02/11/2022 01:00:00 AM,02/20/2022 11:59:00 PM,01/18/2022 11:35:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+621612,Theater Load in and Load Outs,01/27/2022 12:01:00 AM,02/10/2022 11:59:00 PM,01/18/2022 11:24:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+621611,Shooting Permit,01/20/2022 06:30:00 AM,01/20/2022 10:00:00 PM,01/18/2022 11:20:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between STARR AVENUE and 27 STREET, 29 STREET between REVIEW AVENUE and BORDEN AVENUE, REVIEW AVENUE between 29 STREET and 30 STREET, REVIEW AVENUE between 30 STREET and 35 STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+621602,Theater Load in and Load Outs,01/24/2022 12:01:00 AM,01/26/2022 11:59:00 PM,01/18/2022 10:58:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVE between WEST 61 STREET and WEST 63 ST",Manhattan,7,20,Theater,Theater,United States of America,10023
+621511,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 10:00:00 PM,01/17/2022 04:15:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 6 AVENUE and 7 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 19 STREET and WEST 17 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 14 STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, W. 15th Street between 7th Avenue and 8th Avenue, WEST 16 STREET between 7 AVENUE and 8 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+621506,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/17/2022 03:52:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 14 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE, WEST 15 STREET between 7 AVENUE and 8 AVENUE, W. 14th Street between 8 AVENUE and 9th Avenue, W. 14th Street between 9th Avenue and 10th Avenue, WASHINGTON STREET between WEST 14 STREET and WEST 12 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Episodic series,United States of America,"10011, 10014"
+621494,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 08:00:00 PM,01/17/2022 02:43:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 118 STREET and WEST 121 STREET, WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+621480,Theater Load in and Load Outs,01/22/2022 12:01:00 AM,01/22/2022 11:59:00 PM,01/17/2022 01:12:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+621479,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 10:00:00 PM,01/17/2022 01:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 3 STREET between KINGS HIGHWAY and QUENTIN ROAD,Brooklyn,15,61,Film,Feature,United States of America,11223
+621475,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/17/2022 12:38:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10018
+621474,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 09:00:00 PM,01/17/2022 12:32:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+621466,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/17/2022 12:10:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621456,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 10:00:00 PM,01/17/2022 11:19:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+621351,Shooting Permit,01/25/2022 09:00:00 AM,01/26/2022 02:00:00 AM,01/15/2022 08:28:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between KENT AVENUE and BEDFORD AVENUE, BEDFORD AVE between BROADWAY and S 8 ST, KENT AVENUE between BROADWAY and SOUTH 5 STREET, DRIGGS AVENUE between BROADWAY and SOUTH 8 STREET, SOUTH 6 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 8 STREET between DRIGGS AVENUE and BEDFORD AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+621342,Shooting Permit,01/20/2022 06:00:00 AM,01/20/2022 11:59:00 PM,01/15/2022 07:46:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 21 STREET and 23 STREET, 23 STREET between 44 DRIVE and 45 AVENUE, 44 DRIVE between 23 STREET and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, COURT SQUARE E between THOMSON AVENUE and DEAD END, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+621337,Shooting Permit,01/19/2022 10:00:00 AM,01/19/2022 01:00:00 PM,01/15/2022 06:42:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE AVENUE between CUMBERLAND STREET and CARLTON AVENUE,Brooklyn,2,88,Television,Episodic series,United States of America,11238
+621281,Shooting Permit,01/20/2022 06:00:00 AM,01/20/2022 09:00:00 PM,01/15/2022 08:18:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,"10019, 10020"
+621218,Shooting Permit,01/21/2022 06:30:00 AM,01/21/2022 09:00:00 PM,01/14/2022 05:34:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621209,Shooting Permit,01/21/2022 10:00:00 AM,01/21/2022 11:59:00 PM,01/14/2022 05:02:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between MAIN STREET and 86 ROAD, 84 DRIVE between QUEENS BOULEVARD and MANTON STREET, 86 AVENUE between QUEENS BOULEVARD and 139 STREET, QUEENS BOULEVARD between VAN WYCK EXPRESSWAY and 83 AVENUE, 3RD AVE between WHITESTONE EXPY and 147TH ST, 147 STREET between 3 AVENUE and 5 AVENUE, WHITESTONE EXPY between 3RD AVE and 8TH AVE, CLINTONVILLE STREET between 14 AVENUE and 14 ROAD, 12 ROAD between CLINTONVILLE STREET and 152 STREET",Queens,"11, 7, 8, 9","102, 107, 109, 111",Television,Cable-episodic,United States of America,"11357, 11361, 11415, 11435"
+621208,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/14/2022 05:01:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621181,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 10:00:00 PM,01/14/2022 03:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 11 STREET and 21 STREET, 11 STREET between 44 ROAD and 44 AVENUE, 13 STREET between 44 AVENUE and 43 AVENUE, 43 AVENUE between 13 STREET and 12 STREET, VERNON BOULEVARD between 40 AVENUE and ED KOCH QUEENSBORO BRIDGE, 40 AVENUE between VERNON BOULEVARD and 21 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+621179,Shooting Permit,01/19/2022 06:30:00 AM,01/19/2022 08:00:00 PM,01/14/2022 03:22:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","240TH STREET between LITTLE NECK ROAD and CHERRY ST, 240TH STREET between CHERRY ST and WILLOW DRIVE, CHERRY ST between 240TH STREET and LITTLE NECK ROAD, WARWICK AVENUE between EAST DRIVE and DOUGLAS ROAD, WARWICK AVENUE between EAST DRIVE and WEST DRIVE",Queens,11,111,Television,Episodic series,United States of America,11363
+621174,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 06:00:00 PM,01/14/2022 02:49:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","SMITH STREET between PRESIDENT STREET and CARROLL STREET, SMITH STREET between DOUGLASS STREET and BUTLER STREET, CLINTON STREET between UNION STREET and SACKETT STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+621172,Shooting Permit,01/24/2022 07:00:00 AM,01/24/2022 10:00:00 PM,01/14/2022 02:42:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELDERT STREET between DEAD END and WYCKOFF AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+621165,Shooting Permit,01/19/2022 09:00:00 AM,01/19/2022 09:00:00 PM,01/14/2022 02:27:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 153 STREET between GRAND CONCOURSE and CONCOURSE VILLAGE WEST, EAST 153 STREET between GRAND CONCOURSE and CONCOURSE VILLAGE WEST, CONCOURSE VILLAGE WEST between EAST 153 STREET and EAST 156 STREET",Bronx,"4, 5","14, 44",Film,Feature,United States of America,"10001, 10451"
+621163,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 10:00:00 PM,01/14/2022 02:16:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+621156,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/14/2022 02:09:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+621154,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 11:00:00 PM,01/14/2022 02:06:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 22 ROAD and 23 ROAD, 21 STREET between 23 TERRACE and 24 AVENUE, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11105"
+621143,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 10:00:00 PM,01/14/2022 01:42:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+621139,Shooting Permit,01/20/2022 08:00:00 AM,01/20/2022 08:00:00 PM,01/14/2022 01:39:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+621138,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 07:00:00 PM,01/14/2022 01:36:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between CHURCH STREET and BROADWAY, 6 AVENUE between LISPENARD STREET and WALKER STREET, 6 AVENUE between WALKER STREET and WHITE STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+621137,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 10:00:00 PM,01/14/2022 01:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+621121,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 11:00:00 PM,01/14/2022 01:10:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+621114,Shooting Permit,01/19/2022 12:00:00 PM,01/19/2022 08:00:00 PM,01/14/2022 12:56:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10018
+621113,Shooting Permit,01/20/2022 08:00:00 AM,01/20/2022 09:00:00 PM,01/14/2022 12:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 23 STREET and EAST 27 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+621074,Shooting Permit,01/17/2022 07:00:00 AM,01/17/2022 10:00:00 PM,01/14/2022 12:01:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 3 STREET between KINGS HIGHWAY and QUENTIN ROAD,Brooklyn,15,61,Film,Feature,United States of America,11223
+621066,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 09:00:00 PM,01/14/2022 11:48:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+621056,Shooting Permit,01/20/2022 06:00:00 AM,01/21/2022 12:00:00 PM,01/14/2022 11:11:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between LINCOLN ROAD and FLATBUSH AVENUE, OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE, FLATBUSH AVENUE between EMPIRE BOULEVARD and LEFFERTS AVENUE",Brooklyn,"55, 9","71, 78",Television,Episodic series,United States of America,"11215, 11225"
+621055,Shooting Permit,01/19/2022 06:00:00 AM,01/20/2022 12:00:00 AM,01/14/2022 11:11:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between LINCOLN ROAD and FLATBUSH AVENUE, OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE, FLATBUSH AVENUE between EMPIRE BOULEVARD and LEFFERTS AVENUE",Brooklyn,"55, 9","71, 78",Television,Episodic series,United States of America,"11215, 11225"
+621051,Shooting Permit,01/19/2022 06:30:00 AM,01/19/2022 06:00:00 PM,01/14/2022 11:00:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between OLD SLIP and GOUVERNEUR LANE, OLD SLIP between WATER STREET and FRONT STREET, WATER STREET between OLD SLIP and GOUVERNEUR LANE, HANOVER SQUARE between PEARL STREET and WATER STREET, OLD SLIP between FRONT STREET and SOUTH STREET, SOUTH STREET between OLD SLIP and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET, WALL STREET between WATER STREET and FRONT STREET, PEARL STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WALL STREET between WILLIAM STREET and HANOVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+621043,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 09:00:00 PM,01/14/2022 10:39:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 86 STREET and WEST 91 STREET, WEST END AVENUE between WEST 88 STREET and WEST 89 STREET, WEST 88 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 88 STREET and WEST 85 STREET, WEST 90 STREET between WEST END AVENUE and BROADWAY, WEST 86 STREET between WEST END AVENUE and BROADWAY, WEST 87 STREET between WEST END AVENUE and BROADWAY, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 54 STREET, 3 AVENUE between EAST 48 STREET and EAST 44 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, WEST 89 STREET between WEST END AVENUE and BROADWAY",Manhattan,"5, 6, 7","17, 18, 20, 24",Television,Episodic series,United States of America,"10017, 10022, 10024, 10152, 10171"
+621041,Shooting Permit,01/18/2022 06:00:00 AM,01/19/2022 12:00:00 AM,01/14/2022 10:28:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between LINCOLN ROAD and FLATBUSH AVENUE, OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE, FLATBUSH AVENUE between EMPIRE BOULEVARD and LEFFERTS AVENUE",Brooklyn,"55, 9","71, 78",Television,Episodic series,United States of America,"11215, 11225"
+621022,Shooting Permit,01/20/2022 10:00:00 AM,01/21/2022 01:00:00 AM,01/14/2022 09:34:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between TOMPKINS AVENUE and BAY STREET,Staten Island,1,120,Television,Episodic series,United States of America,10304
+621017,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 11:00:00 PM,01/14/2022 09:04:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+621014,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 10:00:00 PM,01/14/2022 08:58:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 76 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 75 STREET and EAST 76 STREET",Manhattan,8,19,Still Photography,Not Applicable,United States of America,"10021, 10075"
+621008,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 11:00:00 PM,01/14/2022 08:47:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+621004,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 11:59:00 PM,01/14/2022 07:54:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and DEKALB AVENUE, VANDERBILT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ADELPHI STREET and CLERMONT AVENUE, ADELPHI STREET between LAFAYETTE AVENUE and GREENE AVENUE, ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE, CUMBERLAND STREET between LAFAYETTE AVENUE and GREENE AVENUE, LAFAYETTE AVENUE between SOUTH OXFORD STREET and CARLTON AVENUE, SOUTH OXFORD STREET between LAFAYETTE AVENUE and FULTON STREET, GREENE AVENUE between CUMBERLAND STREET and FULTON STREET",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217, 11238"
+620971,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 09:00:00 PM,01/13/2022 08:26:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,WEB,Not Applicable,United States of America,"10019, 10020"
+620963,Shooting Permit,01/18/2022 10:00:00 AM,01/18/2022 08:00:00 PM,01/13/2022 07:35:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWTOWN AVENUE between 31 STREET and 32 STREET, 31 STREET between NEWTOWN AVENUE and 30 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,"11102, 11106"
+620938,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 11:00:00 PM,01/13/2022 05:47:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE B between EAST 2 STREET and EAST 4 STREET",Manhattan,3,9,Commercial,Commercial,United States of America,10009
+620932,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 11:00:00 PM,01/13/2022 05:37:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE B between EAST 2 STREET and EAST 4 STREET",Brooklyn,"12, 3","66, 9",Commercial,Commercial,United States of America,"10009, 11218"
+620930,Shooting Permit,01/16/2022 07:00:00 AM,01/16/2022 10:00:00 PM,01/13/2022 05:34:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOERUM STREET between BROADWAY and LORIMER STREET,Brooklyn,1,90,Film,Feature,United States of America,11206
+620925,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 09:00:00 PM,01/13/2022 05:21:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EVERIT STREET between VINE STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+620913,Shooting Permit,01/18/2022 06:30:00 AM,01/18/2022 08:00:00 PM,01/13/2022 05:04:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, CALYER STREET between MOULTRIE STREET and RUSSELL STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620885,Shooting Permit,01/21/2022 07:00:00 AM,01/21/2022 05:00:00 PM,01/13/2022 04:33:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+620883,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 05:00:00 PM,01/13/2022 04:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+620863,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 10:00:00 PM,01/13/2022 04:03:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARSON PLACE between 27 STREET and SKILLMAN AVENUE, 27 STREET between PEARSON PLACE and AUSTELL PLACE, SKILLMAN AVENUE between AUSTELL PLACE and PEARSON PLACE, SKILLMAN AVENUE between PEARSON PLACE and 49 AVENUE, 31 STREET between 47 AVENUE and 48 AVENUE, DAVIS COURT between PEARSON PLACE and 49 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620847,Theater Load in and Load Outs,01/19/2022 06:00:00 AM,01/19/2022 10:00:00 PM,01/13/2022 03:39:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10011
+620846,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 09:00:00 PM,01/13/2022 03:34:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 113 STREET and WEST 112 STREET, WEST 112 STREET between LENOX AVENUE and ST NICHOLAS AVENUE, WEST 112 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and WEST 115 STREET, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, CENTRAL PARK N between FREDERICK DOUGLASS CIRCLE and 5TH AVE",Manhattan,"10, 64","22, 28",Television,Episodic series,United States of America,"10023, 10024, 10025, 10026"
+620841,Shooting Permit,01/18/2022 06:30:00 AM,01/18/2022 08:00:00 PM,01/13/2022 03:26:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BOERUM STREET and LORIMER STREET, BOERUM STREET between BROADWAY and LORIMER STREET, UNION AVENUE between JOHNSON AVENUE and BROADWAY, LORIMER STREET between MONTROSE AVENUE and BROADWAY, BOERUM STREET between LORIMER STREET and LEONARD STREET, HARRISON AVENUE between WALTON STREET and BARTLETT STREET, GERRY STREET between UNION AVENUE and HARRISON AVENUE, MONTROSE AVENUE between LORIMER STREET and UNION AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11206, 11211, 11222"
+620825,Shooting Permit,01/20/2022 12:00:00 PM,01/21/2022 02:00:00 AM,01/13/2022 02:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAMERCY PARK SOUTH between GRAMERCY PARK WEST and IRVING PLACE, GRAMERCY PARK SOUTH between GRAMERCY PARK WEST and PARK AVENUE SOUTH, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, IRVING PLACE between EAST 18 STREET and EAST 19 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 17 STREET and EAST 20 STREET, EAST 18 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 19 STREET between 3 AVENUE and IRVING PLACE, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 22 STREET between PARK AVENUE SOUTH and BROADWAY",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+620822,Shooting Permit,02/11/2022 06:00:00 AM,02/11/2022 11:00:00 PM,01/13/2022 02:22:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+620815,Shooting Permit,02/10/2022 06:00:00 AM,02/10/2022 10:00:00 PM,01/13/2022 02:05:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+620791,Shooting Permit,01/19/2022 10:00:00 AM,01/19/2022 11:00:00 PM,01/13/2022 01:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between JANE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET, WASHINGTON STREET between BETHUNE STREET and BANK STREET, WASHINGTON STREET between BANK STREET and WEST 11 STREET, WEST STREET between BETHUNE STREET and WEST 11 STREET, BANK STREET between WASHINGTON STREET and WEST STREET, BETHUNE STREET between WASHINGTON STREET and WEST STREET, WEST 11 STREET between WASHINGTON STREET and WEST STREET, WEST 12 STREET between WASHINGTON STREET and WEST STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+620738,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 11:00:00 PM,01/13/2022 11:43:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between WOODHAVEN BOULEVARD and MEMORIAL DRIVE, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"2, 82","102, 108",Television,Not Applicable,United States of America,"11101, 11385"
+620700,Shooting Permit,01/17/2022 07:00:00 AM,01/17/2022 06:00:00 PM,01/13/2022 10:32:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between BROOKLYN HEIGHTS PROMENADE and HICKS STREET, HENRY STREET between MONTAGUE STREET and PIERREPONT STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11205"
+620692,Shooting Permit,01/17/2022 06:00:00 AM,01/17/2022 11:00:00 PM,01/13/2022 09:53:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","ESSEX STREET between DELANCEY STREET and STANTON STREET, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, DELANCEY STREET between ESSEX STREET and LUDLOW STREET, STANTON STREET between ESSEX STREET and NORFOLK STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+620690,Shooting Permit,01/14/2022 08:00:00 AM,01/15/2022 12:00:00 AM,01/13/2022 09:48:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 57 STREET and WEST 58 STREET, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and CENTRAL PARK SOUTH, BROADWAY between WEST 61 STREET and WEST 62 STREET",Manhattan,"5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+620674,Shooting Permit,01/18/2022 06:00:00 AM,01/19/2022 02:00:00 AM,01/13/2022 07:41:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620668,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 10:00:00 PM,01/13/2022 05:55:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Still Photography,Not Applicable,United States of America,"10021, 10075"
+620642,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 09:00:00 PM,01/12/2022 08:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 49 STREET and EAST 54 STREET, 3 AVENUE between EAST 48 STREET and EAST 44 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+620610,Shooting Permit,01/14/2022 07:00:00 AM,01/15/2022 02:00:00 AM,01/12/2022 05:23:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620599,Shooting Permit,01/14/2022 06:00:00 AM,01/14/2022 11:59:00 PM,01/12/2022 04:48:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620564,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 10:00:00 PM,01/12/2022 03:42:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",31 STREET between 47 AVENUE and 48 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+620557,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 10:00:00 PM,01/12/2022 03:23:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between DEAD END and JOHNSON AVENUE, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between BUSHWICK AVENUE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+620517,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 10:00:00 PM,01/12/2022 01:41:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between BUSHWICK AVENUE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+620500,Shooting Permit,01/14/2022 07:00:00 AM,01/14/2022 10:00:00 PM,01/12/2022 12:54:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUMMERFIELD STREET between FOREST AVENUE and SENECA AVENUE, FOREST AVENUE between NORMAN STREET and SUMMERFIELD STREET, SENECA AVENUE between NORMAN STREET and DECATUR STREET, SUMMERFIELD STREET between SENECA AVENUE and CYPRESS AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+620492,Shooting Permit,01/14/2022 06:00:00 AM,01/14/2022 11:00:00 PM,01/12/2022 12:36:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between THIRD AVENUE and LEXINGTON AVENUE, GRAMERCY PARK EAST between EAST 20 STREET and EAST 21 STREET, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 22 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 17 STREET and EAST 20 STREET, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 20 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+620490,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 11:00:00 PM,01/12/2022 12:36:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+620488,Theater Load in and Load Outs,01/22/2022 12:01:00 AM,01/23/2022 11:59:00 PM,01/12/2022 12:35:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET,Manhattan,"5, 6",13,Theater,Theater,United States of America,10010
+620466,Shooting Permit,01/21/2022 06:00:00 AM,01/21/2022 10:00:00 PM,01/12/2022 11:34:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620465,Shooting Permit,01/18/2022 07:00:00 AM,01/18/2022 11:00:00 PM,01/12/2022 11:30:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+620458,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 08:00:00 PM,01/12/2022 11:19:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 111 STREET and WEST 119 STREET, BROADWAY between WEST 112 STREET and WEST 114 STREET",Manhattan,9,26,Television,Episodic series,United States of America,"10025, 10027"
+620455,Shooting Permit,01/17/2022 07:00:00 AM,01/17/2022 05:00:00 PM,01/12/2022 11:07:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","IMLAY STREET between PIONEER STREET and VERONA STREET, PIONEER STREET between IMLAY STREET and VAN BRUNT STREET",Brooklyn,6,76,Commercial,Promo,United States of America,11231
+620446,Shooting Permit,01/19/2022 06:00:00 AM,01/19/2022 08:00:00 PM,01/12/2022 10:37:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and 11 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 11 STREET between 43 AVENUE and 43 ROAD, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 11 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 12 STREET and 13 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+620445,Shooting Permit,01/20/2022 07:00:00 AM,01/20/2022 10:00:00 PM,01/12/2022 10:36:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and 11 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 11 STREET between 43 AVENUE and 43 ROAD, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 11 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 12 STREET and 13 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+620391,DCAS Prep/Shoot/Wrap Permit,01/14/2022 05:00:00 PM,01/15/2022 02:00:00 AM,01/11/2022 11:38:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between BAXTER STREET and CENTRE STREET, CENTRE STREET between LEONARD STREET and WORTH STREET, READE STREET between BROADWAY and CENTRE STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+620390,Shooting Permit,01/14/2022 06:00:00 AM,01/14/2022 07:00:00 PM,01/11/2022 11:18:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between CENTRE STREET and BROADWAY, CENTRE STREET between READE STREET and DUANE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and PIKE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, READE ST between BROADWAY and ELK ST, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between READE STREET and CHAMBERS STREET",Manhattan,"1, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10007"
+620352,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 10:00:00 PM,01/11/2022 06:01:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, HENRY STREET between WARREN STREET and BALTIC STREET, HENRY STREET between VERANDAH PLACE and WARREN STREET, WARREN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between WARREN STREET and BALTIC STREET, CLINTON STREET between WARREN STREET and VERANDAH PLACE, WARREN STREET between CLINTON STREET and HENRY STREET, CLINTON STREET between BALTIC STREET and KANE STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,11201
+620339,Theater Load in and Load Outs,01/18/2022 06:00:00 AM,01/18/2022 10:00:00 PM,01/11/2022 05:14:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10011
+620320,Shooting Permit,01/17/2022 07:00:00 AM,01/17/2022 08:00:00 PM,01/11/2022 04:45:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620312,Shooting Permit,01/14/2022 06:30:00 AM,01/14/2022 09:00:00 PM,01/11/2022 04:34:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620308,Shooting Permit,01/20/2022 06:00:00 AM,01/20/2022 10:00:00 PM,01/11/2022 04:30:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 AVENUE between 30 PLACE and 31 STREET, 30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 31 STREET between 47 AVENUE and 48 AVENUE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620292,Shooting Permit,01/14/2022 08:00:00 AM,01/14/2022 10:00:00 PM,01/11/2022 03:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between NINTH STREET and 10 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+620286,Shooting Permit,01/14/2022 08:00:00 AM,01/14/2022 10:00:00 PM,01/11/2022 03:27:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","149 STREET between 95 AVENUE and 97 AVENUE, 97 AVENUE between 150 STREET and 148 STREET, 95 AVENUE between SUTPHIN BOULEVARD and 150 STREET, SUTPHIN BOULEVARD between 97 AVENUE and 95 AVENUE",Queens,12,103,Television,Episodic series,United States of America,11435
+620276,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 10:00:00 PM,01/11/2022 02:42:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620275,Shooting Permit,01/17/2022 06:00:00 AM,01/17/2022 10:00:00 PM,01/11/2022 02:39:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620270,Shooting Permit,01/17/2022 06:00:00 AM,01/17/2022 11:00:00 PM,01/11/2022 02:11:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, EAST 19 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 20 STREET, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 19 STREET and EAST 21 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10003, 10010"
+620264,Shooting Permit,01/14/2022 11:00:00 AM,01/15/2022 02:00:00 AM,01/11/2022 01:42:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and OLD SLIP, MAIDEN LANE between WATER STREET and PEARL STREET, JOHN STREET between FRONT STREET and PEARL STREET, WATER STREET between FULTON STREET and FLETCHER STREET, WILLIAM STREET between WALL STREET and STONE STREET, BEAVER STREET between PEARL STREET and HANOVER STREET, EXCHANGE PLACE between HANOVER STREET and BROAD STREET, HANOVER STREET between EXCHANGE PLACE and WALL STREET, PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, PINE STREET between NASSAU STREET and BROADWAY, BEAVER STREET between HANOVER STREET and WILLIAM STREET, WALL STREET between WILLIAM STREET and HANOVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+620260,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 05:00:00 PM,01/11/2022 01:32:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11217
+620255,Shooting Permit,01/14/2022 06:00:00 AM,01/14/2022 09:00:00 PM,01/11/2022 01:09:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620242,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 06:00:00 PM,01/11/2022 12:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+620216,Shooting Permit,01/14/2022 08:00:00 AM,01/14/2022 11:59:00 PM,01/11/2022 11:51:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620214,Shooting Permit,01/13/2022 07:00:00 AM,01/13/2022 11:00:00 PM,01/11/2022 11:46:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+620211,Shooting Permit,01/14/2022 07:00:00 AM,01/14/2022 10:00:00 PM,01/11/2022 11:37:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between DEAD END and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BUSHWICK AVENUE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+620202,Shooting Permit,01/16/2022 02:00:00 PM,01/16/2022 11:00:00 PM,01/11/2022 11:18:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 46 STREET between SECOND AVENUE and THIRD AVENUE, SOUTH 5 STREET between KENT AVENUE and RIVER STREET",Brooklyn,"1, 6","17, 90",Television,News,United States of America,"10017, 11249"
+620195,Shooting Permit,01/13/2022 06:00:00 AM,01/14/2022 01:00:00 AM,01/11/2022 10:56:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620161,Shooting Permit,01/14/2022 07:00:00 AM,01/14/2022 10:30:00 PM,01/11/2022 08:14:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",52 STREET between 3 AVENUE and 4 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11220
+620095,Shooting Permit,01/13/2022 09:00:00 AM,01/13/2022 10:00:00 PM,01/10/2022 05:53:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE AVENUE between HUMBOLDT STREET and JEWEL STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+620094,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 10:00:00 PM,01/10/2022 05:52:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 7 AVENUE, WEST 36 STREET between 8 AVENUE and 7 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10001, 10018"
+620076,Shooting Permit,01/13/2022 08:00:00 AM,01/13/2022 11:00:00 PM,01/10/2022 04:56:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",52 STREET between 3 AVENUE and 4 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11220
+620068,Shooting Permit,01/13/2022 06:30:00 AM,01/13/2022 08:00:00 PM,01/10/2022 04:32:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BOERUM STREET and LORIMER STREET, BOERUM STREET between BROADWAY and LORIMER STREET, UNION AVENUE between JOHNSON AVENUE and BROADWAY, LORIMER STREET between MONTROSE AVENUE and BROADWAY, BOERUM STREET between LORIMER STREET and LEONARD STREET, HARRISON AVENUE between WALTON STREET and BARTLETT STREET, GERRY STREET between UNION AVENUE and HARRISON AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,"11206, 11211"
+620067,Theater Load in and Load Outs,01/15/2022 12:01:00 AM,01/16/2022 06:00:00 AM,01/10/2022 04:31:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+620057,Shooting Permit,01/13/2022 08:00:00 AM,01/13/2022 10:00:00 PM,01/10/2022 03:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","149 STREET between 95 AVENUE and 97 AVENUE, 97 AVENUE between 150 STREET and 148 STREET, 95 AVENUE between SUTPHIN BOULEVARD and 150 STREET, SUTPHIN BOULEVARD between 97 AVENUE and 95 AVENUE",Queens,12,103,Television,Episodic series,United States of America,11435
+620049,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 05:00:00 PM,01/10/2022 03:08:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between WADSWORTH AVENUE and BROADWAY, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, BROADWAY between WEST 176 STREET and WEST 175 STREET",Manhattan,12,"33, 34",Commercial,Commercial,United States of America,10033
+620045,Shooting Permit,01/14/2022 01:00:00 PM,01/14/2022 11:00:00 PM,01/10/2022 02:58:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+620039,Shooting Permit,01/12/2022 07:00:00 AM,01/12/2022 10:00:00 PM,01/10/2022 02:33:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",52 STREET between 3 AVENUE and 4 AVENUE,Brooklyn,7,72,Film,Feature,United States of America,11220
+620031,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 09:00:00 PM,01/10/2022 02:06:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBION AVENUE between QUEENS BOULEVARD and BARNWELL AVENUE, BARNWELL AVENUE between POYER STREET and QUEENS BOULEVARD, BROADWAY between BAXTER AVENUE and ELMHURST AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and JEWEL STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,"1, 4","110, 94",Television,Episodic series,United States of America,"11222, 11373"
+620011,Shooting Permit,01/13/2022 07:00:00 AM,01/13/2022 11:00:00 PM,01/10/2022 01:31:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 STREET between 47 AVENUE and 48 AVENUE, 47 AVENUE between 31 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+620002,Shooting Permit,01/13/2022 07:00:00 AM,01/13/2022 11:00:00 PM,01/10/2022 12:53:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+619998,Shooting Permit,01/14/2022 06:00:00 AM,01/14/2022 10:00:00 PM,01/10/2022 12:41:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619990,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 09:00:00 PM,01/10/2022 12:22:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619986,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 10:00:00 PM,01/10/2022 12:13:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619972,Shooting Permit,01/12/2022 07:00:00 AM,01/12/2022 11:00:00 PM,01/10/2022 11:40:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619965,Shooting Permit,02/04/2022 06:00:00 AM,02/04/2022 11:59:00 PM,01/10/2022 11:29:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619958,Shooting Permit,02/03/2022 06:00:00 AM,02/03/2022 11:59:00 PM,01/10/2022 11:24:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619955,Shooting Permit,02/02/2022 06:00:00 AM,02/02/2022 11:59:00 PM,01/10/2022 11:17:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619948,Shooting Permit,02/01/2022 06:00:00 AM,02/01/2022 11:59:00 PM,01/10/2022 11:04:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619946,Shooting Permit,01/31/2022 06:00:00 AM,01/31/2022 11:59:00 PM,01/10/2022 10:53:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619945,Shooting Permit,01/19/2022 07:00:00 AM,01/19/2022 10:00:00 PM,01/10/2022 10:47:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619944,Shooting Permit,01/30/2022 06:00:00 AM,01/30/2022 11:59:00 PM,01/10/2022 10:44:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+619937,Shooting Permit,01/18/2022 06:00:00 AM,01/18/2022 09:00:00 PM,01/10/2022 10:31:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619930,Shooting Permit,01/17/2022 06:00:00 AM,01/17/2022 09:00:00 PM,01/10/2022 10:16:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619925,Shooting Permit,01/14/2022 07:00:00 AM,01/14/2022 10:00:00 PM,01/10/2022 10:03:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619921,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 09:00:00 PM,01/10/2022 09:50:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and CALYER STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, MESEROLE AVENUE between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619910,Shooting Permit,01/15/2022 06:00:00 AM,01/15/2022 08:00:00 PM,01/10/2022 09:00:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+619876,Shooting Permit,01/12/2022 07:00:00 AM,01/12/2022 11:00:00 PM,01/09/2022 06:44:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BROOME STREET and GRAND STREET, 7 AVENUE between WEST 12 STREET and WEST 13 STREET, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, BROADWAY between EAST 22 STREET and EAST 23 STREET, 27 STREET between 42 ROAD and 43 AVENUE",Manhattan,"2, 5","108, 13, 5, 6",Commercial,Promo,United States of America,"10010, 10011, 10013, 11101"
+619767,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 10:00:00 PM,01/07/2022 09:21:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10022, 10112"
+619733,Shooting Permit,01/12/2022 06:30:00 AM,01/12/2022 10:00:00 PM,01/07/2022 04:17:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619723,Shooting Permit,01/13/2022 06:00:00 AM,01/13/2022 09:00:00 PM,01/07/2022 03:55:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between MT CARMEL PLACE and FIRST AVENUE, EAST 26 STREET between SECOND AVENUE and THIRD AVENUE, EAST 32 STREET between PARK AVENUE and MADISON AVENUE, EAST 31 STREET between PARK AVENUE SOUTH and MADISON AVENUE, PARK AVENUE SOUTH between EAST 32 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, EAST 26 STREET between 1 AVENUE and FDR DRIVE",Manhattan,"5, 6","13, 14",Television,Episodic series,United States of America,"10010, 10016"
+619713,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 10:00:00 PM,01/07/2022 02:50:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 48 AVENUE and 47 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619709,Shooting Permit,01/13/2022 07:00:00 AM,01/13/2022 08:00:00 PM,01/07/2022 02:31:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAURICE AVENUE between TYLER AVENUE and 54 AVENUE, 66 STREET between 51 ROAD and 52 AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, 51 ROAD between 65 PLACE and 67 STREET, 52 AVENUE between 65 PLACE and 67 STREET, 65 PLACE between MAURICE AVENUE and 52 AVENUE",Queens,"1, 2, 5","104, 108, 94",Television,Episodic series,United States of America,"11222, 11377, 11378"
+619702,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 10:00:00 PM,01/07/2022 02:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE, 30 PLACE between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619686,Shooting Permit,01/13/2022 08:30:00 AM,01/13/2022 09:30:00 PM,01/07/2022 01:42:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, 9 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+619664,Shooting Permit,01/12/2022 06:30:00 PM,01/12/2022 10:00:00 PM,01/07/2022 12:56:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between DUANE STREET and WORTH STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between READE STREET and CHAMBERS STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between BROADWAY and CHURCH STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY, READE STREET between ELK STREET and CENTRE STREET, BROADWAY between WARREN STREET and MURRAY STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+619662,Shooting Permit,01/12/2022 07:30:00 AM,01/12/2022 11:00:00 PM,01/07/2022 12:50:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 147 STREET and PARSONS BOULEVARD, 149 STREET between 7 AVENUE and 8 AVENUE, 149 STREET between 8 AVENUE and 11 AVENUE, 10 AVENUE between 150 STREET and 149 STREET, 9 AVENUE between 149 STREET and 150 STREET",Queens,7,109,Television,Not Applicable,United States of America,11357
+619655,Shooting Permit,01/12/2022 07:00:00 AM,01/12/2022 11:59:00 PM,01/07/2022 12:37:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between HUNTERS POINT AVENUE and 47 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+619637,Shooting Permit,01/12/2022 07:00:00 AM,01/12/2022 08:00:00 PM,01/07/2022 11:30:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVE between WOODWARD AVENUE and FLUSHING AVE, LORIMER STREET between NASSAU AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET, UNION AVENUE between FROST STREET and WITHERS STREET, UNION AVENUE between WITHERS STREET and MEEKER AVENUE",Queens,"1, 5","104, 94",Television,Episodic series,United States of America,"11211, 11222, 11385"
+619635,Shooting Permit,01/12/2022 08:00:00 AM,01/12/2022 11:30:00 PM,01/07/2022 11:16:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, EAST 3 STREET between BOWERY and 2 AVENUE, BOWERY between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, WEST 3 STREET between MERCER STREET and BROADWAY, GREAT JONES STREET between BROADWAY and GREAT JONES ALLEY, BROADWAY between WEST 3 STREET and WEST 4 STREET, BOWERY between EAST 3 STREET and EAST 2 STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10012"
+619619,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 11:00:00 PM,01/07/2022 09:34:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+619618,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 11:00:00 PM,01/07/2022 09:33:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+619617,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 10:00:00 PM,01/07/2022 09:33:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between DEAD END and EAST 43 STREET, EAST 41 STREET between SECOND AVENUE and TUDOR CITY PLACE, EAST 43 STREET between TUDOR CITY PLACE and SECOND AVENUE, EAST 35 STREET between TUNNEL EXIT STREET and PARK AVENUE, PARK AVENUE between EAST 35 STREET and EAST 39 STREET, EAST 38 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 39 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017"
+619615,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 09:00:00 PM,01/07/2022 09:19:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 STREET between 2 AVENUE and 4 AVENUE, 3 AVENUE between 8 STREET and 6 STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11215
+619587,Shooting Permit,01/11/2022 08:00:00 AM,01/11/2022 09:00:00 PM,01/06/2022 07:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, 1 AVENUE between EAST 35 STREET and EAST 37 STREET, EAST 36 STREET between 1 AVENUE and FDR DRIVE, EAST 35 STREET between 1 AVENUE and FDR DRIVE, BORDEN AVE between VERNON BOULEVARD and 5 STREET, VERNON BLVD between 51 AVENUE and BORDEN AVENUE",Manhattan,"2, 5, 6","108, 14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10036, 11101"
+619560,Shooting Permit,01/11/2022 02:00:00 AM,01/11/2022 06:00:00 PM,01/06/2022 04:14:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between LAFAYETTE STREET and MERCER STREET, CENTRE STREET between GRAND STREET and BROOME STREET, BROOME STREET between LAFAYETTE STREET and CLEVELAND PLACE, CHAMBERS STREET between BROADWAY and ELK STREET, CENTRE STREET between READE STREET and DUANE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, SPRING STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between BROOME STREET and GRAND STREET, EAST BROADWAY between MARKET STREET and PIKE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, READE STREET between BROADWAY and ELK STREET",Manhattan,"1, 2, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10007, 10012, 10013"
+619551,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 11:59:00 PM,01/06/2022 03:54:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 31 STREET between 47 AVENUE and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619529,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 10:00:00 PM,01/06/2022 02:49:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",15 AVENUE between 138 STREET and 143 STREET,Queens,7,109,Television,Episodic series,United States of America,11357
+619507,Theater Load in and Load Outs,01/17/2022 07:00:00 AM,01/17/2022 07:00:00 PM,01/06/2022 01:50:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+619506,Theater Load in and Load Outs,01/14/2022 07:00:00 AM,01/14/2022 07:00:00 PM,01/06/2022 01:50:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+619486,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 10:00:00 PM,01/06/2022 12:54:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA BLVD NORTH between 46 STREET and 78 STREET, 70 STREET between ASTORIA BLVD NORTH and DITMARS BOULEVARD, DITMARS BOULEVARD between 70 STREET and 71 STREET, 71 STREET between DITMARS BOULEVARD and ASTORIA BLVD NORTH, 46TH ST between ASTORIA BLVD N and DITMARS BLVD",Queens,1,114,Television,Episodic series,United States of America,"11103, 11105, 11370"
+619446,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 09:00:00 PM,01/06/2022 11:20:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619427,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 10:00:00 PM,01/06/2022 10:48:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","OLD FULTON STREET between HICKS STREET and EVERIT STREET, Everit St between OLD FULTON STREET and Vine St, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, COLUMBIA HEIGHTS between VINE STREET and CRANBERRY STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+619416,Shooting Permit,01/10/2022 06:30:00 AM,01/10/2022 08:30:00 PM,01/06/2022 10:22:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 12 STREET and WEST 10 STREET, WEST 12 STREET between BOWERY and DEAD END, WEST 10 STREET between SURF AVENUE and BOARDWALK WEST, STILLWELL AVENUE between SURF AVENUE and BOARDWALK WEST, STILLWELL AVENUE between SURF AVENUE and MERMAID AVENUE, WEST 15 STREET between SURF AVENUE and BOARDWALK WEST, SURF AVENUE between WEST 15 STREET and WEST 16 STREET, SURF AVENUE between WEST 19 STREET and WEST 16 STREET, BOWERY between STILLWELL AVENUE and WEST 12 STREET, SURF AVENUE between STILLWELL AVENUE and WEST 12 STREET",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+619411,Shooting Permit,01/14/2022 07:00:00 AM,01/14/2022 09:00:00 PM,01/06/2022 10:05:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619410,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 09:00:00 PM,01/06/2022 10:05:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619408,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 09:00:00 PM,01/06/2022 09:59:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+619275,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 09:00:00 PM,01/05/2022 04:48:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 54 STREET and WEST 56 STREET, 11 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 57 STREET between 11 AVENUE and 12 AVENUE, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 56 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+619269,Shooting Permit,01/10/2022 06:30:00 AM,01/10/2022 09:00:00 PM,01/05/2022 04:31:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MELBOURNE AVENUE between KISSENA BOULEVARD and 149 STREET, KISSENA BOULEVARD between MELBOURNE AVENUE and 64 AVENUE",Queens,8,107,Television,Episodic series,United States of America,11367
+619237,Shooting Permit,01/12/2022 06:00:00 AM,01/12/2022 10:00:00 PM,01/05/2022 03:19:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 26 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 25 STREET, EAST 23 STREET between 3 AVENUE and 2 AVENUE, EAST 22 STREET between 3 AVENUE and 2 AVENUE, EAST 22 STREET between LEXINGTON AVENUE and 3 AVENUE, GRAMERCY PARK NORTH between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 17 STREET between RUTHERFORD PLACE and 3 AVENUE, KEW GARDENS ROAD between 83 AVENUE and 83 DRIVE, QUEENS BOULEVARD between 83 AVENUE and VAN WYCK EXPRESSWAY",Queens,"5, 6, 9","102, 13",Television,Cable-episodic,United States of America,"10003, 10010, 11415"
+619229,Shooting Permit,01/11/2022 08:00:00 AM,01/11/2022 11:00:00 PM,01/05/2022 02:58:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 41 STREET between DYER AVENUE and 9 AVENUE,Manhattan,4,10,Television,Variety,United States of America,10036
+619216,DCAS Prep/Shoot/Wrap Permit,01/08/2022 06:00:00 AM,01/08/2022 08:00:00 PM,01/05/2022 02:32:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","148 STREET between 89 AVENUE and HILLSIDE AVENUE, 89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, HILLSIDE AVENUE between SUTPHIN BOULEVARD and 153 STREET",Queens,12,103,Television,Episodic series,United States of America,11435
+619206,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 10:00:00 PM,01/05/2022 02:18:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10022"
+619203,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 10:00:00 PM,01/05/2022 02:13:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+619198,Shooting Permit,01/10/2022 11:30:00 AM,01/10/2022 03:00:00 PM,01/05/2022 02:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLINTON AVENUE between GREENE AVENUE and GATES AVENUE,Brooklyn,2,88,Television,Episodic series,United States of America,11238
+619195,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 08:30:00 PM,01/05/2022 02:03:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between GATES AVENUE and GREENE AVENUE, VANDERBILT AVENUE between GATES AVENUE and GREENE AVENUE, GREENE AVENUE between CLINTON AVENUE and VANDERBILT AVENUE, VANDERBILT AVENUE between GREENE AVENUE and LAFAYETTE AVENUE, FULTON STREET between ADELPHI STREET and CLERMONT AVENUE, GATES AVENUE between FULTON STREET and VANDERBILT AVENUE, VANDERBILT AVENUE between LAFAYETTE AVENUE and DEKALB AVENUE, FULTON STREET between VANDERBILT AVENUE and ST JAMES PLACE",Brooklyn,2,88,Television,Episodic series,United States of America,"11205, 11238"
+619189,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 09:00:00 PM,01/05/2022 01:50:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA STREET between DEGRAW STREET and CONGRESS STREET, ATLANTIC AVENUE between HICKS STREET and BOERUM PLACE",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11231"
+619169,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 08:00:00 PM,01/05/2022 01:14:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BUSHWICK AVENUE and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+619159,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 07:00:00 PM,01/05/2022 12:53:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+619096,Shooting Permit,01/08/2022 08:00:00 AM,01/08/2022 10:00:00 AM,01/05/2022 10:44:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON STREET between CADMAN PLAZA EAST and ADAMS STREET, FORT GREENE PLACE between DEKALB AVENUE and FULTON STREET",Brooklyn,2,"84, 88",Television,Pilot,United States of America,"11201, 11217"
+619087,Shooting Permit,01/09/2022 01:00:00 AM,01/09/2022 01:00:00 PM,01/05/2022 10:21:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between PINE STREET and LIBERTY STREET, PINE STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10005
+619068,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 10:00:00 PM,01/05/2022 08:40:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DR between WEST 181 STREET and GEORGE WASHINGTON BRIDGE, RIVERSIDE DR between WEST 181 STREET and DEAD END, CABRINI BOULEVARD between WEST 190 STREET and MARGARET CORBIN PLAZA, WEST 181 STREET between RIVERSIDE DRIVE and HAVEN AVENUE, WEST 181 STREET between HAVEN AVENUE and CABRINI BOULEVARD, CABRINI BOULEVARD between WEST 181 STREET and WEST 186 STREET, BROADWAY between NAGLE AVENUE and SHERMAN AVENUE, WADSWORTH AVENUE between WEST 184 STREET and WEST 187 STREET, WEST 186 STREET between WADSWORTH AVENUE and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 185 STREET and WEST 186 STREET",Manhattan,12,"33, 34",Television,Episodic series,United States of America,"10033, 10040"
+619051,Shooting Permit,01/07/2022 06:00:00 AM,01/07/2022 10:00:00 PM,01/04/2022 09:07:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10022"
+619014,Shooting Permit,01/11/2022 06:00:00 AM,01/11/2022 06:00:00 PM,01/04/2022 04:56:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between BROOKLYN HEIGHTS PROMENADE and HICKS STREET, MONTAGUE STREET between HENRY STREET and CLINTON STREET, HENRY STREET between MONTAGUE STREET and PIERREPONT STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11251"
+618987,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 10:00:00 PM,01/04/2022 03:27:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+618973,Shooting Permit,01/07/2022 08:00:00 AM,01/07/2022 11:00:00 PM,01/04/2022 03:10:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+618959,Shooting Permit,01/07/2022 11:00:00 AM,01/07/2022 11:00:00 PM,01/04/2022 02:29:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between ST CLAIRE PLACE and TIEMANN PLACE, 12 AVE between WEST 125 STREET and ST CLAIRE PL, 12 AVENUE between WEST 130 STREET and RIVERSIDE DRIVE, 12 AVENUE between WEST 130 STREET and WEST 132 STREET, 12 AVENUE between WEST 133 STREET and WEST 134 STREET, WEST 125 STREET between HENRY HUDSON PARKWAY and 12 AVENUE, WEST 125 STREET between 12 AVENUE and ST CLAIRE PLACE, WEST 125 STREET between WEST 129 STREET and BROADWAY, WEST 129 STREET between WEST 125 STREET and BROADWAY, WEST 135 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 137 STREET and WEST 135 STREET",Manhattan,9,"20, 26, 30",Television,Episodic series,United States of America,"10024, 10027, 10031"
+618944,Shooting Permit,01/07/2022 01:00:00 PM,01/07/2022 09:00:00 PM,01/04/2022 02:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",PAGE AVENUE between SOUTH BRIDGE STREET and RICHMOND VALLEY ROAD,Staten Island,3,123,Television,Episodic series,United States of America,10309
+618937,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 11:00:00 PM,01/04/2022 01:45:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+618882,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 10:00:00 PM,01/04/2022 11:37:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between TILDEN AVENUE and DURYEA PLACE, FLATBUSH AVENUE between ALBERMARLE ROAD and REGENT PLACE, REGENT PLACE between EAST 21 STREET and FLATBUSH AVENUE, TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, DURYEA PLACE between FLATBUSH AVENUE and EAST 22 STREET, BEVERLY ROAD between FLATBUSH AVENUE and EAST 23 STREET, EAST 22 STREET between BEVERLY ROAD and DURYEA PLACE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+618872,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 10:00:00 PM,01/04/2022 11:04:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 8 STREET between ROEBLING STREET and BROADWAY, ROEBLING STREET between SOUTH 8 STREET and SOUTH 9 STREET",Brooklyn,1,90,Film,Feature,United States of America,11211
+618865,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 10:00:00 PM,01/04/2022 10:51:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 8 STREET between ROEBLING STREET and BROADWAY, ROEBLING STREET between SOUTH 8 STREET and SOUTH 9 STREET",Brooklyn,1,90,Film,Feature,United States of America,11211
+618858,Shooting Permit,01/07/2022 06:00:00 AM,01/07/2022 11:00:00 PM,01/04/2022 10:30:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, TENTH AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 26 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+618851,Shooting Permit,01/07/2022 06:00:00 AM,01/07/2022 11:00:00 PM,01/04/2022 09:52:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+618846,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 09:00:00 PM,01/04/2022 09:27:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+618845,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 09:00:00 PM,01/04/2022 09:27:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+618844,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 10:00:00 PM,01/04/2022 09:25:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+618826,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 10:00:00 PM,01/03/2022 10:23:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 8 STREET between ROEBLING STREET and BROADWAY, ROEBLING STREET between SOUTH 8 STREET and SOUTH 9 STREET",Brooklyn,1,90,Film,Feature,United States of America,11211
+618765,Shooting Permit,01/12/2022 10:00:00 AM,01/12/2022 10:00:00 PM,01/03/2022 05:46:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTON DRIVE between COLDSPRING ROAD and HEALY AVENUE,Queens,14,101,Film,Short,United States of America,11691
+618757,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 06:00:00 PM,01/03/2022 05:29:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTON DRIVE between COLDSPRING ROAD and HEALY AVENUE,Queens,14,101,Film,Short,United States of America,11691
+618755,Shooting Permit,01/11/2022 08:00:00 AM,01/11/2022 08:00:00 PM,01/03/2022 05:24:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTON DRIVE between COLDSPRING ROAD and HEALY AVENUE,Queens,14,101,Film,Short,United States of America,11691
+618749,Theater Load in and Load Outs,01/06/2022 12:01:00 AM,01/06/2022 11:59:00 PM,01/03/2022 05:02:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+618727,DCAS Prep/Shoot/Wrap Permit,01/05/2022 06:00:00 AM,01/05/2022 06:00:00 PM,01/03/2022 03:49:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LEONARD STREET between CHURCH STREET and LAFAYETTE STREET, BROADWAY between FRANKLIN STREET and LEONARD STREET, BROADWAY between FRANKLIN STREET and WHITE STREET, WHITE STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between WHITE STREET and WALKER STREET, WARREN STREET between WEST STREET and BROADWAY, MURRAY STREET between WEST STREET and GREENWICH STREET, MURRAY STREET between CHURCH STREET and BROADWAY, BROADWAY between WARREN STREET and MURRAY STREET, CENTRE STREET between HOGAN PLACE and WHITE STREET, HOGAN PLACE between CENTRE STREET and BAXTER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+618707,Shooting Permit,01/05/2022 06:00:00 AM,01/05/2022 11:59:00 PM,01/03/2022 03:08:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 73 STREET between 1 AVENUE and 2 AVENUE, EAST 74 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 73 STREET and EAST 74 STREET, 2 AVENUE between EAST 73 STREET and EAST 74 STREET, 2 AVENUE between EAST 74 STREET and EAST 75 STREET, 2 AVENUE between EAST 75 STREET and EAST 76 STREET, 2 AVENUE between EAST 76 STREET and EAST 77 STREET, 1 AVENUE between EAST 73 STREET and EAST 74 STREET, 1 AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10075"
+618686,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 11:00:00 PM,01/03/2022 02:35:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+618609,Shooting Permit,01/06/2022 09:00:00 AM,01/06/2022 11:00:00 PM,01/03/2022 12:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+618567,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 11:30:00 PM,01/03/2022 11:08:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between CALYER STREET and MESEROLE AVENUE, 49 STREET between 19 AVENUE and 20 AVENUE, 19 AVENUE between 48 STREET and HAZEN STREET, 47 STREET between 19 AVENUE and 20 AVENUE, 19 AVENUE between 46 STREET and 47 STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,"1, 80","114, 94",Television,Episodic series,United States of America,"11105, 11222"
+617567,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 11:00:00 PM,12/30/2021 03:12:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+617554,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 11:00:00 PM,12/30/2021 02:00:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 36 AVENUE and 34 AVENUE, VERNON BOULEVARD between 33 ROAD and 34 AVENUE, 35 AVENUE between 12 STREET and 24 STREET, 21 STREET between 36 AVENUE and 35 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11106
+617432,Theater Load in and Load Outs,01/05/2022 12:01:00 AM,01/09/2022 11:59:00 PM,12/29/2021 12:59:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+617425,Shooting Permit,01/04/2022 07:00:00 AM,01/04/2022 11:00:00 PM,12/29/2021 12:15:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+617423,Shooting Permit,01/03/2022 06:00:00 AM,01/03/2022 11:00:00 PM,12/29/2021 12:10:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+617328,Theater Load in and Load Outs,01/18/2022 01:00:00 PM,01/22/2022 11:00:00 PM,12/28/2021 12:00:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+617327,Theater Load in and Load Outs,01/07/2022 07:00:00 AM,01/13/2022 11:59:00 PM,12/28/2021 11:54:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+617276,Shooting Permit,01/07/2022 06:00:00 AM,01/07/2022 10:00:00 PM,12/27/2021 11:52:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 92 STREET and WEST 93 STREET, WEST 94 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 93 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 93 STREET and WEST 94 STREET, WEST 118 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE, WEST 118 STREET between ADAM CLAYTON POWELL BOULEVARD and ST NICHOLAS AVENUE",Manhattan,"10, 64, 7","22, 24, 28",Commercial,Commercial,United States of America,"10024, 10025, 10026"
+617189,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 10:00:00 PM,12/27/2021 12:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 19 STREET and EAST 18 STREET",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+617138,Theater Load in and Load Outs,12/28/2021 06:00:00 AM,01/04/2022 11:00:00 PM,12/24/2021 07:42:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+617103,Shooting Permit,01/10/2022 06:00:00 AM,01/10/2022 10:00:00 PM,12/23/2021 12:53:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 7 AVENUE and 8 AVENUE, BROADWAY between WEST 51 STREET and WEST 53 STREET, 7 AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 58 STREET, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, WEST 56 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,"4, 5",18,Television,Episodic series,United States of America,"10019, 10022, 10152"
+617101,Shooting Permit,01/07/2022 03:00:00 AM,01/08/2022 02:00:00 AM,12/22/2021 08:50:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 AVENUE between 28 STREET and 31 STREET, 29 STREET between 38 AVENUE and 40 AVENUE, 31 STREET between 38 AVENUE and 39 AVENUE, 30 STREET between 39 AVENUE and 40 AVENUE, SKILLMAN AVENUE between 33 STREET and 39 STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+617100,Shooting Permit,01/06/2022 06:00:00 AM,01/07/2022 01:00:00 AM,12/22/2021 08:00:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and FLUSHING AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and THAMES STREET, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+617095,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 04:00:00 PM,12/22/2021 05:32:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between NORTH MOORE STREET and WEST BROADWAY, FRANKLIN STREET between HUDSON STREET and VARICK STREET, NORTH MOORE STREET between HUDSON STREET and VARICK STREET, HUDSON STREET between NORTH MOORE STREET and FRANKLIN STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, W BROADWAY between WORTH STREET and FRANKLIN ST, FRANKLIN ST between W BROADWAY and CHURCH ST",Manhattan,1,1,Television,Episodic series,United States of America,10013
+617092,Shooting Permit,01/07/2022 06:30:00 AM,01/07/2022 08:00:00 PM,12/22/2021 04:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE, greenpoint ave between DEAD END and kingsland ave, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+617087,Theater Load in and Load Outs,01/22/2022 12:01:00 AM,01/23/2022 06:00:00 AM,12/22/2021 03:50:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+617083,Theater Load in and Load Outs,01/21/2022 12:01:00 AM,01/21/2022 11:59:00 PM,12/22/2021 02:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+617080,Theater Load in and Load Outs,01/20/2022 12:01:00 AM,01/20/2022 11:59:00 PM,12/22/2021 02:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+617070,Theater Load in and Load Outs,01/15/2022 12:01:00 AM,01/15/2022 11:59:00 PM,12/22/2021 01:33:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+617068,Theater Load in and Load Outs,01/16/2022 12:01:00 AM,01/17/2022 06:00:00 AM,12/22/2021 01:22:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+617062,Theater Load in and Load Outs,01/14/2022 12:01:00 AM,01/15/2022 11:59:00 PM,12/22/2021 12:49:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+617050,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 09:00:00 PM,12/22/2021 11:33:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+617044,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 08:00:00 PM,12/22/2021 11:19:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616996,Theater Load in and Load Outs,01/08/2022 12:01:00 AM,01/09/2022 06:00:00 AM,12/21/2021 04:04:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+616982,Theater Load in and Load Outs,01/01/2022 12:01:00 AM,01/02/2022 06:00:00 AM,12/21/2021 02:31:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+616963,Shooting Permit,01/06/2022 06:00:00 AM,01/06/2022 11:00:00 PM,12/21/2021 01:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11434, 11436"
+616880,Theater Load in and Load Outs,01/17/2022 06:00:00 AM,01/17/2022 10:00:00 PM,12/20/2021 01:01:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10011
+616836,Theater Load in and Load Outs,12/21/2021 07:00:00 AM,12/22/2021 01:00:00 PM,12/20/2021 05:50:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+616803,Shooting Permit,01/06/2022 06:00:00 AM,01/06/2022 10:00:00 PM,12/17/2021 04:46:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and SEVENTH AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 46 STREET between 5 AVENUE and 6 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036"
+616802,Shooting Permit,01/06/2022 07:00:00 AM,01/06/2022 10:00:00 PM,12/17/2021 04:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+616801,Shooting Permit,01/03/2022 07:00:00 AM,01/03/2022 09:00:00 PM,12/17/2021 04:10:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVE, IRVING AVE between ELDERT ST and COVERT ST, WEIRFIELD STREET between WYCKOFF AVENUE and CYPRESS AVENUE, CYPRESS AVENUE between HANCOCK STREET and WEIRFIELD STREET, CYPRESS AVENUE between WEIRFIELD STREET and CENTRE STREET",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+616796,Shooting Permit,12/21/2021 06:00:00 AM,12/22/2021 11:00:00 PM,12/17/2021 03:33:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 25 STREET and WEST 24 STREET, 6 AVENUE between WEST 24 STREET and WEST 23 STREET, TOMPKINS AVENUE between ELLERY STREET and FLUSHING AVENUE, HARRISON AVENUE between GERRY STREET and BARTLETT STREET, FLUSHING AVENUE between BARTLETT STREET and GERRY STREET, GERRY STREET between FLUSHING AVENUE and HARRISON AVENUE",Manhattan,"1, 3, 4, 5","13, 79, 90",Film,Feature,United States of America,"10010, 10011, 11206"
+616794,Shooting Permit,01/11/2022 07:00:00 AM,01/11/2022 11:00:00 PM,12/17/2021 03:25:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between 74 AVENUE and 71 ROAD, 72 ROAD between METROPOLITAN AVENUE and MANSE STREET, 72 AVENUE between KESSEL STREET and METROPOLITAN AVENUE, 71 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE",Queens,"6, 82","102, 112",Television,Not Applicable,United States of America,"11375, 11385"
+616791,Shooting Permit,12/21/2021 06:00:00 AM,12/21/2021 11:00:00 PM,12/17/2021 03:05:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+616783,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 11:00:00 PM,12/17/2021 02:03:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+616781,Shooting Permit,01/07/2022 07:00:00 AM,01/07/2022 10:00:00 PM,12/17/2021 01:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+616779,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 10:00:00 PM,12/17/2021 01:36:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616773,Shooting Permit,01/04/2022 07:00:00 AM,01/04/2022 10:00:00 PM,12/17/2021 01:29:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616771,Shooting Permit,01/02/2022 04:00:00 AM,01/02/2022 10:00:00 AM,12/17/2021 01:28:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+616769,Shooting Permit,01/05/2022 06:00:00 AM,01/05/2022 11:00:00 PM,12/17/2021 01:19:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between BLEECKER STREET and MINETTA LANE, 6 AVENUE between CARMINE STREET and WEST 3 STREET, BLEECKER STREET between 6 AVENUE and LEROY STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between MACDOUGAL STREET and SULLIVAN STREET, BLEECKER STREET between SULLIVAN STREET and THOMPSON STREET, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET, 6 AVENUE between BEDFORD STREET and DOWNING STREET, BLEECKER STREET between MINETTA STREET and MACDOUGAL STREET, MACDOUGAL STREET between MINETTA LANE and BLEECKER STREET, MINETTA LANE between MACDOUGAL STREET and 6 AVENUE, LAGUARDIA PLACE between WEST 3 STREET and BLEECKER STREET, WEST HOUSTON STREET between SULLIVAN STREET and THOMPSON STREET",Manhattan,2,"1, 6",Television,Episodic series,United States of America,"10012, 10014"
+616763,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 11:00:00 PM,12/17/2021 12:44:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616760,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 11:00:00 PM,12/17/2021 12:30:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104, 11378"
+616757,Shooting Permit,01/05/2022 06:00:00 AM,01/05/2022 06:00:00 PM,12/17/2021 12:27:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 24 STREET and HUNTER STREET, HUNTER STREET between 43 AVENUE and 44 DRIVE, CRESCENT STREET between 43 AVENUE and 44 ROAD, 44 ROAD between HUNTER STREET and CRESCENT STREET, COURT SQUARE WEST between JACKSON AVE and DEAD END, COURT SQUARE E between Jackson Av and Dead End, 44 ROAD between 24 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+616738,Shooting Permit,01/06/2022 06:00:00 AM,01/06/2022 11:00:00 PM,12/17/2021 11:04:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 17 STREET and EAST 21 STREET, EAST 19 STREET between BROADWAY and PARK AVENUE SOUTH, EAST 22 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 21 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, GRAMERCY PARK EAST between EAST 20 STREET and EAST 21 STREET, EAST 21 STREET between THIRD AVENUE and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, EAST 22 STREET between PARK AVENUE SOUTH and BROADWAY",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+616734,Shooting Permit,01/10/2022 07:00:00 AM,01/10/2022 11:00:00 PM,12/17/2021 10:31:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+616720,Theater Load in and Load Outs,12/29/2021 08:00:00 AM,01/01/2022 11:00:00 PM,12/17/2021 09:32:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+616718,Theater Load in and Load Outs,12/20/2021 05:00:00 AM,12/21/2021 11:00:00 PM,12/17/2021 09:20:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+616685,Shooting Permit,12/23/2021 08:00:00 AM,12/25/2021 03:00:00 AM,12/16/2021 03:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 50 STREET and EAST 51 STREET,Manhattan,5,18,Television,News,United States of America,"10020, 10022"
+616643,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 10:00:00 PM,12/16/2021 12:55:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616641,Shooting Permit,01/06/2022 08:00:00 AM,01/06/2022 10:00:00 PM,12/16/2021 12:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 52 STREET and EAST 53 STREET, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 53 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, 5 AVENUE between EAST 67 STREET and EAST 68 STREET, 5 AVENUE between EAST 68 STREET and EAST 71 STREET, EAST 67 STREET between MADISON AVENUE and 5 AVENUE, EAST 68 STREET between PARK AVENUE and MADISON AVENUE, EAST 68 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and 5 AVENUE, EAST 69 STREET between MADISON AVENUE and 5 AVENUE, EAST 70 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"6, 64, 8","17, 19, 22",Television,Episodic series,United States of America,"10021, 10022, 10065"
+616629,Shooting Permit,12/18/2021 10:00:00 AM,12/19/2021 02:00:00 AM,12/16/2021 12:04:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616621,Shooting Permit,12/17/2021 04:00:00 AM,12/17/2021 10:00:00 AM,12/16/2021 11:20:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+616600,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 10:00:00 PM,12/16/2021 10:20:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 66 STREET between NATIONAL DRIVE and 56 DRIVE,Brooklyn,18,63,Film,Feature,United States of America,11234
+616554,Theater Load in and Load Outs,01/13/2022 12:01:00 AM,01/14/2022 11:59:00 PM,12/15/2021 04:56:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+616541,Theater Load in and Load Outs,01/16/2022 12:01:00 AM,01/17/2022 06:00:00 AM,12/15/2021 04:33:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+616530,Theater Load in and Load Outs,01/01/2022 12:01:00 AM,01/02/2022 06:00:00 AM,12/15/2021 04:16:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+616512,Shooting Permit,12/18/2021 06:00:00 PM,12/18/2021 11:00:00 PM,12/15/2021 03:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",DITMARS BOULEVARD between 47 STREET and 46 STREET,Queens,1,114,Film,Short,United States of America,11105
+616505,Shooting Permit,12/17/2021 06:00:00 AM,12/18/2021 01:00:00 AM,12/15/2021 02:28:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHAUNCEY STREET between CENTRAL AVENUE and EVERGREEN AVENUE,Brooklyn,4,83,Film,Short,United States of America,11207
+616459,Shooting Permit,01/07/2022 06:00:00 AM,01/07/2022 10:00:00 PM,12/15/2021 12:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+616458,Shooting Permit,01/06/2022 06:00:00 AM,01/06/2022 10:00:00 PM,12/15/2021 12:44:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+616457,Shooting Permit,01/05/2022 06:00:00 AM,01/05/2022 10:00:00 PM,12/15/2021 12:42:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+616449,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 11:00:00 PM,12/15/2021 12:17:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616444,Shooting Permit,12/20/2021 06:00:00 AM,12/20/2021 11:00:00 PM,12/15/2021 12:00:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+616430,Shooting Permit,12/19/2021 06:00:00 AM,12/19/2021 06:00:00 PM,12/15/2021 11:29:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",BEAVER STREET between PEARL STREET and HANOVER STREET,Manhattan,1,1,Film,Feature,United States of America,10005
+616417,Shooting Permit,12/20/2021 07:00:00 AM,12/20/2021 09:00:00 PM,12/15/2021 10:28:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616411,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 09:00:00 PM,12/15/2021 10:23:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616353,Shooting Permit,12/16/2021 06:00:00 AM,12/16/2021 11:00:00 PM,12/14/2021 04:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+616338,Shooting Permit,12/20/2021 12:00:00 PM,12/20/2021 08:00:00 PM,12/14/2021 03:03:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 44 STREET between 2 AVENUE and 3 AVENUE,Manhattan,6,17,Still Photography,Not Applicable,United States of America,10017
+616322,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 09:00:00 PM,12/14/2021 02:25:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616297,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 11:00:00 PM,12/14/2021 12:56:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KENT AVENUE between NORTH 5 STREET and METROPOLITAN AVENUE, NORTH 3 STREET between KENT AVENUE and RIVER STREET, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+616293,Shooting Permit,12/17/2021 10:00:00 AM,12/18/2021 04:00:00 AM,12/14/2021 12:27:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between BARCLAY STREET and PARK PLACE, BARCLAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between WEST BROADWAY and CHURCH STREET, MURRAY STREET between CHURCH STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, CHURCH STREET between MURRAY STREET and CHAMBERS STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, WARREN STREET between WEST STREET and BROADWAY, CHURCH STREET between VESEY STREET and BARCLAY STREET, WEST BROADWAY between MURRAY STREET and WARREN STREET, CHURCH STREET between VESEY STREET and BARCLAY STREET",Manhattan,1,1,Television,Episodic series,United States of America,10007
+616286,Shooting Permit,12/17/2021 06:00:00 AM,12/17/2021 11:00:00 PM,12/14/2021 11:59:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between EAST 16 STREET and EAST 19 STREET, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between DITMAS AVENUE and NEWKIRK AVENUE, STRATFORD ROAD between CHURCH AVENUE and BEVERLEY ROAD, WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,"11218, 11226"
+616273,Theater Load in and Load Outs,12/20/2021 12:01:00 AM,12/21/2021 11:59:00 PM,12/14/2021 11:07:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 26 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+616269,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 11:00:00 PM,12/14/2021 11:01:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and BEARD STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, CONOVER STREET between COFFEY STREET and VAN DYKE STREET, VAN DYKE STREET between BARNELL STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+616255,Shooting Permit,12/16/2021 08:00:00 AM,12/16/2021 11:00:00 PM,12/14/2021 10:00:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+616253,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 11:00:00 PM,12/14/2021 09:54:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+616252,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 11:00:00 PM,12/14/2021 09:54:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+616251,Shooting Permit,12/17/2021 08:00:00 AM,12/17/2021 05:30:00 PM,12/14/2021 09:35:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","GULF AVENUE between EDWARD CURRY AVENUE and 5TH ST, BLOOMFIELD AVENUE between CHELSEA ROAD and GULF AVENUE, EDWARD CURRY AVENUE between CHELSEA ROAD and GLEN STREET",Staten Island,2,"121, 122",Television,Episodic series,United States of America,10314
+616234,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 10:00:00 PM,12/13/2021 08:47:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 66 STREET between NATIONAL DRIVE and 56 DRIVE,Brooklyn,18,63,Film,Feature,United States of America,11234
+616223,Shooting Permit,12/16/2021 09:00:00 AM,12/17/2021 12:00:00 AM,12/13/2021 06:31:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","88TH AVE between 77TH ST and 78TH ST, 78TH ST between 88TH AVE and JAMAICA AVE, 78TH ST between 88TH AVE and 88TH RD, JAMAICA AVENUE between 78 STREET and 77 STREET, JAMAICA AVENUE between 78 STREET and 79 STREET, JAMAICA AVENUE between 79 STREET and 80 STREET, 80 STREET between JAMAICA AVENUE and 87 AVENUE, 80 STREET between JAMAICA AVENUE and 86 AVENUE, FOREST PARKWAY between JAMAICA AVENUE and 86 AVENUE, JAMAICA AVE between ELDERT LN and CRESENT ST",Queens,"5, 9","102, 75",Television,Episodic series,United States of America,"11208, 11421"
+616220,Shooting Permit,12/20/2021 07:00:00 AM,12/20/2021 09:00:00 PM,12/13/2021 05:59:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 70 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,8,19,Commercial,Commercial,United States of America,10021
+616217,Shooting Permit,12/17/2021 10:00:00 AM,12/18/2021 10:00:00 PM,12/13/2021 05:45:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 25 STREET and WEST 24 STREET, 6 AVENUE between WEST 24 STREET and WEST 23 STREET",Manhattan,"4, 5",13,Film,Feature,United States of America,"10010, 10011"
+616216,Shooting Permit,12/17/2021 02:00:00 PM,12/18/2021 03:00:00 AM,12/13/2021 05:33:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","B 132 STREET between ROCKAWAY BEACH BOULEVARD and NEWPORT AVENUE, BEACH 133 STREET between NEWPORT AVENUE and ROCKAWAY BEACH BOULEVARD",Queens,14,100,Film,Feature,United States of America,11694
+616215,Shooting Permit,12/16/2021 08:00:00 AM,12/16/2021 08:00:00 PM,12/13/2021 04:54:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",PINE STREET between NASSAU STREET and WILLIAM STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10005, 10045"
+616213,Shooting Permit,12/15/2021 09:00:00 AM,12/15/2021 09:00:00 PM,12/13/2021 04:46:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between STATE STREET and BROAD STREET, PEARL STREET between STATE STREET and WHITEHALL STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET, WATER STREET between MOORE STREET and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Episodic series,United States of America,10004
+616195,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 10:00:00 PM,12/13/2021 02:43:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616192,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 06:00:00 PM,12/13/2021 02:18:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+616190,DCAS Prep/Shoot/Wrap Permit,12/19/2021 07:00:00 AM,12/20/2021 02:00:00 AM,12/13/2021 02:06:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 90 AVENUE and HILLSIDE AVENUE, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, HILLSIDE AVENUE between SUTPHIN BOULEVARD and 150 STREET",Queens,"12, 8","103, 107",Television,Episodic series,United States of America,11435
+616183,Shooting Permit,12/16/2021 06:00:00 AM,12/16/2021 08:00:00 PM,12/13/2021 01:46:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between LAIGHT STREET and BEACH STREET, BEACH STREET between VARICK STREET and WEST BROADWAY, YORK STREET between ST JOHNS LANE and 6 AVENUE, SIXTH AVENUE between CANAL STREET and WALKER STREET, Walker Street between varick street and 6th Avenue, 6 AVENUE between WALKER STREET and WHITE STREET, WEST 27 STREET between TENTH AVENUE and ELEVENTH AVENUE, WEST 26 STREET between TENTH AVENUE and ELEVENTH AVENUE",Manhattan,"1, 4","1, 10",Commercial,Commercial,United States of America,"10001, 10013"
+616180,Shooting Permit,01/04/2022 06:00:00 AM,01/04/2022 10:00:00 PM,12/13/2021 01:36:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+616179,Shooting Permit,01/03/2022 06:00:00 AM,01/03/2022 10:00:00 PM,12/13/2021 01:35:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+616177,Shooting Permit,12/17/2021 08:30:00 AM,12/17/2021 11:00:00 PM,12/13/2021 01:32:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between RUSSELL STREET and HUMBOLDT STREET, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616164,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 09:00:00 PM,12/13/2021 11:55:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+616163,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 11:00:00 PM,12/13/2021 11:50:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+616156,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 10:00:00 PM,12/13/2021 10:58:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+616138,Shooting Permit,12/15/2021 08:00:00 AM,12/15/2021 11:00:00 PM,12/13/2021 10:20:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+616132,Shooting Permit,12/17/2021 06:00:00 AM,12/17/2021 08:00:00 PM,12/13/2021 09:54:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between HOYT STREET and 3 AVENUE,Brooklyn,2,84,Commercial,Commercial,United States of America,11217
+616128,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 10:00:00 PM,12/13/2021 09:39:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+616125,Shooting Permit,12/16/2021 08:00:00 AM,12/16/2021 10:00:00 PM,12/13/2021 09:30:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+616123,Shooting Permit,01/05/2022 07:00:00 AM,01/05/2022 09:00:00 PM,12/13/2021 09:24:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616122,Shooting Permit,01/04/2022 07:00:00 AM,01/04/2022 09:00:00 PM,12/13/2021 09:24:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616121,Shooting Permit,01/03/2022 07:00:00 AM,01/03/2022 09:00:00 PM,12/13/2021 09:24:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616120,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 09:00:00 PM,12/13/2021 09:22:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616119,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 09:00:00 PM,12/13/2021 09:21:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616034,Shooting Permit,12/15/2021 05:00:00 AM,12/15/2021 11:00:00 PM,12/10/2021 09:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK WEST between 8 STREET and PLAZA ST WEST, Flatbush Avenue between Plaza St West and Empire Blvd, WATER STREET between MAIN STREET and OLD FULTON STREET, FRONT STREET between MAIN STREET and DOCK STREET, DOCK STREET between FRONT STREET and WATER STREET",Brooklyn,"2, 55, 6","78, 84",Television,Cable-episodic,United States of America,"11201, 11215, 11238"
+616030,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 10:00:00 PM,12/10/2021 06:27:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between ESSEX STREET and ALLEN STREET, LUDLOW STREET between GRAND STREET and HESTER STREET",Manhattan,3,7,Commercial,Commercial,United States of America,10002
+616026,Shooting Permit,12/17/2021 09:00:00 AM,12/17/2021 11:00:00 PM,12/10/2021 05:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CHRYSTIE STREET and FORSYTH STREET, FORSYTH STREET between GRAND STREET and HESTER STREET, BOWERY between BROOME STREET and MANHATTAN BRIDGE, ALLEN STREET between DELANCEY STREET and HESTER STREET, GRAND STREET between FORSYTH STREET and ELDRIDGE STREET, ELDRIDGE STREET between GRAND STREET and BROOME STREET, EAST BROADWAY between CATHERINE STREET and RUTGERS STREET",Manhattan,"2, 3","5, 7",Television,Episodic series,United States of America,"10002, 10013"
+616017,Shooting Permit,12/15/2021 10:00:00 AM,12/15/2021 10:00:00 PM,12/10/2021 04:13:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between 2 AVENUE and 3 AVENUE, MOUNT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, 1 AVENUE between EAST 28 STREET and EAST 29 STREET, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 26 STREET and EAST 27 STREET, 1 AVENUE between EAST 26 STREET and EAST 28 STREET, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+616009,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 08:00:00 PM,12/10/2021 03:40:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","MACDONOUGH STREET between LEWIS AVENUE and STUYVESANT AVENUE, STUYVESANT AVENUE between MACON STREET and DECATUR STREET, STUYVESANT AVENUE between MACON STREET and HALSEY STREET, CHAUNCEY STREET between LEWIS AVENUE and STUYVESANT AVENUE, STUYVESANT AVENUE between CHAUNCEY STREET and FULTON STREET",Brooklyn,3,81,Television,Episodic series,United States of America,11233
+616007,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 10:00:00 PM,12/10/2021 03:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+616005,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 09:00:00 PM,12/10/2021 03:29:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, JOHNSON AVENUE between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,1,90,Commercial,Commercial,United States of America,11237
+616000,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 09:30:00 PM,12/10/2021 03:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 13 STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between WYTHE AVENUE and BEDFORD AVENUE, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, NORTH 14 STREET between WYTHE AVENUE and BERRY STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+615993,Theater Load in and Load Outs,12/15/2021 12:01:00 AM,12/16/2021 06:00:00 AM,12/10/2021 02:51:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Theater,Theater,United States of America,11249
+615991,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 09:00:00 PM,12/10/2021 02:44:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 52 STREET between THIRD AVENUE and LEXINGTON AVENUE, EAST 55 STREET between THIRD AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 53 STREET and EAST 57 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10022
+615990,Shooting Permit,12/17/2021 06:00:00 AM,12/17/2021 09:00:00 PM,12/10/2021 02:36:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615987,Shooting Permit,12/16/2021 06:00:00 AM,12/16/2021 09:00:00 PM,12/10/2021 02:33:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615985,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 09:00:00 PM,12/10/2021 02:29:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615982,Shooting Permit,12/16/2021 07:30:00 AM,12/16/2021 09:30:00 PM,12/10/2021 02:19:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, LEONARD STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615973,Shooting Permit,12/14/2021 08:00:00 AM,12/14/2021 10:00:00 PM,12/10/2021 01:54:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between FRANKLIN AVENUE and BEDFORD AVENUE, FRANKLIN AVENUE between PACIFIC STREET and DEAN STREET",Brooklyn,8,77,Film,Feature,United States of America,"11216, 11238"
+615969,Shooting Permit,12/13/2021 07:30:00 AM,12/13/2021 04:00:00 PM,12/10/2021 01:42:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",BUTLER STREET between SMITH STREET and HOYT STREET,Brooklyn,"4, 6","76, 83",Film,Feature,United States of America,"11221, 11231"
+615959,Theater Load in and Load Outs,12/15/2021 01:00:00 AM,12/15/2021 11:59:00 PM,12/10/2021 01:19:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+615958,Shooting Permit,12/15/2021 07:30:00 AM,12/15/2021 01:00:00 PM,12/10/2021 01:19:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, LEONARD STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615945,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 11:00:00 PM,12/10/2021 12:46:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between 21 STREET and 22 STREET, 21 STREET between 44 AVENUE and 44 ROAD, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+615943,Shooting Permit,12/16/2021 06:00:00 AM,12/16/2021 10:00:00 PM,12/10/2021 12:38:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 19 STREET and EAST 18 STREET",Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+615942,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 07:00:00 PM,12/10/2021 12:38:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARLINGTON AVENUE between WARWICK STREET and ASHFORD STREET, ARLINGTON AVENUE between ASHFORD STREET and CLEVELAND STREET, RENWICK STREET between SPRING STREET and CANAL STREET",Brooklyn,"2, 5","1, 75",Commercial,Commercial,United States of America,"10013, 11207"
+615941,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 10:00:00 PM,12/10/2021 12:31:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 13 STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between WYTHE AVENUE and BEDFORD AVENUE, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, NORTH 14 STREET between WYTHE AVENUE and BERRY STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+615938,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 11:00:00 PM,12/10/2021 12:21:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+615929,Theater Load in and Load Outs,12/17/2021 12:01:00 AM,12/25/2021 11:59:00 PM,12/10/2021 11:19:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+615926,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 09:00:00 PM,12/10/2021 11:08:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between FRANKLIN AVENUE and BEDFORD AVENUE, FRANKLIN AVENUE between ATLANTIC AVENUE and PACIFIC STREET",Brooklyn,8,77,Film,Feature,United States of America,"11216, 11238"
+615917,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 11:00:00 PM,12/10/2021 10:49:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, BROOME STREET between LAFAYETTE STREET and BROADWAY, MULBERRY STREET between PRINCE STREET and JERSEY STREET, LAFAYETTE STREET between BROOME STREET and CANAL STREET, EAST HOUSTON STREET between CROSBY STREET and LAFAYETTE STREET, PRINCE STREET between BROADWAY and CROSBY STREET, LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET",Manhattan,2,"5, 9",Television,Episodic series,United States of America,"10012, 10013"
+615909,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 11:59:00 PM,12/10/2021 10:16:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,WEB,Not Applicable,United States of America,10036
+615899,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 09:00:00 PM,12/10/2021 09:16:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+615895,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 09:00:00 PM,12/09/2021 10:30:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 86 STREET between WEST END AVENUE and RIVERSIDE DRIVE,Manhattan,7,"20, 24",Commercial,Commercial,United States of America,10024
+615870,DCAS Prep/Shoot/Wrap Permit,12/13/2021 05:00:00 PM,12/13/2021 10:00:00 PM,12/09/2021 05:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY, ELK STREET between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+615869,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 09:00:00 PM,12/09/2021 04:39:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615866,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 09:00:00 PM,12/09/2021 04:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 71 STREET between 5 AVENUE and MADISON AVENUE, EAST 76 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 72 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 72 STREET and EAST 73 STREET, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 69 STREET and EAST 71 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10075"
+615864,Shooting Permit,12/15/2021 06:00:00 PM,12/16/2021 06:00:00 AM,12/09/2021 04:09:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 129 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD,Manhattan,10,32,Television,Episodic series,United States of America,10027
+615854,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 09:00:00 PM,12/09/2021 03:30:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARSONS BOULEVARD between 88 AVENUE and JAMAICA AVENUE, 90 AVENUE between PARSONS BOULEVARD and 161 STREET, 160 STREET between 90 AVENUE and JAMAICA AVENUE, 161 STREET between 90 AVENUE and JAMAICA AVENUE, HILLSIDE AVENUE between 161 STREET and 162 STREET, HILLSIDE AVENUE between 162 STREET and 164 STREET, PARSONS BOULEVARD between 65 AVENUE and JEWEL AVENUE, JEWEL AVENUE between PARSONS BOULEVARD and 161 STREET, KISSENA BOULEVARD between MELBOURNE AVENUE and 65 AVENUE",Queens,"12, 8","103, 107",Television,Cable-episodic,United States of America,"11365, 11367, 11432"
+615844,Shooting Permit,12/16/2021 08:00:00 AM,12/16/2021 09:00:00 PM,12/09/2021 03:09:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615835,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 07:00:00 PM,12/09/2021 02:41:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615829,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 11:00:00 PM,12/09/2021 02:15:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONEY ISLAND AVENUE between SLOCUM PLACE and CORTELYOU ROAD, CONEY ISLAND AVENUE between CORTELYOU ROAD and DORCHESTER ROAD, CORTELYOU ROAD between RUGBY ROAD and MARLBOROUGH ROAD, CORTELYOU ROAD between RUGBY ROAD and ARGYLE ROAD, CORTELYOU ROAD between MARLBOROUGH ROAD and EAST 17 STREET, RUGBY ROAD between CORTELYOU ROAD and DORCHESTER ROAD, MARLBOROUGH ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 16 STREET and OCEAN AVENUE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226"
+615828,Shooting Permit,12/14/2021 11:30:00 AM,12/15/2021 01:00:00 AM,12/09/2021 02:15:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 86 STREET and WEST 91 STREET, WEST END AVENUE between WEST 88 STREET and WEST 89 STREET, WEST 88 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 88 STREET and WEST 84 STREET, WEST 90 STREET between WEST END AVENUE and BROADWAY, WEST 86 STREET between WEST END AVENUE and BROADWAY, WEST 87 STREET between WEST END AVENUE and BROADWAY",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+615823,Shooting Permit,12/17/2021 07:00:00 AM,12/17/2021 11:00:00 PM,12/09/2021 01:34:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615822,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 10:00:00 PM,12/09/2021 01:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+615821,Shooting Permit,12/16/2021 07:00:00 AM,12/16/2021 11:00:00 PM,12/09/2021 01:26:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615820,Shooting Permit,12/12/2021 06:00:00 AM,12/12/2021 09:00:00 PM,12/09/2021 01:20:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN AVENUE between ATLANTIC AVENUE and PACIFIC STREET, PACIFIC STREET between FRANKLIN AVENUE and BEDFORD AVENUE",Brooklyn,8,77,Film,Feature,United States of America,"11216, 11238"
+615819,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 11:00:00 PM,12/09/2021 01:19:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615816,Shooting Permit,12/15/2021 08:00:00 AM,12/15/2021 09:30:00 PM,12/09/2021 01:14:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 8 AVENUE and 9 AVENUE, WEST 43 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,"14, 18",Television,Episodic series,United States of America,10036
+615815,Shooting Permit,12/14/2021 08:00:00 AM,12/14/2021 09:30:00 PM,12/09/2021 01:14:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 53 STREET and WEST 56 STREET, WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 10 AVENUE and 12 AVENUE, WEST 56 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,10019
+615813,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 10:00:00 PM,12/09/2021 01:12:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+615812,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 11:00:00 PM,12/09/2021 01:09:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615808,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 11:00:00 PM,12/09/2021 12:53:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+615807,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 09:00:00 PM,12/09/2021 12:51:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, LEONARD STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINESS BOULEVARD, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615800,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 10:00:00 PM,12/09/2021 12:36:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between EAST 10 STREET and WANAMAKER PLACE, 4 AVENUE between EAST 10 STREET and EAST 11 STREET, BROADWAY between EAST 10 STREET and EAST 11 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 11 STREET between UNIVERSITY PLACE and BROADWAY, EAST 11 STREET between UNIVERSITY PLACE and BROADWAY, EAST 11 STREET between UNIVERSITY PLACE and 5 AVENUE, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 14 STREET between HUDSON STREET and 8 AVENUE, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 3, 4","10, 13, 6, 9",Television,Cable-episodic,United States of America,"10003, 10011"
+615785,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 10:00:00 PM,12/09/2021 12:04:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between 44 STREET and 48 STREET, 44 STREET between 5 AVENUE and 7 AVENUE, 5 AVENUE between 43 STREET and 44 STREET, 5 AVENUE between 41 STREET and 43 STREET, 2 AVENUE between 44 STREET and 48 STREET, 13 AVENUE between 41 STREET and 42 STREET, 13 AVENUE between 42 STREET and 44 STREET, 43 STREET between 13 AVENUE and 12 AVENUE",Brooklyn,"12, 7","66, 72",Television,Episodic series,United States of America,"11219, 11220, 11232"
+615775,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 11:00:00 PM,12/09/2021 11:01:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+615774,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 11:59:00 PM,12/09/2021 10:50:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and THAMES STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 4","83, 90, 94",Television,Episodic series,United States of America,"11222, 11237"
+615760,Shooting Permit,12/10/2021 06:00:00 AM,12/10/2021 10:00:00 PM,12/09/2021 10:02:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615751,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 10:00:00 PM,12/09/2021 07:12:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+615738,Shooting Permit,12/16/2021 06:00:00 AM,12/17/2021 01:00:00 AM,12/08/2021 08:37:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH END AVENUE between WEST THAMES STREET and LIBERTY STREET, ALBANY STREET between SOUTH END AVENUE and WEST STREET, WARREN STREET between WEST STREET and BROADWAY, BROADWAY between MURRAY STREET and WARREN STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, CHERRY STREET between CATHERINE STREET and PIKE STREET, MARKET STREET between MONROE STREET and SOUTH STREET, MONROE STREET between MARKET STREET and PIKE STREET, MONROE STREET between CATHERINE STREET and MARKET STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10002, 10007, 10280, 10281"
+615734,Shooting Permit,12/13/2021 06:30:00 AM,12/13/2021 09:00:00 PM,12/08/2021 06:24:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+615726,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 11:00:00 PM,12/08/2021 05:24:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615725,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 11:00:00 PM,12/08/2021 05:19:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615720,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 06:00:00 PM,12/08/2021 04:50:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","72nd Rd between Kissena Blvd and Kissena Blvd w, 153 STREET between 72 DRIVE and 73 AVENUE, 73 AVENUE between 150 STREET and 153 STREET, 73RD AVE between 153 STREET and KISSENA BOULEVARD, KISSENA BOULEVARD between 73 AVENUE and 72 ROAD",Queens,"11, 8","107, 111",Television,Cable-episodic,United States of America,"11364, 11366, 11367"
+615704,Shooting Permit,12/14/2021 06:00:00 AM,12/15/2021 01:00:00 AM,12/08/2021 03:56:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between BEDFORD STREET and DOWNING STREET, 6 AVENUE between BLEECKER STREET and MINETTA LANE, 6 AVENUE between CARMINE STREET and WEST 3 STREET, BLEECKER STREET between 6 AVENUE and LEROY STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between MINETTA STREET and MACDOUGAL STREET, BLEECKER STREET between MACDOUGAL STREET and SULLIVAN STREET, BLEECKER STREET between SULLIVAN STREET and THOMPSON STREET, MACDOUGAL STREET between MINETTA LANE and BLEECKER STREET, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET, MINETTA STREET between 6 AVENUE and MINETTA LANE, MINETTA LANE between MACDOUGAL STREET and 6 AVENUE",Manhattan,2,"1, 6",Television,Episodic series,United States of America,"10012, 10014"
+615701,DCAS Prep/Shoot/Wrap Permit,12/18/2021 06:00:00 AM,12/18/2021 11:00:00 PM,12/08/2021 03:23:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 90 AVENUE and HILLSIDE AVENUE, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, HILLSIDE AVENUE between SUTPHIN BOULEVARD and 150 STREET",Queens,"12, 8","103, 107",Television,Episodic series,United States of America,11435
+615698,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 06:00:00 PM,12/08/2021 03:09:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 116TH ST between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 119 STREET, MORNINGSIDE AVENUE between WEST 116 STREET and WEST 124 STREET",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,"10026, 10027"
+615694,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 11:59:00 PM,12/08/2021 02:53:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between ST MARKS PLACE and EAST 10 STREET, EAST 10 STREET between AVENUE A and AVENUE B, EAST 10 STREET between 1 AVENUE and AVENUE A, ORCHARD STREET between HESTER STREET and CANAL STREET, ALLEN STREET between HESTER STREET and CANAL STREET, WEST BROADWAY between BEACH STREET and FRANKLIN ST, WHITE STREET between WEST BROADWAY and 6 AVENUE",Manhattan,"1, 3","1, 5, 7, 9",Commercial,Commercial,United States of America,"10002, 10009, 10013"
+615683,Shooting Permit,12/09/2021 09:00:00 AM,12/09/2021 11:59:00 PM,12/08/2021 01:55:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+615669,Shooting Permit,12/10/2021 04:00:00 AM,12/10/2021 11:00:00 AM,12/08/2021 01:07:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+615666,Shooting Permit,12/09/2021 05:00:00 AM,12/09/2021 07:00:00 PM,12/08/2021 12:58:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+615663,Theater Load in and Load Outs,12/18/2021 12:01:00 AM,12/19/2021 06:00:00 AM,12/08/2021 12:41:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+615662,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 09:00:00 PM,12/08/2021 12:36:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615656,Shooting Permit,12/15/2021 07:00:00 AM,12/15/2021 11:00:00 PM,12/08/2021 12:13:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 23 STREET and 22 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+615655,Theater Load in and Load Outs,12/11/2021 06:01:00 AM,12/12/2021 06:00:00 AM,12/08/2021 12:08:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+615640,Shooting Permit,12/10/2021 08:00:00 AM,12/10/2021 08:00:00 PM,12/08/2021 11:11:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between 1 AVENUE and SUTTON PLACE, SUTTON PLACE between EAST 58 STREET and EAST 57 STREET, 51 AVENUE between 2 STREET and 5 STREET, 51 AVENUE between 5 STREET and VERNON BOULEVARD",Manhattan,"2, 6, 8","108, 17, 19",Television,Episodic series,United States of America,"10022, 11101"
+615634,Theater Load in and Load Outs,12/11/2021 12:01:00 AM,12/12/2021 06:00:00 AM,12/08/2021 10:46:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+615632,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 10:00:00 PM,12/08/2021 10:32:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","SECOND AVENUE between EAST 52 STREET and EAST 56 STREET, THIRD AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 52 STREET between THIRD AVENUE and LEXINGTON AVENUE, EAST 55 STREET between THIRD AVENUE and SECOND AVENUE, EAST 55 STREET between THIRD AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 55 STREET and EAST 57 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10022
+615627,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 09:00:00 PM,12/08/2021 10:13:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 119 STREET and WEST 122 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, W 116th St between LENOX AVENUE and Madison Ave, AMSTERDAM AVENUE between WEST 110 STREET and WEST 112 STREET, WEST 110 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 110 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 110 STREET between BROADWAY and RIVERSIDE DRIVE, BROADWAY between WEST 110 STREET and WEST 112 STREET, W 124TH ST between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 7, 9","24, 26, 28",Television,Cable-episodic,United States of America,"10025, 10026, 10027"
+615617,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 11:00:00 PM,12/08/2021 09:25:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 ROAD and 44 AVENUE, 43 ROAD between 9 STREET and 10 STREET, 43 ROAD between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 AVENUE and 43 ROAD, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 24 STREET, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+615610,Shooting Permit,12/18/2021 10:00:00 AM,12/19/2021 02:00:00 AM,12/08/2021 08:10:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615608,Shooting Permit,12/17/2021 09:00:00 AM,12/18/2021 01:00:00 AM,12/08/2021 08:04:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615607,Shooting Permit,12/16/2021 08:00:00 AM,12/17/2021 12:01:00 AM,12/08/2021 07:55:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615606,Shooting Permit,12/15/2021 08:00:00 AM,12/16/2021 12:01:00 AM,12/08/2021 07:46:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615605,Theater Load in and Load Outs,12/12/2021 11:00:00 AM,12/13/2021 11:59:00 PM,12/08/2021 04:51:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+615597,Shooting Permit,12/11/2021 06:00:00 AM,12/11/2021 08:00:00 PM,12/07/2021 08:29:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN AVENUE between ATLANTIC AVENUE and PACIFIC STREET, PACIFIC STREET between FRANKLIN AVENUE and BEDFORD AVENUE",Brooklyn,8,77,Film,Feature,United States of America,"11216, 11238"
+615594,Shooting Permit,12/14/2021 08:00:00 AM,12/14/2021 03:00:00 PM,12/07/2021 07:57:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Talk Show,United States of America,10023
+615590,Shooting Permit,12/10/2021 10:00:00 AM,12/11/2021 01:00:00 AM,12/07/2021 06:49:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+615586,Shooting Permit,12/10/2021 08:00:00 AM,12/11/2021 01:00:00 AM,12/07/2021 05:43:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 24 STREET between 11 AVENUE and 10 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+615585,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 09:00:00 PM,12/07/2021 05:35:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 64 STREET, EAST 61 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 56 STREET and EAST 60 STREET, PARK AVENUE between EAST 57 STREET and EAST 63 STREET, EAST 58 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+615576,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 06:00:00 PM,12/07/2021 04:52:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between LORIMER STREET and LEONARD STREET, LEONARD STREET between METROPOLITAN AVENUE and DEVOE STREET, DEVOE STREET between LORIMER STREET and MANHATTAN AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+615573,Shooting Permit,12/11/2021 07:00:00 AM,12/11/2021 08:00:00 PM,12/07/2021 04:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615572,Shooting Permit,12/10/2021 06:30:00 AM,12/10/2021 08:00:00 PM,12/07/2021 04:28:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 41 AVENUE and QUEENS PLAZA NORTH, 24 STREET between 41 AVENUE and 40 AVENUE, 40 AVENUE between 23 STREET and CRESCENT STREET, 23 STREET between 41 AVENUE and QUEENS PLAZA NORTH, 23 STREET between 40 AVENUE and 41 AVENUE, 41 AVENUE between 23 STREET and 24 STREET, 41 AVENUE between 24 STREET and CRESCENT STREET",Queens,1,114,Television,Episodic series,United States of America,11101
+615568,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 09:00:00 PM,12/07/2021 04:09:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+615569,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 09:00:00 PM,12/07/2021 04:09:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+615563,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 11:00:00 PM,12/07/2021 04:04:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 23 STREET and 22 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+615562,Shooting Permit,12/11/2021 07:00:00 AM,12/11/2021 09:00:00 PM,12/07/2021 04:02:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, WEST 38 STREET between 5 AVENUE and 6 AVENUE, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 37 STREET and EAST 39 STREET, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017, 10018"
+615560,Shooting Permit,12/16/2021 06:00:00 AM,12/17/2021 09:00:00 PM,12/07/2021 03:55:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOMPKINS AVENUE between ELLERY STREET and FLUSHING AVENUE, HARRISON AVENUE between GERRY STREET and BARTLETT STREET, FLUSHING AVENUE between BARTLETT STREET and GERRY STREET, GERRY STREET between HARRISON AVENUE and MARCY AVENUE",Brooklyn,"1, 3","79, 90",Film,Feature,United States of America,11206
+615559,Shooting Permit,12/15/2021 05:00:00 AM,12/15/2021 08:00:00 PM,12/07/2021 03:54:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOMPKINS AVENUE between FLUSHING AVENUE and ELLERY STREET, FLUSHING AVENUE between BARTLETT STREET and GERRY STREET, HARRISON AVENUE between GERRY STREET and BARTLETT STREET, GERRY STREET between HARRISON AVENUE and MARCY AVENUE",Brooklyn,"1, 3","79, 90",Film,Feature,United States of America,11206
+615558,Shooting Permit,12/14/2021 05:00:00 AM,12/14/2021 08:00:00 PM,12/07/2021 03:53:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between BARTLETT STREET and GERRY STREET, TOMPKINS AVENUE between FLUSHING AVENUE and ELLERY STREET, HARRISON AVENUE between BARTLETT STREET and GERRY STREET, GERRY STREET between MARCY AVENUE and HARRISON AVENUE",Brooklyn,"1, 3","79, 90",Film,Feature,United States of America,11206
+615556,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 09:00:00 PM,12/07/2021 03:48:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between MINETTA LANE and MINETTA STREET, 6 AVENUE between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between MACDOUGAL STREET and 6 AVENUE, WEST HOUSTON STREET between 6th Avenue and VARICK STREET, 6 AVENUE between KING STREET and PRINCE STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,"10012, 10014"
+615546,Shooting Permit,12/12/2021 04:00:00 PM,12/12/2021 06:00:00 PM,12/07/2021 03:03:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between WORTH STREET and HOGAN PLACE,Manhattan,1,5,Television,Episodic series,United States of America,10013
+615545,DCAS Prep/Shoot/Wrap Permit,12/12/2021 07:00:00 AM,12/12/2021 06:00:00 PM,12/07/2021 03:00:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between PEARL STREET and WORTH STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, LAFAYETTE STREET between WHITE STREET and LEONARD STREET, HOGAN PLACE between CENTRE STREET and BAXTER STREET, BAXTER STREET between HOGAN PLACE and WORTH STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, WALKER STREET between BROADWAY and 6 AVENUE, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10007, 10013"
+615543,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 10:00:00 PM,12/07/2021 02:51:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+615536,Shooting Permit,12/09/2021 02:30:00 AM,12/09/2021 11:59:00 PM,12/07/2021 02:41:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between WATER STREET and SOUTH STREET, WEST BROADWAY between BEACH STREET and FRANKLIN ST, WHITE STREET between WEST BROADWAY and 6 AVENUE",Manhattan,1,1,Commercial,Commercial,United States of America,"10004, 10005, 10013"
+615530,Shooting Permit,12/17/2021 09:00:00 AM,12/18/2021 01:00:00 AM,12/07/2021 02:33:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+615501,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 06:00:00 PM,12/07/2021 01:35:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET",Manhattan,"1, 10","1, 106",Television,Episodic series,United States of America,"10013, 11419"
+615500,Shooting Permit,12/10/2021 08:00:00 AM,12/10/2021 11:00:00 PM,12/07/2021 01:32:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615491,Shooting Permit,12/11/2021 11:00:00 AM,12/12/2021 04:00:00 AM,12/07/2021 01:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","70 STREET between ASTORIA BLVD NORTH and DITMARS BOULEVARD, 71 STREET between ASTORIA BLVD NORTH and DITMARS BOULEVARD, ASTORIA BLVD NORTH between HAZEN STREET and 73 STREET, DITMARS BOULEVARD between HAZEN STREET and 70 STREET, DITMARS BOULEVARD between 70 STREET and 71 STREET, HAZEN STREET between ASTORIA BLVD NORTH and DITMARS BOULEVARD",Queens,1,114,Commercial,Commercial,United States of America,11370
+615484,Shooting Permit,12/09/2021 12:00:00 PM,12/09/2021 11:59:00 PM,12/07/2021 12:38:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","69 AVENUE between 174 STREET and 175 STREET, FRESH MEADOW LANE between 69 AVENUE and 68 AVENUE",Queens,8,107,Commercial,Commercial,United States of America,"11365, 11367, 11432"
+615482,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 07:00:00 PM,12/07/2021 12:24:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between GRAND STREET and BROOME STREET,Manhattan,2,5,Television,Pilot,United States of America,10013
+615474,DCAS Prep/Shoot/Wrap Permit,12/11/2021 07:00:00 AM,12/12/2021 02:00:00 AM,12/07/2021 11:54:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 148 STREET between 90 AVENUE and HILLSIDE AVENUE, 88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, HILLSIDE AVENUE between 148 STREET and 150 STREET",Queens,"12, 8","103, 107",Television,Episodic series,United States of America,11435
+615465,Shooting Permit,12/11/2021 07:00:00 AM,12/11/2021 07:00:00 PM,12/07/2021 11:29:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","PUTNAM AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE, NOSTRAND AVENUE between PUTNAM AVENUE and MADISON STREET",Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+615455,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 07:00:00 PM,12/07/2021 11:05:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","PUTNAM AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE, NOSTRAND AVENUE between MADISON STREET and PUTNAM AVENUE",Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+615447,Shooting Permit,12/09/2021 06:00:00 AM,12/09/2021 06:00:00 PM,12/07/2021 10:37:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST 3 STREET and BLEEKER STREET, ST MARKS PLACE between 3 AVENUE and 2 AVENUE, 2 AVENUE between ST MARKS PLACE and EAST 7 STREET, EAST 6 STREET between TARAS SHEVCHENKO PLACE and 2 AVENUE",Manhattan,"1, 2, 3","1, 5, 6, 84, 9",Television,Episodic series,United States of America,"10002, 10003, 10011, 10012, 10038, 11201"
+615443,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 01:00:00 PM,12/07/2021 10:23:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between DOYERS STREET and PELL STREET,Manhattan,3,5,Television,Variety,United States of America,"10002, 10013"
+615427,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 10:00:00 PM,12/07/2021 09:53:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615421,Shooting Permit,12/13/2021 04:00:00 AM,12/14/2021 02:00:00 AM,12/07/2021 08:47:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIN STREET and DOCK STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, DOCK STREET between WATER STREET and FRONT STREET, FRONT STREET between DOCK STREET and YORK STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, EVERIT STREET between OLD FULTON STREET and DOUGHTY STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+615420,Shooting Permit,12/12/2021 09:00:00 AM,12/13/2021 02:00:00 AM,12/07/2021 08:24:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between WEST 10 STREET and CHRISTOPHER STREET, BLEECKER STREET between GROVE STREET and CHRISTOPHER STREET, BLEECKER STREET between GROVE STREET and BARROW STREET, CHRISTOPHER STREET between BLEECKER STREET and 7 AVENUE SOUTH, GROVE STREET between BLEECKER STREET and 7 AVENUE SOUTH, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, 7 AVENUE SOUTH between GROVE STREET and BARROW STREET, 7 AVENUE SOUTH between BLEECKER STREET and MORTON STREET, GROVE STREET between BLEECKER STREET and BEDFORD STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+615418,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 10:00:00 PM,12/07/2021 07:47:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615413,Shooting Permit,12/08/2021 08:00:00 PM,12/09/2021 11:00:00 PM,12/07/2021 05:54:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 71 STREET and WEST 72 STREET, BROADWAY between CEDAR STREET and LIBERTY STREET, MONROE STREET between MECHANICS ALLEY and PIKE STREET, 7 AVENUE SOUTH between LEROY STREET and CARMINE STREET",Manhattan,"1, 2, 3, 64, 7","1, 20, 22, 5, 6",Still Photography,Not Applicable,United States of America,"10002, 10005, 10006, 10014, 10023"
+615410,Shooting Permit,12/09/2021 06:00:00 AM,12/09/2021 10:00:00 PM,12/06/2021 11:22:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE, WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,"11206, 11222, 11249"
+615384,Shooting Permit,12/17/2021 01:00:00 PM,12/17/2021 11:00:00 PM,12/06/2021 05:58:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+615381,Shooting Permit,12/14/2021 12:00:00 PM,12/14/2021 11:00:00 PM,12/06/2021 05:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 53 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10019
+615379,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 11:00:00 PM,12/06/2021 05:44:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WITHERS STREET between UNION AVENUE and LORIMER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MEEKER AVE between WITHERS ST and JACKSON ST., MEEKER AVE between JACKSON STREET and UNION AVE, FROST STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between WITHERS STREET and FROST STREET, LORIMER STREET between RICHARDSON STREET and FROST STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+615378,Shooting Permit,12/10/2021 10:00:00 AM,12/11/2021 01:00:00 AM,12/06/2021 05:43:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBUS AVENUE between WEST 75 STREET and WEST 76 STREET, WEST 75 STREET between COLUMBUS AVENUE and CPW, CENTRAL PARK WEST between WEST 76 STREET and WEST 77 STREET, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 72 STREET and WEST 75 STREET, WEST 74 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 72 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, BROADWAY between WEST 79 STREET and WEST 84 STREET, WEST 79 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,"10023, 10024"
+615372,Shooting Permit,12/09/2021 06:30:00 AM,12/09/2021 06:00:00 PM,12/06/2021 05:30:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 97 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 98 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 99 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 99 STREET and WEST 97 STREET, AMSTERDAM AVENUE between WEST 100 STREET and WEST 97 STREET, AMSTERDAM AVENUE between WEST 97 STREET and WEST 96 STREET, BROADWAY between WEST 101 STREET and WEST 100 STREET, WEST 100 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,24,Television,Episodic series,United States of America,10025
+615368,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 11:00:00 PM,12/06/2021 05:23:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615362,Shooting Permit,12/09/2021 06:00:00 AM,12/09/2021 10:00:00 PM,12/06/2021 04:58:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+615357,Shooting Permit,12/10/2021 09:00:00 AM,12/10/2021 11:00:00 PM,12/06/2021 04:51:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 119 STREET and WEST 122 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 116 STREET between LENOX AVENUE and Madison Ave, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, W 124TH ST between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 9","28, 43",Television,Cable-episodic,United States of America,"10026, 10027, 10473"
+615331,Shooting Permit,12/10/2021 12:00:00 PM,12/11/2021 01:30:00 AM,12/06/2021 03:31:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between HURON STREET and INDIA STREET, HURON STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between INDIA STREET and PAIDGE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615329,Shooting Permit,12/09/2021 09:00:00 AM,12/10/2021 01:00:00 AM,12/06/2021 03:25:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 68 STREET and EAST 67 STREET, EAST 68 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 70 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 68 STREET, EAST 69 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 72 STREET between PARK AVENUE and 3 AVENUE, EAST 72 STREET between 3 AVENUE and 2 AVENUE, EAST 70 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 70 STREET between LEXINGTON AVENUE and PARK AVENUE, 3 AVENUE between EAST 72 STREET and EAST 71 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+615326,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 11:00:00 PM,12/06/2021 03:18:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615315,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 11:00:00 PM,12/06/2021 02:48:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 31 STREET between 38 AVENUE and 39 AVENUE, 39 AVENUE between 31 STREET and 29 STREET, 30 STREET between 38 AVENUE and 39 AVENUE, 39 AVENUE between 28 STREET and 29 STREET, 30 STREET between 40 AVENUE and 39 AVENUE",Queens,"1, 2","108, 114",Television,Not Applicable,United States of America,11101
+615312,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 07:00:00 PM,12/06/2021 02:42:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, EAST 61 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10022, 10023, 10065"
+615310,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 10:00:00 PM,12/06/2021 02:33:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+615305,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 10:00:00 PM,12/06/2021 02:17:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+615301,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 07:00:00 PM,12/06/2021 02:04:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between GRAND STREET and BROOME STREET,Manhattan,2,5,Television,Pilot,United States of America,10013
+615298,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 07:00:00 PM,12/06/2021 01:52:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",PUTNAM AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+615291,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 08:00:00 PM,12/06/2021 01:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615277,Shooting Permit,12/08/2021 01:30:00 PM,12/09/2021 01:15:00 AM,12/06/2021 01:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WASHINGTON STREET between GANSEVOORT STREET and LITTLE WEST 12 STREET, 10 AVENUE between GANSEVOORT STREET and WEST 13 STREET, BANK STREET between WASHINGTON STREET and WEST STREET, BETHUNE STREET between WASHINGTON STREET and WEST STREET, WEST STREET between BETHUNE STREET and WEST 11 STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+615264,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 10:00:00 PM,12/06/2021 12:44:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+615263,Shooting Permit,12/09/2021 08:30:00 AM,12/10/2021 12:00:00 AM,12/06/2021 12:44:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 79 STREET and WEST 84 STREET, WEST 79 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 72 STREET and WEST 75 STREET, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 76 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 76 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, COLUMBUS AVENUE between WEST 76 STREET and WEST 77 STREET, COLUMBUS AVENUE between WEST 75 STREET and WEST 77 STREET, WEST 74 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10024"
+615262,Theater Load in and Load Outs,01/09/2022 12:01:00 AM,01/23/2022 11:59:00 PM,12/06/2021 12:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVE between WEST 61 STREET and 63 ST",Manhattan,7,20,Theater,Theater,United States of America,10023
+615260,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 11:00:00 PM,12/06/2021 12:37:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+615254,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 11:00:00 PM,12/06/2021 12:12:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","47 ROAD between 5 STREET and VERNON BOULEVARD, 47 ROAD between CENTER BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 47 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 48 AVENUE and 49 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+615233,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 10:00:00 PM,12/06/2021 11:35:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between EIGHTH AVENUE and ELEVENTH AVENUE, WEST 52 STREET between NINTH AVENUE and TENTH AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,10019
+615229,Shooting Permit,12/10/2021 12:00:00 PM,12/10/2021 11:45:00 PM,12/06/2021 11:24:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 69 STREET between 5 AVENUE and MADDISON AVE",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065"
+615225,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 10:00:00 PM,12/06/2021 11:09:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","ROOSEVELT AVENUE between 58 STREET and 57 STREET, ROOSEVELT AVENUE between 57 STREET and 56 STREET, 57 STREET between ROOSEVELT AVENUE and 43 AVENUE, ROOSEVELT AVENUE between 58 STREET and 59 STREET, 41 AVENUE between 58 STREET and 59 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, WOODSIDE AVENUE between 57 STREET and 58 STREET, 57 STREET between 39 AVENUE and WOODSIDE AVENUE, QUEENS BOULEVARD between 52 STREET and 54 STREET, QUEENS BOULEVARD between 54 STREET and 56 STREET, QUEENS BOULEVARD between 56 STREET and 58 STREET, QUEENS BOULEVARD between 58 STREET and 59 STREET, QUEENS BOULEVARD between 59 STREET and 60 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+615217,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 11:00:00 PM,12/06/2021 10:19:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","KEW GARDENS ROAD between 83 AVENUE and 129 STREET, QUEENS BOULEVARD between 83 AVENUE and VAN WYCK EXPRESSWAY, METROPOLITAN AVENUE between 72 ROAD and 72 AVENUE, METROPOLITAN AVENUE between 72 ROAD and 74 AVENUE, 72 ROAD between METROPOLITAN AVENUE and UNION TURNPIKE, 72 ROAD between METROPOLITAN AVENUE and MANSE STREET, MANSE STREET between 72 ROAD and ASCAN AVENUE, METROPOLITAN AVENUE between 71 DRIVE and 72 AVENUE",Queens,"5, 6, 9","102, 112, 75",Television,Cable-episodic,United States of America,"11375, 11385, 11415, 11421"
+615213,Theater Load in and Load Outs,12/10/2021 05:00:00 AM,12/12/2021 05:00:00 AM,12/06/2021 10:12:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+615209,Theater Load in and Load Outs,12/07/2021 06:00:00 AM,12/09/2021 11:59:00 PM,12/06/2021 10:01:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+615207,Shooting Permit,12/09/2021 11:00:00 AM,12/09/2021 11:59:00 PM,12/06/2021 09:54:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",SULLIVAN STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+615205,Shooting Permit,12/07/2021 08:00:00 AM,12/07/2021 08:00:00 PM,12/06/2021 09:45:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+615204,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 07:00:00 PM,12/06/2021 09:44:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",SULLIVAN STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+615201,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 07:00:00 PM,12/06/2021 09:16:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",24 STREET between 4 AVENUE and 5 AVENUE,Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+615200,Shooting Permit,12/09/2021 11:00:00 AM,12/10/2021 12:00:00 AM,12/06/2021 09:16:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between RUSSELL STREET and MONITOR STREET, MORGAN AVENUE between FROST STREET and MASPETH AVENUE, MASPETH AVENUE between OLIVE STREET and MORGAN AVENUE, MASPETH AVENUE between VANDERVOORT AVENUE and DEAD END",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+615197,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 10:00:00 PM,12/06/2021 08:50:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+615187,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 09:00:00 PM,12/05/2021 10:52:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 44 STREET and EAST 48 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 54 STREET, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+615149,Shooting Permit,12/15/2021 10:00:00 AM,12/16/2021 01:00:00 AM,12/05/2021 03:02:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between CLINTON STREET and RUTGERS SLIP, PIKE SLIP between SOUTH STREET and CHERRY STREET, RUTGERS STREET between CHERRY STREET and MADISON STREET, PIKE STREET between MADISON STREET and MONROE STREET, CHERRY STREET between RUTGERS SLIP and CLINTON STREET",Manhattan,"0, 3","1, 5, 7",Film,Feature,United States of America,10002
+615136,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 07:00:00 PM,12/05/2021 11:56:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Documentary,Not Applicable,United States of America,10023
+615084,Theater Load in and Load Outs,12/09/2021 12:01:00 AM,12/11/2021 06:00:00 AM,12/04/2021 08:02:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+615057,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 11:00:00 PM,12/03/2021 05:37:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 STREET between SKILLMAN AVENUE and 43 AVENUE, SKILLMAN AVENUE between 43 STREET and 45 STREET, 44 STREET between SKILLMAN AVENUE and BARNETT AVENUE, 45 STREET between SKILLMAN AVENUE and 43 AVENUE, 46 STREET between SKILLMAN AVENUE and 39 AVENUE, SKILLMAN AVENUE between 33 STREET and 38 STREET, SKILLMAN AVENUE between 46 STREET and 47 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104"
+615047,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 07:00:00 PM,12/03/2021 04:17:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",TROUTMAN STREET between IRVING AVENUE and WYCKOFF AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11237
+615045,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 10:00:00 PM,12/03/2021 04:15:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615041,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 05:00:00 PM,12/03/2021 03:46:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+615040,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 07:00:00 PM,12/03/2021 03:30:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEW DORP LANE between CLAWSON ST and EDISON ST,Staten Island,2,122,Film,Feature,United States of America,10306
+615032,Shooting Permit,12/07/2021 09:30:00 AM,12/08/2021 12:30:00 AM,12/03/2021 02:45:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOERUM STREET between LORIMER STREET and BROADWAY, UNION AVENUE between MONTROSE AVENUE and HEYWARD STREET, MONTROSE AVENUE between LORIMER STREET and UNION AVENUE, UNION AVENUE between MONTROSE AVENUE and MESEROLE STREET, POWERS STREET between MANHATTAN AVENUE and GRAHAM AVENUE, POWERS STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between POWERS STREET and AINSLIE STREET, GRAHAM AVENUE between GRAND STREET and POWERS STREET, AINSLIE STREET between GRAHAM AVENUE and HUMBOLDT STREET, AINSLIE STREET between GRAHAM AVENUE and MANHATTAN AVENUE, GRAHAM AVENUE between GRAND STREET and MONTROSE AVENUE, MAUJER STREET between GRAHAM AVENUE and HUMBOLDT STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11206, 11211"
+615023,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 10:00:00 PM,12/03/2021 02:21:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 87 STREET and WEST 91 STREET, WEST 87 STREET between WEST END AVENUE and BROADWAY, WEST 88 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 85 STREET and WEST 88 STREET, WEST 85 STREET between WEST END AVENUE and BROADWAY, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+615020,Shooting Permit,12/13/2021 06:00:00 AM,12/14/2021 01:00:00 AM,12/03/2021 02:14:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 44 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 43 STREET between FIFTH AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, PARK AVENUE between EAST 46 STREET and EAST 47 STREET, PARK AVENUE between EAST 48 STREET and EAST 55 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10152, 10167, 10171, 10173, 10177"
+615013,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 11:50:00 PM,12/03/2021 01:49:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, STANTON STREET between BOWERY and CHRYSTIE STREET",Manhattan,3,5,Commercial,Commercial,United States of America,10002
+614999,Shooting Permit,12/14/2021 07:00:00 AM,12/14/2021 11:50:00 PM,12/03/2021 01:29:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, STANTON ST between BOWERY and CHRYSTIE ST",Manhattan,3,5,Commercial,Commercial,United States of America,10002
+614994,Shooting Permit,12/09/2021 10:00:00 AM,12/09/2021 06:00:00 PM,12/03/2021 01:19:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOGART STREET between MEADOW STREET and STAGG STREET,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11206
+614975,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 10:00:00 PM,12/03/2021 12:45:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and THAMES STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+614963,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 10:00:00 PM,12/03/2021 12:16:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between EIGHTH AVENUE and ELEVENTH AVENUE,Manhattan,4,18,Television,Episodic series,United States of America,10019
+614954,Theater Load in and Load Outs,12/07/2021 12:01:00 AM,12/08/2021 06:00:00 AM,12/03/2021 11:49:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+614950,Theater Load in and Load Outs,02/24/2022 12:01:00 AM,02/27/2022 11:59:00 PM,12/03/2021 11:22:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+614945,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 08:00:00 PM,12/03/2021 11:09:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 53 STREET and EAST 52 STREET, EAST 55 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 54 STREET and EAST 53 STREET, THIRD AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10022
+614944,Theater Load in and Load Outs,01/23/2022 12:01:00 AM,01/30/2022 11:59:00 PM,12/03/2021 11:09:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+614939,Shooting Permit,12/08/2021 08:00:00 AM,12/08/2021 11:00:00 PM,12/03/2021 10:57:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+614918,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 11:00:00 PM,12/03/2021 09:44:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","4 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between 5 STREET and 4 STREET, 3 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between 3 STREET and 4 STREET, 7 AVENUE between GARFIELD PLACE and 6 STREET, 8 AVENUE between 3 STREET and 4 STREET, PROSPECT PARK WEST between 1 STREET and 2 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+614913,Shooting Permit,12/09/2021 06:00:00 AM,12/10/2021 02:00:00 AM,12/03/2021 09:13:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 47 ROAD between 5 STREET and VERNON BOULEVARD, 5 STREET between 47 AVENUE and 48 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 47 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 48 AVENUE and 49 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+614904,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 10:00:00 PM,12/03/2021 08:34:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","BELMONT AVENUE between GEORGIA AVENUE and ALABAMA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and PITKIN AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and PITKIN AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, PENNSYLVANIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, PENNSYLVANIA AVENUE between BELMONT AVENUE and PITKIN AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+614902,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 10:00:00 PM,12/03/2021 08:33:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","BELMONT AVENUE between GEORGIA AVENUE and ALABAMA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, GEORGIA AVENUE between BELMONT AVENUE and PITKIN AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and PITKIN AVENUE, BELMONT AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, PENNSYLVANIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, PENNSYLVANIA AVENUE between BELMONT AVENUE and PITKIN AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+614870,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 10:00:00 PM,12/02/2021 06:38:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 28 STREET, 10 AVENUE between WEST 23 STREET and WEST 28 STREET, WEST 24 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,"10001, 10011"
+614860,Shooting Permit,12/09/2021 06:00:00 AM,12/09/2021 11:00:00 PM,12/02/2021 06:03:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Variety,United States of America,"10001, 10011"
+614856,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 07:00:00 PM,12/02/2021 05:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 43 AVENUE and 44 ROAD, 24 STREET between 42 ROAD and 43 AVENUE, 43 AVENUE between 23 STREET and 24 STREET, 43 AVENUE between 24 STREET and CRESCENT STREET, 44 ROAD between 24 STREET and CRESCENT STREET, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, Court Square East between Thompson Avenue and Dead End, Thomson Avenue between Court Square East and Purves Street, Thomson Avenue between JACKSON AVENUE and Court Square East",Queens,2,108,Television,Episodic series,United States of America,11101
+614848,Theater Load in and Load Outs,12/08/2021 12:01:00 AM,12/10/2021 06:00:00 AM,12/02/2021 05:08:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between UNION SQUARE EAST and IRVING PLACE",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+614844,Shooting Permit,12/07/2021 05:00:00 AM,12/07/2021 09:00:00 PM,12/02/2021 04:55:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between WYTHE AVENUE and BEDFORD AVENUE, DRIGGS AVENUE between UNION AVENUE and LORIMER STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, LORIMER STREET between BAYARD STREET and RICHARDSON STREET, BAYARD STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+614831,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 08:00:00 PM,12/02/2021 04:23:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, GROVE STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between GROVE STREET and CHRISTOPHER STREET, BLEECKER STREET between GROVE STREET and BARROW STREET",Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+614830,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 10:00:00 PM,12/02/2021 04:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+614823,Shooting Permit,12/09/2021 07:00:00 AM,12/10/2021 12:00:00 AM,12/02/2021 04:03:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between BROADWAY and CROSBY STREET, EAST HOUSTON STREET between CROSBY STREET and LAFAYETTE STREET, BROADWAY between EAST HOUSTON STREET and PRINCE STREET, BROADWAY between PRINCE STREET and SPRING STREET, SPRING STREET between MERCER STREET and BROADWAY, CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between EAST HOUSTON STREET and JERSEY STREET, LAFAYETTE STREET between JERSEY STREET and PRINCE STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET",Manhattan,2,"1, 5, 9",Television,Cable-episodic,United States of America,10012
+614822,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 11:00:00 PM,12/02/2021 03:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 STREET between 8 AVENUE and PROSPECT PARK WEST, 3 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between 5 STREET and 4 STREET, PROSPECT PARK WEST between 3 STREET and 4 STREET, 2 STREET between PROSPECT PARK WEST and 8 AVENUE, 2 STREET between 8 AVENUE and 7 AVENUE, PROSPECT PARK WEST between 1 STREET and 2 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+614821,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 10:00:00 PM,12/02/2021 03:58:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+614820,Shooting Permit,12/10/2021 08:00:00 AM,12/11/2021 01:00:00 AM,12/02/2021 03:57:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 3 AVENUE and 2 AVENUE, EAST 72 STREET between 2 AVENUE and 1 AVENUE, 3 AVENUE between EAST 72 STREET and EAST 71 STREET, EAST 71 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 71 STREET and EAST 70 STREET, 3 AVENUE between EAST 70 STREET and EAST 69 STREET",Manhattan,8,19,Television,Cable-episodic,United States of America,10021
+614819,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 09:00:00 PM,12/02/2021 03:50:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 AVENUE and 44 DRIVE, 44 DRIVE between 11 STREET and 21 STREET, 44 DRIVE between 10 STREET and 11 STREET, 44 DRIVE between 11 STREET and 10 STREET, 44 ROAD between 11 STREET and 10 STREET, 44 AVENUE between 10 STREET and 9 STREET, 46 AVENUE between VERNON BOULEVARD and FIFTH STREET, 46 ROAD between FIFTH STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, 45 ROAD between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+614816,Shooting Permit,12/08/2021 06:00:00 AM,12/09/2021 02:00:00 AM,12/02/2021 03:44:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, 47 ROAD between 5 STREET and VERNON BOULEVARD, 5 STREET between 47 AVENUE and 48 AVENUE, 47 ROAD between CENTER BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 47 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 48 AVENUE and 49 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+614778,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 10:00:00 PM,12/02/2021 01:40:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Reality,United States of America,10001
+614776,Shooting Permit,12/04/2021 06:00:00 AM,12/04/2021 04:00:00 PM,12/02/2021 01:38:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",70 AVENUE between ONDERDONK AVENUE and FOREST AVENUE,Queens,5,104,Film,Short,United States of America,11385
+614758,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 11:00:00 PM,12/02/2021 01:07:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+614754,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 09:00:00 PM,12/02/2021 12:54:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614745,Shooting Permit,12/09/2021 08:00:00 AM,12/09/2021 11:59:00 AM,12/02/2021 12:34:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between ALBERMARLE ROAD and BEVERLY ROAD, RUGBY ROAD between BEVERLY ROAD and CORTELYOU ROAD, BEVERLY ROAD between STRATFORD ROAD and EAST 17 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,"11218, 11226"
+614744,Shooting Permit,12/08/2021 09:00:00 AM,12/08/2021 11:00:00 PM,12/02/2021 12:34:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between FERRIS STREET and VAN BRUNT STREET, CONOVER STREET between WOLCOTT STREET and SULLIVAN STREET, SULLIVAN STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between CONOVER STREET and FERRIS STREET, COFFEY STREET between CONOVER STREET and FERRIS STREET, FERRIS STREET between VAN DYKE STREET and COFFEY STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, COFFEY STREET between FERRIS STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+614738,Shooting Permit,12/06/2021 03:00:00 AM,12/06/2021 05:00:00 PM,12/02/2021 12:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between BROADWAY and LAFAYETTE STREET,Manhattan,2,5,Still Photography,Not Applicable,United States of America,"10012, 10013"
+614723,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 04:00:00 PM,12/02/2021 12:01:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUYDAM STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between SUYDAM STREET and STARR STREET, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between STARR STREET and SUYDAM STREET",Brooklyn,4,83,Television,Episodic series,United States of America,11237
+614713,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 11:00:00 PM,12/02/2021 11:35:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614712,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 11:00:00 PM,12/02/2021 11:29:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 28 AVENUE and 30 AVENUE, 35 STREET between 30 AVENUE and 31 AVENUE, 30 AVENUE between 34 STREET and 36 STREET, 31 AVENUE between 34 STREET and 37 STREET, STEINWAY STREET between 28 AVENUE and BROADWAY, 35 STREET between 30 AVENUE and 31 AVENUE, 35 STREET between 28 AVENUE and 30 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11103, 11106"
+614711,Shooting Permit,12/05/2021 06:00:00 AM,12/05/2021 04:00:00 PM,12/02/2021 11:22:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between MYRTLE AVENUE and SENECA AVENUE,Queens,5,104,Film,Short,United States of America,11385
+614708,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 10:00:00 PM,12/02/2021 11:05:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+614706,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 10:00:00 PM,12/02/2021 10:59:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+614705,Shooting Permit,12/06/2021 07:30:00 AM,12/06/2021 09:30:00 PM,12/02/2021 10:59:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","OLD BROADWAY between WEST 125 STREET and WEST 126 STREET, WEST 125 STREET between AMSTERDAM AVENUE and WEST 129 STREET, WEST 126 STREET between BROADWAY and OLD BROADWAY, BROADWAY between WEST 125 STREET and WEST 126 STREET, BROADWAY between WEST 129 STREET and WEST 132 STREET, WEST 131 STREET between BROADWAY and OLD BROADWAY, OLD BROADWAY between WEST 131 STREET and WEST 133 STREET",Manhattan,9,26,Television,Episodic series,United States of America,10027
+614701,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 11:00:00 PM,12/02/2021 10:47:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 54 STREET and EAST 53 STREET, THIRD AVENUE between EAST 53 STREET and EAST 52 STREET",Manhattan,6,17,Television,Episodic series,United States of America,10022
+614676,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 09:00:00 PM,12/02/2021 09:19:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+614673,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 09:00:00 PM,12/02/2021 09:03:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+614670,Theater Load in and Load Outs,12/27/2021 12:01:00 AM,12/28/2021 06:00:00 AM,12/02/2021 08:39:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+614668,Shooting Permit,12/06/2021 05:00:00 AM,12/06/2021 08:30:00 PM,12/02/2021 08:35:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between GREAT JONES STREET and EAST 4 STREET, JERSEY STREET between LAFAYETTE STREET and MULBERRY STREET, LAFAYETTE STREET between PRINCE STREET and JERSEY STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between BOWERY and LAFAYETTE STREET, LA GUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, BLEECKER STREET between LA GUARDIA PLACE and MERCER STREET, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between BOWERY and ELIZABETH STREET, LAFAYETTE STREET between JERSEY STREET and EAST HOUSTON STREET",Manhattan,"2, 3","5, 6, 9",Television,Episodic series,United States of America,"10003, 10012"
+614667,Theater Load in and Load Outs,12/06/2021 12:01:00 PM,12/07/2021 11:59:00 PM,12/02/2021 08:25:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+614631,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 06:00:00 PM,12/01/2021 09:02:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHN STREET between SOUTH STREET and FRONT STREET, SOUTH STREET between MAIDEN LANE and FULTON STREET",Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10005, 10038"
+614620,Shooting Permit,12/10/2021 07:00:00 AM,12/10/2021 09:00:00 PM,12/01/2021 07:07:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614619,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 09:00:00 PM,12/01/2021 07:06:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614618,Shooting Permit,12/08/2021 07:00:00 AM,12/08/2021 09:00:00 PM,12/01/2021 07:05:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614617,Shooting Permit,12/08/2021 08:00:00 AM,12/10/2021 06:00:00 PM,12/01/2021 06:37:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE BOULEVARD between WEST 67 STREET and WEST 68 STREET, CENTRAL PARK WEST between WEST 93 STREET and WEST 94 STREET",Manhattan,"64, 7","20, 22, 24",Still Photography,Not Applicable,United States of America,"10024, 10025, 10069"
+614615,Shooting Permit,12/09/2021 07:00:00 AM,12/09/2021 07:00:00 PM,12/01/2021 05:53:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEW DORP LANE between EDISON STREET and CLAWSON STREET,Staten Island,2,122,Film,Feature,United States of America,10306
+614614,Shooting Permit,12/10/2021 01:00:00 PM,12/11/2021 04:00:00 AM,12/01/2021 05:39:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BURNS STREET between 68 AVENUE and 69 AVENUE, CLYDE STREET between 68 AVENUE and 69 AVENUE, WOODHAVEN BOULEVARD between FLEET COURT and 64 ROAD",Queens,"5, 6","104, 112",Film,Feature,United States of America,"11374, 11375"
+614613,Shooting Permit,12/09/2021 08:00:00 AM,12/09/2021 11:00:00 PM,12/01/2021 05:14:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 94 STREET and EAST 96 STREET, MADISON AVENUE between EAST 96 STREET and EAST 95 STREET, MADISON AVENUE between EAST 93 STREET and EAST 95 STREET, EAST 94 STREET between MADISON AVENUE and PARK AVENUE, EAST 95 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,10128
+614611,Shooting Permit,12/06/2021 09:00:00 AM,12/06/2021 11:00:00 PM,12/01/2021 04:51:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIERIOT AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and DEAD END, PATTERSON AVENUE between TAYLOR AVENUE and LELAND AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, BEACH AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, PATTERSON AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, BEACH AVENUE between PATTERSON AVENUE and O'BRIEN AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and TAYLOR AVENUE, Soundview Ave between Leland ave and Underhill ave",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+614609,Shooting Permit,12/03/2021 10:00:00 AM,12/04/2021 01:00:00 AM,12/01/2021 04:34:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 13 STREET and NORTH 15 STREET, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 11 STREET between KENT AVENUE and BERRY STREET, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 9 STREET and NORTH 11 STREET, NORTH 15 STREET between FRANKLIN STREET and WYTHE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+614596,Shooting Permit,12/07/2021 08:00:00 AM,12/07/2021 10:00:00 PM,12/01/2021 03:36:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614591,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 11:00:00 PM,12/01/2021 03:22:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARON BOULEVARD between WAKEFIELD AVENUE and VICTORY BOULEVARD, LATIMER AVENUE between BARON BOULEVARD and DEAD END, LATIMER AVENUE between BARON BOULEVARD and SHENANDOAH AVENUE",Staten Island,2,121,Television,Episodic series,United States of America,10314
+614589,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 09:00:00 PM,12/01/2021 03:20:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614577,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 11:00:00 PM,12/01/2021 02:46:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between 1 AVENUE and SUTTON PLACE, EAST 58 STREET between 1 AVENUE and SUTTON PLACE, EAST 59 STREET between 1 AVENUE and 2 AVENUE, EAST 57 STREET between SUTTON PLACE and 2 AVENUE, EAST 56 STREET between SUTTON PLACE SOUTH and 1 AVENUE",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,10022
+614573,Shooting Permit,12/04/2021 04:30:00 PM,12/05/2021 07:30:00 AM,12/01/2021 02:25:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, NORTH 3 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, METROPOLITAN AVENUE between WYTHE AVENUE and KENT AVENUE",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,11249
+614555,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 11:00:00 PM,12/01/2021 01:52:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NANSEN STREET between 71 AVENUE and 72 AVENUE, NANSEN STREET between 71 AVENUE and 72 AVENUE, 72 AVENUE between METROPOLITAN AVENUE and NANSEN STREET, METROPOLITAN AVENUE between 71 ROAD and 72 AVENUE, METROPOLITAN AVENUE between 72 ROAD and 74 AVENUE, 74 AVENUE between METROPOLITAN AVENUE and UNION TURNPIKE, 72 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, 71 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, 71 ROAD between METROPOLITAN AVENUE and UNION TURNPIKE, UNION TURNPIKE between 71 ROAD and 71 DRIVE, UNION TURNPIKE between 72 DRIVE and 74 AVENUE",Queens,"6, 82","102, 112",Television,Episodic series,United States of America,"11375, 11418"
+614548,Shooting Permit,12/08/2021 08:00:00 AM,12/08/2021 04:00:00 PM,12/01/2021 01:44:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Talk Show,United States of America,10023
+614532,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 09:00:00 PM,12/01/2021 01:31:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+614521,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 11:00:00 PM,12/01/2021 01:18:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 12 STREET and 23 STREET, 13 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 21 STREET between QUEENS PLAZA SOUTH and 44 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+614517,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 10:00:00 PM,12/01/2021 01:08:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 87 STREET and WEST 91 STREET, WEST 87 STREET between WEST END AVENUE and BROADWAY, WEST 88 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 85 STREET and WEST 87 STREET, WEST END AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 87 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 90 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 86 STREET and WEST 87 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+614514,Shooting Permit,12/06/2021 06:30:00 AM,12/06/2021 07:00:00 PM,12/01/2021 12:42:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODHAVEN BOULEVARD between 74 AVENUE and 76 AVENUE, WOODHAVEN BOULEVARD between 73 AVENUE and 76 AVENUE, 74 AVENUE between 88 STREET and 89 STREET, 74 AVENUE between 89 STREET and WOODHAVEN BOULEVARD, 89 STREET between RUTLEDGE AVENUE and 74 AVENUE, 89 STREET between 74 AVENUE and DEAD END, 76 AVENUE between 88 STREET and WOODHAVEN BOULEVARD, 77 AVENUE between 87 STREET and 88 STREET, 88 STREET between RUTLEDGE AVENUE and 77 AVENUE, 75 AVENUE between 88 STREET and WOODHAVEN BOULEVARD",Queens,"5, 6","104, 112",Television,Episodic series,United States of America,11385
+614510,Shooting Permit,12/06/2021 06:30:00 AM,12/06/2021 09:00:00 PM,12/01/2021 12:25:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","88 STREET between RUTLEDGE AVENUE and 77 AVENUE, WOODHAVEN BOULEVARD between 73 AVENUE and 76 AVENUE, WOODHAVEN BOULEVARD between 74 AVENUE and 76 AVENUE, 77 AVENUE between DEAD END and 88 STREET, METROPOLITAN AVENUE between 71 ROAD and 72 ROAD, METROPOLITAN AVENUE between 72 ROAD and 74 AVENUE, 75 AVENUE between 88 STREET and WOODHAVEN BOULEVARD, 74 AVENUE between METROPOLITAN AVENUE and UNION TURNPIKE, 72 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, 71 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, 71 ROAD between METROPOLITAN AVENUE and UNION TURNPIKE, UNION TURNPIKE between 71 ROAD and 71 DRIVE, UNION TURNPIKE between 72 DRIVE and 74 AVENUE, NANSEN STREET between 71 AVENUE and 72 AVENUE",Queens,"5, 6, 82","102, 104, 112",Television,Episodic series,United States of America,"11375, 11385, 11418"
+614500,Shooting Permit,12/08/2021 08:00:00 AM,12/09/2021 12:00:00 AM,12/01/2021 12:00:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 13 STREET between 7 AVENUE and 6 AVENUE, WEST 13 STREET between 6 AVENUE and 5 AVENUE, GREENWICH AVENUE between WEST 12 STREET and WEST 11 STREET, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET",Manhattan,2,6,Television,Cable-episodic,United States of America,"10011, 10014"
+614499,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 10:00:00 PM,12/01/2021 12:00:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614490,Shooting Permit,12/17/2021 06:00:00 AM,12/17/2021 08:00:00 PM,12/01/2021 11:35:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614487,Shooting Permit,12/15/2021 06:00:00 AM,12/15/2021 08:00:00 PM,12/01/2021 11:25:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614482,Shooting Permit,12/14/2021 06:00:00 AM,12/14/2021 08:00:00 PM,12/01/2021 11:13:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614478,Shooting Permit,12/13/2021 06:00:00 AM,12/13/2021 08:00:00 PM,12/01/2021 11:07:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614471,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 10:00:00 PM,12/01/2021 10:43:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 78 STREET and EAST 79 STREET, 5 AVENUE between EAST 78 STREET and EAST 77 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 78 STREET and EAST 77 STREET, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 77 STREET and EAST 75 STREET, EAST 76 STREET between 5 AVENUE and PARK AVENUE, PARK AVENUE between EAST 76 STREET and EAST 75 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 74 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+614470,Shooting Permit,12/11/2021 06:00:00 AM,12/11/2021 08:00:00 PM,12/01/2021 10:42:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614465,Shooting Permit,12/10/2021 06:00:00 AM,12/10/2021 08:00:00 PM,12/01/2021 10:25:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+614464,Theater Load in and Load Outs,12/26/2021 12:01:00 AM,01/02/2022 11:59:00 PM,12/01/2021 10:24:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+614460,Shooting Permit,12/03/2021 01:00:00 PM,12/04/2021 01:00:00 AM,12/01/2021 10:18:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTROSE AVENUE between BUSHWICK AVENUE and HUMBOLDT STREET, BUSHWICK AVENUE between MESEROLE STREET and MONTROSE AVENUE, MONTROSE AVENUE between BUSHWICK AVENUE and BUSHWICK PLACE, BUSHWICK AVENUE between MESEROLE STREET and SCHOLES STREET, MESEROLE STREET between BUSHWICK AVENUE and BUSHWICK PLACE, MESEROLE STREET between BUSHWICK AVENUE and HUMBOLDT STREET, SCHOLES STREET between BUSHWICK AVENUE and HUMBOLDT STREET, HUMBOLDT STREET between MONTROSE AVENUE and SCHOLES STREET, SCHOLES STREET between HUMBOLDT STREET and GRAHAM AVENUE, GRAHAM AVENUE between GRAND STREET and MONTROSE AVENUE, MAUJER STREET between GRAHAM AVENUE and HUMBOLDT STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+614457,Shooting Permit,12/03/2021 05:30:00 PM,12/04/2021 05:30:00 AM,12/01/2021 10:10:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between GREENWICH STREET and WASHINGTON STREET, BEDFORD STREET between COMMERCE STREET and MORTON STREET",Manhattan,2,6,Film,Feature,United States of America,10014
+614454,Shooting Permit,12/03/2021 06:00:00 AM,12/04/2021 12:00:00 AM,12/01/2021 10:09:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between FIFTH STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, VERNON BOULEVARD between 45 AVENUE and 46 AVENUE, 46 AVENUE between VERNON BOULEVARD and FIFTH STREET, 45 ROAD between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+614452,Theater Load in and Load Outs,12/25/2021 12:01:00 AM,01/08/2022 11:59:00 PM,12/01/2021 10:06:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 61 STREET and WEST 64 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+614451,Shooting Permit,12/03/2021 04:30:00 PM,12/04/2021 07:30:00 AM,12/01/2021 10:02:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, NORTH 3 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 3 STREET between WYTHE AVENUE and BERRY STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,11249
+614443,Shooting Permit,12/02/2021 10:00:00 AM,12/02/2021 11:59:00 PM,12/01/2021 09:06:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+614442,Shooting Permit,12/03/2021 06:00:00 AM,12/03/2021 10:00:00 PM,12/01/2021 09:04:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERONA STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between VERONA STREET and SULLIVAN STREET, VISITATION PLACE between VAN BRUNT STREET and RICHARDS STREET, VERONA STREET between RICHARDS STREET and DWIGHT STREET, DWIGHT STREET between VERONA STREET and KING STREET, RICHARDS STREET between VERONA STREET and DELAVAN STREET",Brooklyn,"4, 6","10, 76",Television,Episodic series,United States of America,"10011, 11231"
+614437,Theater Load in and Load Outs,12/05/2021 06:00:00 AM,12/06/2021 11:00:00 PM,12/01/2021 08:47:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+614434,Theater Load in and Load Outs,12/03/2021 06:00:00 AM,12/04/2021 11:00:00 PM,12/01/2021 08:30:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+614394,Shooting Permit,12/14/2021 10:00:00 AM,12/15/2021 02:00:00 AM,11/30/2021 11:31:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 39 STREET and WEST 40 STREET, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 39 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+614393,Shooting Permit,12/13/2021 07:00:00 AM,12/13/2021 08:00:00 PM,11/30/2021 11:30:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 5 AVENUE and 6 AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 39 STREET and WEST 40 STREET, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, 5 AVENUE between EAST 88 STREET and EAST 89 STREET, 5 AVENUE between EAST 88 STREET and EAST 89 STREET, 5 AVENUE between EAST 87 STREET and EAST 88 STREET, 5 AVENUE between EAST 87 STREET and EAST 86 STREET, 5 AVENUE between EAST 22 STREET and EAST 23 STREET, 5 AVENUE between EAST 9 STREET and EAST 10 STREET, WEST 16 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"2, 4, 5, 64, 8","10, 13, 14, 19, 22, 6",Film,Feature,United States of America,"10001, 10003, 10010, 10011, 10018, 10024, 10028, 10036, 10128"
+614375,Shooting Permit,12/03/2021 11:00:00 AM,12/04/2021 01:00:00 AM,11/30/2021 09:33:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between ADELPHI STREET and WAVERLY AVENUE, CLERMONT AVENUE between PARK AVENUE and MYRTLE AVENUE, CLINTON AVENUE between PARK AVENUE and MYRTLE AVENUE, VANDERBILT AVENUE between PARK AVENUE and MYRTLE AVENUE, VANDERBILT AVENUE between LAFAYETTE AVENUE and DEKALB AVENUE",Brooklyn,"2, 3","79, 81, 88",Television,Episodic series,United States of America,"11205, 11206"
+614363,Theater Load in and Load Outs,12/05/2021 12:00:00 PM,12/05/2021 11:59:00 PM,11/30/2021 07:21:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+614362,Theater Load in and Load Outs,12/03/2021 12:01:00 AM,12/03/2021 11:59:00 PM,11/30/2021 07:21:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+614341,Shooting Permit,12/10/2021 09:00:00 AM,12/11/2021 01:00:00 AM,11/30/2021 05:32:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET",Manhattan,5,14,Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+614340,Shooting Permit,12/09/2021 07:30:00 AM,12/09/2021 11:30:00 PM,11/30/2021 05:32:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET",Manhattan,5,14,Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+614333,Shooting Permit,12/07/2021 07:00:00 AM,12/07/2021 11:00:00 PM,11/30/2021 04:59:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+614320,Shooting Permit,12/02/2021 08:00:00 AM,12/03/2021 12:00:00 AM,11/30/2021 04:38:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, JOHN STREET between WATER STREET and PEARL STREET, JOHN STREET between SOUTH STREET and FRONT STREET, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038"
+614306,Shooting Permit,12/19/2021 05:00:00 AM,12/19/2021 12:00:00 PM,11/30/2021 03:51:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614305,Shooting Permit,12/18/2021 05:00:00 AM,12/18/2021 12:00:00 PM,11/30/2021 03:48:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614303,Shooting Permit,12/12/2021 05:00:00 AM,12/12/2021 12:00:00 PM,11/30/2021 03:44:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614300,Shooting Permit,12/06/2021 02:00:00 PM,12/06/2021 11:00:00 PM,11/30/2021 03:40:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614287,Shooting Permit,12/03/2021 11:00:00 AM,12/04/2021 02:00:00 AM,11/30/2021 03:19:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE, OCEAN AVENUE between GLENWOOD ROAD and FARRAGUT ROAD, KENMORE PLACE between FOSTER AVENUE and FARRAGUT ROAD",Brooklyn,14,70,Film,Feature,United States of America,"11210, 11230"
+614278,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 11:00:00 PM,11/30/2021 03:10:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+614266,Shooting Permit,12/11/2021 05:00:00 AM,12/11/2021 12:00:00 PM,11/30/2021 03:00:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614247,Shooting Permit,12/03/2021 07:30:00 AM,12/03/2021 10:00:00 PM,11/30/2021 02:31:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","109 STREET between MYRTLE AVENUE and 85 AVENUE, 85 AVENUE between 108 STREET and 109 STREET, MYRTLE AVENUE between FREEDOM DRIVE and PARK LN SOUTH",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+614240,Shooting Permit,12/02/2021 05:00:00 AM,12/02/2021 09:00:00 PM,11/30/2021 02:08:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 10 STREET and EAST 9 STREET",Manhattan,3,9,Film,Feature,United States of America,10009
+614239,Shooting Permit,12/06/2021 05:00:00 AM,12/06/2021 12:00:00 PM,11/30/2021 01:58:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614237,Shooting Permit,12/05/2021 05:00:00 AM,12/05/2021 12:00:00 PM,11/30/2021 01:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614236,Shooting Permit,12/04/2021 05:00:00 AM,12/04/2021 12:00:00 PM,11/30/2021 01:52:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+614235,Shooting Permit,12/08/2021 05:00:00 AM,12/08/2021 08:00:00 PM,11/30/2021 01:48:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILSON AVENUE between GEORGE STREET and NOLL STREET, WILSON AVENUE between FLUSHING AVENUE and NOLL STREET, FLUSHING AVENUE between WILSON AVENUE and FORREST STREET, FLUSHING AVENUE between BOGART STREET and MORGAN AVENUE, FLUSHING AVENUE between BOGART STREET and EVERGREEN AVENUE, FLUSHING AVENUE between EVERGREEN AVENUE and STANWIX STREET, NOLL STREET between WILSON AVENUE and CENTRAL AVENUE",Brooklyn,"1, 4","83, 90",Film,Feature,United States of America,"11206, 11237"
+614229,Theater Load in and Load Outs,12/30/2021 12:01:00 AM,01/02/2022 06:00:00 AM,11/30/2021 01:24:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+614225,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 03:00:00 PM,11/30/2021 01:03:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 25 STREET and EAST 29 STREET, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 27 STREET between 5 AVENUE and MADISON AVENUE, EAST 26 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 25 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 24 STREET between MADISON AVENUE and PARK AVENUE SOUTH, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10010, 10016"
+614223,Theater Load in and Load Outs,12/31/2021 12:01:00 AM,01/01/2022 06:00:00 AM,11/30/2021 12:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+614222,Shooting Permit,12/03/2021 10:00:00 AM,12/04/2021 01:00:00 AM,11/30/2021 12:55:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 119 STREET and WEST 122 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 116 STREET and WEST 119 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, 2 AVENUE between EAST 97 STREET and EAST 100 STREET, EAST 99 STREET between 2 AVENUE and 3 AVENUE, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 97 STREET between 2 AVENUE and 3 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"10, 11","23, 28",Television,Cable-episodic,United States of America,"10026, 10027, 10029"
+614211,Theater Load in and Load Outs,12/30/2021 12:01:00 AM,12/30/2021 11:59:00 PM,11/30/2021 12:08:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+614208,Shooting Permit,12/11/2021 06:00:00 AM,12/11/2021 06:00:00 PM,11/30/2021 11:57:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 52 STREET and EAST 54 STREET,Manhattan,5,18,Commercial,Commercial,United States of America,"10022, 10152"
+614192,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 10:00:00 PM,11/30/2021 11:21:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+614191,Shooting Permit,12/02/2021 06:30:00 AM,12/02/2021 10:00:00 PM,11/30/2021 11:20:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+614182,Theater Load in and Load Outs,12/30/2021 12:01:00 AM,01/03/2022 11:59:00 PM,11/30/2021 10:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+614180,Theater Load in and Load Outs,12/15/2021 06:00:00 AM,12/18/2021 11:59:00 PM,11/30/2021 10:51:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between IRVING PLACE and UNION SQUARE EAST",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+614171,Shooting Permit,12/03/2021 06:00:00 PM,12/04/2021 06:00:00 AM,11/30/2021 10:28:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between 59 STREET and 61 STREET,Queens,"1, 2","108, 114",Film,Feature,United States of America,"11101, 11104, 11377"
+614168,Shooting Permit,12/04/2021 08:00:00 AM,12/04/2021 10:00:00 PM,11/30/2021 10:10:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+614164,Shooting Permit,12/03/2021 08:00:00 AM,12/03/2021 11:00:00 PM,11/30/2021 09:59:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+614163,Shooting Permit,12/02/2021 08:00:00 AM,12/02/2021 11:00:00 PM,11/30/2021 09:59:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+614157,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 09:00:00 PM,11/30/2021 09:45:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+614152,Shooting Permit,12/06/2021 07:00:00 AM,12/06/2021 11:00:00 PM,11/30/2021 09:34:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 54 STREET and EAST 53 STREET, THIRD AVENUE between EAST 53 STREET and EAST 52 STREET",Manhattan,6,17,Television,Episodic series,United States of America,10022
+614146,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 10:00:00 PM,11/30/2021 09:19:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between IRVING AVE and WYCKOFF AVE, IRVING AVE between ELDERT ST and COVERT ST, DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+614144,Shooting Permit,12/12/2021 06:00:00 AM,12/12/2021 08:00:00 PM,11/30/2021 09:10:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 14 STREET and EAST 13 STREET, EAST 13 STREET between SECOND AVENUE and THIRD AVENUE",Manhattan,3,9,Still Photography,Not Applicable,United States of America,10003
+614140,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 10:00:00 PM,11/30/2021 08:55:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+614138,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 07:00:00 PM,11/30/2021 08:44:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","GEM STREET between MESEROLE AVENUE and NORTH 15 STREET, NORTH 15 STREET between FRANKLIN STREET and WYTHE AVENUE, WYTHE AVENUE between NORTH 15 STREET and NORTH 13 STREET, WYTHE AVENUE between BANKER STREET and NORTH 15 STREET, WEST 15 STREET between SURF AVENUE and BOARDWALK, WEST 10 STREET between SURF AVENUE and BOARDWALK",Brooklyn,"1, 13","114, 60, 94",WEB,Not Applicable,United States of America,"11105, 11211, 11222, 11224, 11249"
+614137,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 10:00:00 PM,11/30/2021 08:41:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+614115,Shooting Permit,12/05/2021 06:00:00 AM,12/05/2021 07:00:00 PM,11/29/2021 11:50:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",PINE STREET between WILLIAM STREET and BROADWAY,Manhattan,1,1,Commercial,Promo,United States of America,10005
+614113,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 10:00:00 PM,11/29/2021 11:26:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+614061,Theater Load in and Load Outs,12/13/2021 12:01:00 AM,12/14/2021 06:00:00 AM,11/29/2021 05:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+614058,Shooting Permit,12/03/2021 12:00:00 PM,12/04/2021 01:00:00 AM,11/29/2021 04:51:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 90 STREET and EAST 96 STREET, EAST 96 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 96 STREET and EAST 93 STREET, EAST 94 STREET between MADISON AVENUE and 5 AVENUE, EAST 95 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,10128
+614035,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 09:00:00 PM,11/29/2021 03:40:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",41 AVENUE between CRESCENT STREET and 23 STREET,Queens,1,114,Commercial,Commercial,United States of America,11101
+614016,Theater Load in and Load Outs,12/10/2021 12:01:00 AM,12/10/2021 11:59:00 PM,11/29/2021 02:07:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+614012,Theater Load in and Load Outs,12/11/2021 12:01:00 AM,12/12/2021 06:00:00 AM,11/29/2021 02:02:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+614011,Shooting Permit,12/02/2021 06:30:00 AM,12/02/2021 09:00:00 PM,11/29/2021 02:00:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 STREET between PROSPECT PARK WEST and 8 AVENUE, MONTGOMERY PLACE between PROSPECT PARK WEST and 8 AVENUE, 8 AVENUE between GARFIELD PLACE and 1 STREET, PROSPECT PARK WEST between PLAZA ST WEST and PRESIDENT STREET, PROSPECT PARK WEST between PRESIDENT STREET and 1 STREET, 7 AVENUE between UNION STREET and PRESIDENT STREET, 7 AVENUE between PRESIDENT STREET and GARFIELD PLACE, GARFIELD PLACE between 6 AVENUE and 7 AVENUE",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+614000,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 11:00:00 PM,11/29/2021 01:25:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613998,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 09:00:00 PM,11/29/2021 01:24:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 11 AVENUE and 10 AVENUE, WEST END AVENUE between WEST 60 STREET and WEST 59 STREET, WEST 58 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 59 STREET and WEST 58 STREET, 11 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"4, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+613991,Shooting Permit,11/30/2021 06:00:00 AM,12/01/2021 01:00:00 AM,11/29/2021 01:19:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613989,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 11:00:00 PM,11/29/2021 01:17:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613964,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 07:00:00 PM,11/29/2021 12:38:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between BROADWAY and 8 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 53 STREET between 7 AVENUE and 6 AVENUE, BROADWAY between WEST 51 STREET and WEST 53 STREET, 7 AVENUE between WEST 51 STREET and WEST 52 STREET, PARK AVENUE between EAST 50 STREET and EAST 58 STREET, EAST 55 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022, 10152"
+613945,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 09:00:00 PM,11/29/2021 11:58:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Commercial,Commercial,United States of America,10036
+613938,Shooting Permit,12/04/2021 06:00:00 AM,12/04/2021 07:00:00 PM,11/29/2021 11:53:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and BROADWAY, EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET",Manhattan,1,1,Commercial,Promo,United States of America,10005
+613937,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 06:00:00 PM,11/29/2021 11:52:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","80 STREET between JUNIPER BLVD NORTH and JUNIPER BLVD SOUTH, JUNIPER BLVD SOUTH between 78 STREET and 80 STREET, JUNIPER BLVD SOUTH between 81 STREET and DRY HARBOR ROAD, 81 STREET between PENELOPE AVENUE and JUNIPER BLVD SOUTH, JUNIPER BLVD NORTH between 77 STREET and 77 PLACE",Queens,5,104,Television,Children,United States of America,11379
+613916,Shooting Permit,12/02/2021 08:00:00 AM,12/02/2021 10:00:00 PM,11/29/2021 10:48:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD, OCEAN AVENUE between GLENWOOD ROAD and AVENUE H",Brooklyn,14,70,Film,Feature,United States of America,11230
+613910,Shooting Permit,12/01/2021 01:00:00 PM,12/01/2021 05:00:00 PM,11/29/2021 10:27:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between CHARLES STREET and PERRY STREET, SULLIVAN STREET between BLEECKER STREET and WEST 3 STREET",Manhattan,2,6,Music Video,Signed Artist,United States of America,"10011, 10012, 10014"
+613897,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 09:00:00 PM,11/29/2021 09:04:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and DOUGHTY STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between FRONT STREET and ELIZABETH PLACE, WATER STREET between DOCK STREET and OLD FULTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+613893,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 09:00:00 PM,11/29/2021 08:38:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, SMITH STREET between HALLECK STREET and BAY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+613886,Theater Load in and Load Outs,12/20/2021 12:01:00 AM,12/21/2021 06:00:00 AM,11/29/2021 03:22:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613823,Shooting Permit,12/01/2021 09:00:00 AM,12/01/2021 07:00:00 PM,11/28/2021 12:33:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between 82 STREET and 84 STREET,Brooklyn,10,68,Still Photography,Not Applicable,United States of America,11228
+613748,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 06:00:00 PM,11/27/2021 01:51:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARION STREET between MALCOLM X BOULEVARD and PATCHEN AVENUE,Brooklyn,3,81,Student,Student Film,United States of America,11233
+613676,Theater Load in and Load Outs,12/29/2021 12:01:00 AM,01/02/2022 06:00:00 AM,11/26/2021 03:43:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+613667,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 05:00:00 PM,11/26/2021 02:37:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 75 STREET and EAST 76 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10075"
+613663,Shooting Permit,12/02/2021 10:00:00 AM,12/02/2021 10:00:00 PM,11/26/2021 01:42:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 68 STREET between BROADWAY and COLUMBUS AVENUE, WEST 67 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,7,20,Commercial,Promo,United States of America,10023
+613651,Shooting Permit,12/03/2021 03:00:00 PM,12/03/2021 08:00:00 PM,11/26/2021 01:00:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Student,Student Film,United States of America,11217
+613604,Shooting Permit,12/02/2021 12:00:00 PM,12/03/2021 02:00:00 AM,11/26/2021 10:27:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and NORTH MOORE STREET, GREENWICH STREET between READE STREET and DUANE STREET, GREENWICH STREET between DUANE STREET and HARRISON STREET, READE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10007, 10013, 10282"
+613578,Shooting Permit,12/03/2021 06:00:00 AM,12/03/2021 11:00:00 PM,11/25/2021 09:04:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, HARRISON PLACE between BOGART STREET and KNICKERBOCKER AVENUE, MORGAN AVENUE between HARRISON PLACE and GRATTAN STREET, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,"11206, 11211, 11237"
+613577,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 11:00:00 PM,11/25/2021 09:04:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 22 STREET and EAST 21 STREET, EAST 22 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 21 STREET between THIRD AVENUE and PARK AVENUE SOUTH, GRAMERCY PARK WEST between EAST 21 STREET and EAST 20 STREET, EAST 21 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 21 STREET, EAST 22 STREET between THIRD AVENUE and SECOND AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+613576,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 10:00:00 PM,11/25/2021 09:04:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 58 STREET between SECOND AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 59 STREET and EAST 60 STREET, EAST 62 STREET between SECOND AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET",Manhattan,"6, 8","17, 19",Television,Episodic series,United States of America,"10022, 10065"
+613570,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 09:00:00 PM,11/24/2021 08:07:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNIVERSITY PLACE between EAST 8 STREET and EAST 9 STREET, 5 AVENUE between EAST 10 STREET and EAST 11 STREET, WEST 10 STREET between 5 AVENUE and 6 AVENUE, LAFAYETTE STREET between BLEECKER STREET and EAST 4 STREET, BROADWAY between BLEECKER STREET and WEST 4 STREET, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, WEST 9 STREET between 5 AVENUE and 6 AVENUE",Manhattan,2,"6, 9",Television,Episodic series,United States of America,"10003, 10011, 10012"
+613562,Theater Load in and Load Outs,12/01/2021 12:01:00 AM,12/02/2021 06:00:00 AM,11/24/2021 04:41:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 AVENUE between WEST 27 STREET and WEST 28 STREET,Manhattan,4,10,Theater,Theater,United States of America,10001
+613559,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 11:00:00 PM,11/24/2021 04:28:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613558,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 11:00:00 PM,11/24/2021 04:19:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613557,Shooting Permit,11/27/2021 07:00:00 AM,11/27/2021 11:00:00 PM,11/24/2021 04:19:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK ROW between BEEKMAN STREET and ANN STREET, NASSAU STREET between BEEKMAN STREET and SPRUCE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10038
+613556,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 10:00:00 PM,11/24/2021 04:12:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613555,Shooting Permit,12/03/2021 06:00:00 AM,12/03/2021 07:00:00 PM,11/24/2021 04:09:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",DELANCEY STREET between LEWIS STREET and FDR DRIVE,Manhattan,3,"7, 9",Still Photography,Not Applicable,United States of America,10002
+613541,Shooting Permit,12/01/2021 12:00:00 PM,12/02/2021 03:00:00 AM,11/24/2021 03:27:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","153 STREET between 72 ROAD and 73 AVENUE, 153 STREET between 72 ROAD and 72 DRIVE, 72ND RD between Kissena Blvd and Kissena Blvd, 73RD AVE between 150 STREET and KISSENA BOULEVARD, 72 DRIVE between 150 STREET and 153 STREET, KISSENA BOULEVARD between 73 AVENUE and 72 ROAD, MAIN STREET between 75 AVENUE and 76 AVENUE, VLEIGH PLACE between 75 AVENUE and 76 AVENUE, 104 STREET between 45 AVENUE and 46 AVENUE, 104 STREET between 46 AVENUE and 47 AVENUE, 46th Ave between 104 STREET and 108th Ave, 46 AVENUE between 102 STREET and 104 STREET, CORONA AVENUE between 94 STREET and JUNCTION BOULEVARD, 104 STREET between 42 AVENUE and 44 AVENUE",Queens,"11, 4, 8, 81","107, 110, 111",Television,Cable-episodic,United States of America,"11364, 11366, 11367, 11368, 11373"
+613540,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 12:00:00 PM,11/24/2021 03:24:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+613538,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 11:00:00 PM,11/24/2021 03:12:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+613536,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 10:00:00 PM,11/24/2021 03:11:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+613535,Shooting Permit,12/02/2021 06:30:00 AM,12/02/2021 08:00:00 PM,11/24/2021 03:07:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 86 STREET and WEST 85 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, BROADWAY between WEST 87 STREET and WEST 86 STREET, AMSTERDAM AVENUE between WEST 87 STREET and WEST 86 STREET, WEST 87 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 88 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 91 STREET and WEST 87 STREET, WEST 62 STREET between BROADWAY and CENTRAL PARK WEST, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 63 STREET and WEST 62 STREET, WEST 63 STREET between BROADWAY and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 65 STREET and WEST 64 STREET, WEST 65 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, AMSTERDAM AVENUE between WEST 69 STREET and WEST 67 STREET, WEST 68 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 70 STREET and WEST 67 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 64 STREET and WEST 65 STREET, WEST 28 STREET between 12 AVENUE and 11 AVENUE, WEST 27 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 26 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 26 STREET",Manhattan,"4, 64, 7","10, 20, 22, 24",Television,Cable-episodic,United States of America,"10001, 10023, 10024"
+613532,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 07:00:00 PM,11/24/2021 02:51:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between ST CLAIR PLACE and WEST 120 STREET, OLD FULTON STREET between FRONT STREET and WATER STREET",Manhattan,"2, 9","26, 84",Commercial,Commercial,United States of America,"10027, 11201"
+613521,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 07:00:00 PM,11/24/2021 01:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",DELANCEY STREET SOUTH ROADWAY between LEWIS STREET and FDR DRIVE,Manhattan,3,"7, 9",Still Photography,Not Applicable,United States of America,10002
+613519,Shooting Permit,11/26/2021 07:00:00 AM,11/26/2021 11:00:00 PM,11/24/2021 01:45:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK ROW between ANN STREET and BEEKMAN STREET, NASSAU STREET between BEEKMAN STREET and SPRUCE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10038
+613498,Shooting Permit,12/10/2021 08:00:00 AM,12/11/2021 12:01:00 AM,11/24/2021 01:01:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+613496,Shooting Permit,12/09/2021 08:00:00 AM,12/10/2021 12:01:00 AM,11/24/2021 12:58:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+613491,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 08:00:00 PM,11/24/2021 12:54:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, WEST 42 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,14,Television,Cable-episodic,United States of America,10036
+613485,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 09:00:00 PM,11/24/2021 12:31:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613480,Shooting Permit,11/30/2021 08:00:00 AM,11/30/2021 11:59:00 PM,11/24/2021 11:54:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 71 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, 3 AVENUE between EAST 69 STREET and EAST 72 STREET, EAST 65 STREET between 2 AVENUE and 3 AVENUE, EAST 66 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 64 STREET and EAST 65 STREET, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE, WEST STREET between BANK STREET and JANE STREET, WEST 12 STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between BETHUNE STREET and JANE STREET, WEST 14 STREET between 9th Ave and 8 AVENUE, W 14th St between WASHINGTON STREET and 9th Ave, WEST 14 STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, EAST 70 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"2, 4, 8","10, 19, 6",Television,Cable-episodic,United States of America,"10014, 10021, 10065"
+613476,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 08:30:00 PM,11/24/2021 11:41:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","58 STREET between 31 AVENUE and 32 AVENUE, 31 AVENUE between 58 STREET and 68 STREET, 31 AVENUE between 68 STREET and 69 STREET, 69 STREET between 31 AVENUE and 32 AVENUE, 32 AVENUE between 57 STREET and 58 STREET, 32 AVENUE between 58 STREET and 60 STREET, 32 AVENUE between 60 STREET and 61 STREET, 60 STREET between 32 AVENUE and NORTHERN BOULEVARD",Queens,"1, 3","114, 115",Television,Episodic series,United States of America,11377
+613468,Shooting Permit,12/01/2021 10:00:00 AM,12/02/2021 02:00:00 AM,11/24/2021 11:14:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WATER STREET between DOCK STREET and MAIN STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+613461,Shooting Permit,12/01/2021 08:00:00 AM,12/01/2021 09:30:00 PM,11/24/2021 10:40:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","PENNSYLVANIA AVENUE between BELMONT AVENUE and PITKIN AVENUE, PENNSYLVANIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and PITKIN AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and PITKIN AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between ALABAMA AVENUE and PENNSYLVANIA AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+613460,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 09:00:00 PM,11/24/2021 10:39:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 43 STREET and 44 STREET, 2 AVENUE between 44 STREET and 45 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+613459,Shooting Permit,12/02/2021 08:00:00 AM,12/02/2021 10:00:00 PM,11/24/2021 10:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","STEINWAY STREET between 28 AVENUE and 31 AVENUE, 31 AVENUE between STEINWAY AVENUE and 41 STREET, 36 STREET between 30 AVENUE and 31 AVENUE, 37 STREET between 30 AVENUE and 31 AVENUE, 30 AVENUE between 35 STREET and 36 STREET, 35 STREET between 28 AVENUE and 30 AVENUE, 35 STREET between 30 AVENUE and 31 AVENUE",Queens,1,114,Television,Episodic series,United States of America,11103
+613454,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 11:00:00 PM,11/24/2021 10:26:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613451,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 07:00:00 PM,11/24/2021 10:11:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",MOTT STREET between BROOME STREET and KENMARE STREET,Manhattan,2,5,Commercial,Commercial,United States of America,"10012, 10013"
+613444,Shooting Permit,12/01/2021 05:00:00 AM,12/01/2021 09:00:00 AM,11/24/2021 08:47:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Television,Morning Show,United States of America,10036
+613441,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 09:00:00 PM,11/24/2021 08:18:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613440,Shooting Permit,12/04/2021 04:00:00 PM,12/04/2021 11:00:00 PM,11/24/2021 04:25:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,"2, 8","77, 78, 88",Student,Student Film,United States of America,"11216, 11217"
+613437,DCAS Prep/Shoot/Wrap Permit,12/08/2021 12:00:00 PM,12/08/2021 11:00:00 PM,11/23/2021 09:38:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",THOMPSON AVENUE between JACKSON AVENUE and 44 DRIVE,Queens,2,108,Television,Episodic series,United States of America,11101
+613428,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 11:00:00 PM,11/23/2021 07:49:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613426,Theater Load in and Load Outs,11/27/2021 12:01:00 AM,11/28/2021 06:00:00 AM,11/23/2021 05:17:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Theater,Theater,United States of America,11249
+613420,Shooting Permit,12/03/2021 07:00:00 AM,12/03/2021 09:00:00 PM,11/23/2021 04:32:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613419,Shooting Permit,12/02/2021 07:00:00 AM,12/02/2021 09:00:00 PM,11/23/2021 04:32:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613417,Shooting Permit,12/03/2021 12:00:00 PM,12/03/2021 11:30:00 PM,11/23/2021 04:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 41 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,"10018, 10036"
+613411,Shooting Permit,12/02/2021 01:00:00 PM,12/02/2021 10:30:00 PM,11/23/2021 04:11:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+613407,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 09:00:00 PM,11/23/2021 04:01:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 30 AVENUE and 30 ROAD, 21 STREET between 30 ROAD and 30 DRIVE, 21 STREET between 30 DRIVE and 31 AVENUE, 30 ROAD between 14 STREET and 21 STREET, 30 ROAD between 21 STREET and 23 STREET, 30 DRIVE between 21 STREET and 23 STREET, 21 STREET between 29 AVENUE and 30 AVENUE, 30 AVENUE between 21 STREET and CRESCENT STREET, 23 STREET between 29 AVENUE and 30 AVENUE, CRESCENT STREET between 29 AVENUE and 30 AVENUE, DAVIS COURT between 49 AVENUE and PEARSON PLACE, 49 AVENUE between DAVIS COURT and 25 STREET, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET",Queens,"1, 2","108, 114, 94",Television,Cable-episodic,United States of America,"11101, 11102, 11222"
+613404,Shooting Permit,12/01/2021 06:30:00 AM,12/01/2021 09:00:00 PM,11/23/2021 03:55:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",15 AVENUE between 138 STREET and 143 STREET,Queens,7,109,Television,Episodic series,United States of America,11357
+613390,Shooting Permit,12/05/2021 08:00:00 AM,12/05/2021 11:59:00 PM,11/23/2021 03:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 67 STREET and WEST 68 STREET,Manhattan,7,20,Television,Cable-other,United States of America,10023
+613387,Shooting Permit,11/27/2021 05:00:00 AM,11/27/2021 10:00:00 AM,11/23/2021 02:47:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+613384,Theater Load in and Load Outs,12/01/2021 12:01:00 AM,12/03/2021 06:00:00 AM,11/23/2021 02:17:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+613379,Shooting Permit,11/30/2021 06:30:00 AM,11/30/2021 09:00:00 PM,11/23/2021 01:38:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 ROAD between 9 STREET and 10 STREET, 9 STREET between 43 AVENUE and 43 ROAD, 9 STREET between 43 ROAD and 44 AVENUE, 43 AVENUE between 9 STREET and 10 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 ROAD, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between 43 AVENUE and 43 ROAD, QUEENS PLAZA SOUTH between 9 STREET and 10 STREET, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 ROAD between 9 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,11101
+613377,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 10:00:00 PM,11/23/2021 01:26:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 112 STREET and WEST 113 STREET, WEST 112 STREET between ST NICHOLAS AVENUE and MALCOLM X BOULEVARD, WEST 111 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 111 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 114 STREET and WEST 113 STREET, ST NICHOLAS AVENUE between WEST 112 STREET and WEST 111 STREET, MALCOLM X BOULEVARD between WEST 112 STREET and WEST 111 STREET, MALCOLM X BOULEVARD between WEST 111 STREET and CENTRAL PARK NORTH, CENTRAL PARK NORTH between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BLVD=, ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and CENTRAL PARK NORTH",Manhattan,"10, 64","22, 28",Television,Cable-episodic,United States of America,"10023, 10024, 10025, 10026"
+613374,Shooting Permit,12/01/2021 07:30:00 AM,12/01/2021 09:00:00 PM,11/23/2021 01:09:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 155 STREET and WEST 153 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 155 STREET and WEST 154 STREET, EDGECOMBE AVENUE between WEST 155 STREET and WEST 160 STREET",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,10032
+613373,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 10:00:00 PM,11/23/2021 01:08:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 10TH ST. between UNIVERSITY PLACE and 6TH AVE., 6 AVENUE between WEST 8 STREET and WEST 10 STREET, 5 AVENUE between WEST 8 STREET and WEST 9 STREET, 5 AVENUE between WEST 10 STREET and WEST 11 STREET, UNIVERSITY PLACE between EAST 8 STREET and EAST 10 STREET, EAST 9 STREET between UNIVERSITY PLACE and BROADWAY, EAST 9 STREET between UNIVERSITY PLACE and 5 AVENUE",Manhattan,2,6,Film,Feature,United States of America,"10003, 10011"
+613368,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 09:00:00 PM,11/23/2021 12:47:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 44 STREET and 47 STREET, 45 STREET between BROADWAY and 34 AVENUE, 45 STREET between BROADWAY and NEWTOWN ROAD, 47 STREET between BROADWAY and 34 AVENUE, 46 STREET between BROADWAY and 34 AVENUE, BROADWAY between 47 STREET and 48 STREET, 47 STREET between BROADWAY and NEWTOWN ROAD, 47 STREET between NEWTOWN ROAD and 31 AVENUE, NEWTOWN ROAD between 47 STREET and 48 STREET, BROADWAY between 41 STREET and STEINWAY STREET, 41 STREET between BROADWAY and 31 AVENUE, BROADWAY between 42 STREET and 41 STREET",Queens,1,114,Film,Feature,United States of America,11103
+613360,Shooting Permit,12/01/2021 08:00:00 AM,12/01/2021 09:00:00 PM,11/23/2021 12:15:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between SPRING STREET and BROOME STREET, BROOME STREET between THOMPSON STREET and SULLIVAN STREET, WEST BROADWAY between BROOME STREET and SPRING STREET, WEST BROADWAY between SPRING STREET and PRINCE STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and CLEVELAND PLACE, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Television,Cable-episodic,United States of America,"10012, 10013"
+613356,Shooting Permit,12/01/2021 07:00:00 AM,12/01/2021 09:00:00 PM,11/23/2021 12:01:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613355,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 10:00:00 PM,11/23/2021 11:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613352,Theater Load in and Load Outs,12/02/2021 12:01:00 AM,12/03/2021 06:00:00 AM,11/23/2021 11:40:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+613342,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 09:00:00 PM,11/23/2021 10:40:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 110 STREET and WEST 112 STREET, BROADWAY between WEST 112 STREET and WEST 114 STREET, BROADWAY between WEST 114 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 113 STREET and WEST 115 STREET",Manhattan,9,26,Television,Episodic series,United States of America,"10025, 10027"
+613341,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 09:00:00 PM,11/23/2021 10:40:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between TENTH AVENUE and ELEVENTH AVENUE, WEST 27 STREET between TENTH AVENUE and ELEVENTH AVENUE, WEST 23 STREET between NINTH AVENUE and TENTH AVENUE, TENTH AVENUE between WEST 27 STREET and WEST 29 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+613339,Shooting Permit,11/24/2021 06:00:00 AM,11/24/2021 11:00:00 PM,11/23/2021 10:40:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 54 STREET and EAST 52 STREET, EAST 54 STREET between THIRD AVENUE and FIRST AVENUE, EAST 55 STREET between THIRD AVENUE and SECOND AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10022
+613331,Theater Load in and Load Outs,12/18/2021 12:01:00 AM,12/19/2021 06:00:00 AM,11/23/2021 10:24:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+613329,Theater Load in and Load Outs,12/17/2021 12:01:00 AM,12/17/2021 11:59:00 PM,11/23/2021 10:13:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+613324,Theater Load in and Load Outs,12/16/2021 12:01:00 AM,12/16/2021 11:59:00 PM,11/23/2021 09:49:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+613322,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 11:00:00 PM,11/23/2021 09:38:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+613320,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 07:00:00 PM,11/23/2021 09:27:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, DIKEMAN STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between DIKEMAN STREET and WOLCOTT STREET, WOLCOTT STREET between CONOVER STREET and FERRIS STREET, FERRIS STREET between SULLIVAN STREET and WOLCOTT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+613319,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 09:00:00 PM,11/23/2021 09:26:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, DWIGHT STREET between BEARD STREET and VAN DYKE STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+613316,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 09:00:00 PM,11/23/2021 09:18:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between CATHERINE STREET and MARKET STREET, CATHERINE STREET between MONROE STREET and CHERRY STREET, MADISON STREET between MARKET STREET and MECHANICS ALLEY, DIVISION STREET between PIKE STREET and ORCHARD STREET, EAST BROADWAY between PIKE STREET and ELDRIDGE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, WORTH STREET between BAXTER STREET and PARK ROW, BAXTER STREET between WORTH STREET and HOGAN PLACE, CHATHAM SQUARE between MOTT STREET and DOYERS STREET, ESSEX STREET between CANAL STREET and GRAND STREET, EAST BROADWAY between CANAL STREET and CLINTON STREET, HENRY STREET between MARKET STREET and FORSYTH STREET, MARKET STREET between EAST BROADWAY and MONROE STREET",Manhattan,"1, 3","5, 7",Television,Episodic series,United States of America,"10002, 10007, 10013, 10038"
+613313,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 09:00:00 PM,11/23/2021 08:42:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+613306,Shooting Permit,12/01/2021 09:00:00 AM,12/01/2021 10:00:00 PM,11/22/2021 11:39:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD, OCEAN AVENUE between GLENWOOD ROAD and AVENUE H",Brooklyn,14,70,Film,Feature,United States of America,11230
+613305,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 09:00:00 PM,11/22/2021 11:28:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD, OCEAN AVENUE between GLENWOOD ROAD and AVENUE H",Brooklyn,14,70,Film,Feature,United States of America,11230
+613292,Theater Load in and Load Outs,12/19/2021 12:01:00 AM,12/22/2021 06:00:00 AM,11/22/2021 09:24:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+613291,Theater Load in and Load Outs,12/15/2021 12:01:00 AM,12/18/2021 06:00:00 AM,11/22/2021 09:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+613278,Shooting Permit,11/30/2021 08:00:00 AM,11/30/2021 10:00:00 PM,11/22/2021 06:38:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10021, 10023"
+613273,Theater Load in and Load Outs,12/09/2021 12:01:00 AM,12/10/2021 12:00:00 AM,11/22/2021 06:13:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+613243,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 11:00:00 PM,11/22/2021 04:43:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613241,Shooting Permit,12/07/2021 05:00:00 AM,12/07/2021 07:00:00 PM,11/22/2021 04:42:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 86 AVENUE between 106 STREET and 107 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 107 STREET and 108 STREET, 86 AVENUE between 108 STREET and 109 STREET, 108 STREET between 85 AVENUE and 86 AVENUE, 108 STREET between 86 AVENUE and JAMAICA AVENUE",Queens,"82, 9",102,Film,Feature,United States of America,"11385, 11418"
+613240,Shooting Permit,12/06/2021 05:00:00 AM,12/06/2021 04:00:00 PM,11/22/2021 04:42:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 86 AVENUE between 106 STREET and 107 STREET, 107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 107 STREET and 108 STREET, 86 AVENUE between 108 STREET and 109 STREET, 108 STREET between 85 AVENUE and 86 AVENUE, 108 STREET between 86 AVENUE and JAMAICA AVENUE",Queens,"82, 9",102,Film,Feature,United States of America,"11385, 11418"
+613226,Shooting Permit,11/30/2021 06:30:00 AM,11/30/2021 08:30:00 PM,11/22/2021 04:04:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and DEAD END, CONOVER STREET between REED STREET and BEARD STREET, CONOVER STREET between BEARD STREET and VAN DYKE STREET, VAN DYKE STREET between DEAD END and CONOVER STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between VAN DYKE STREET and COFFEY STREET, FERRIS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+613197,Shooting Permit,11/24/2021 06:00:00 AM,11/25/2021 01:00:00 AM,11/22/2021 03:16:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 122 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 121 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 121 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 120 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, MT MORRIS PARK WEST between WEST 122 STREET and WEST 123 STREET, MT MORRIS PARK WEST between WEST 121 STREET and WEST 122 STREET, W 125 ST between LENOX AVENUE and MADISON AVE, 5 AVENUE between WEST 125 STREET and WEST 126 STREET, MADISON AVENUE between EAST 124 STREET and EAST 125 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10027, 10035"
+613196,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 11:00:00 PM,11/22/2021 03:16:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, 11TH STREET between BORDEN AVENUE and DEAD END, VERNON BOULEVARD between DEAD END and 54 AVENUE, 53 AVENUE between 11 STREET and VERNON BOULEVARD, BORDEN AVENUE between 11 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+613195,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 11:00:00 PM,11/22/2021 03:13:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+613193,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 09:00:00 PM,11/22/2021 03:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613191,Shooting Permit,12/06/2021 06:00:00 AM,12/06/2021 09:00:00 PM,11/22/2021 03:01:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613190,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 11:00:00 PM,11/22/2021 02:48:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET, LORIMER STREET between CALYER STREET and MESEROLE STREET, LEONARD STREET between NORMAN AVENUE and MESEROLE STREET, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613173,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 09:00:00 PM,11/22/2021 02:02:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613172,Shooting Permit,11/26/2021 05:00:00 AM,11/26/2021 10:00:00 PM,11/22/2021 01:59:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+613169,Shooting Permit,11/24/2021 05:00:00 AM,11/24/2021 10:00:00 PM,11/22/2021 01:54:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+613166,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 08:00:00 PM,11/22/2021 01:41:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, MADISON AVENUE between EAST 76 STREET and EAST 75 STREET",Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10075"
+613165,Theater Load in and Load Outs,12/19/2021 12:01:00 AM,12/20/2021 06:00:00 AM,11/22/2021 01:41:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613163,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 09:00:00 PM,11/22/2021 01:37:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 8 AVENUE, 10 AVENUE between WEST 23 STREET and WEST 22 STREET, 10 AVENUE between WEST 22 STREET and WEST 21 STREET, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 22 STREET between 10 AVENUE and 9 AVENUE, WEST 24 STREET between 8 AVENUE and 7 AVENUE, WEST 24 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 6 AVENUE, WEST 23 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011"
+613162,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 09:00:00 PM,11/22/2021 01:36:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10075"
+613161,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 08:00:00 PM,11/22/2021 01:35:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 38 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10018
+613160,Theater Load in and Load Outs,12/18/2021 12:01:00 AM,12/18/2021 11:59:00 PM,11/22/2021 01:33:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613151,Shooting Permit,12/03/2021 08:00:00 AM,12/03/2021 11:59:00 PM,11/22/2021 01:19:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and HURON STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD, PAIDGE AVENUE between CLAY STREET and PROVOST STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+613150,Theater Load in and Load Outs,11/29/2021 12:01:00 AM,12/01/2021 06:00:00 AM,11/22/2021 01:18:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+613107,Theater Load in and Load Outs,12/17/2021 12:01:00 AM,12/17/2021 11:59:00 PM,11/22/2021 12:07:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613101,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 09:00:00 PM,11/22/2021 11:40:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLT STREET between GRAND STREET and MAUJER STREET, HUMBOLT STREET between MAUJER STREET and SCHOLES STREET, MAUJER STREET between BUSHWICK AVENUE and HUMBOLT STREET, BUSHWICK AVENUE between MESEROLE STREET and MONTROSE AVENUE, BUSHWICK AVENUE between MONTROSE AVENUE and JOHNSON AVENUE, HUMBOLT STREET between MESEROLE STREET and MONTROSE AVENUE, MONTROSE AVENUE between BUSHWICK PLACE and HUMBOLT STREET, GRAHAM AVENUE between SCHOLES STREET and MCKIBBIN STREET, GRAHAM AVENUE between MCKIBBIN STREET and SEIGEL STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+613100,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 08:00:00 PM,11/22/2021 11:40:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between GREENPOINT AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613096,Theater Load in and Load Outs,12/16/2021 12:01:00 AM,12/16/2021 11:59:00 PM,11/22/2021 11:33:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613092,Theater Load in and Load Outs,12/15/2021 12:01:00 AM,12/15/2021 11:59:00 PM,11/22/2021 11:24:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613089,Theater Load in and Load Outs,12/19/2021 12:01:00 AM,12/21/2021 06:00:00 AM,11/22/2021 11:12:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+613085,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 09:00:00 PM,11/22/2021 10:51:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+613081,Shooting Permit,11/30/2021 06:30:00 AM,11/30/2021 08:00:00 PM,11/22/2021 10:46:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between BROADWAY and CENTRAL PARK WEST, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 63 STREET and WEST 62 STREET, WEST 63 STREET between BROADWAY and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 65 STREET and WEST 64 STREET, WEST 65 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, AMSTERDAM AVENUE between WEST 69 STREET and WEST 67 STREET, WEST 68 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 70 STREET and WEST 67 STREET, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 86 STREET and WEST 85 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, BROADWAY between WEST 87 STREET and WEST 86 STREET, AMSTERDAM AVENUE between WEST 87 STREET and WEST 86 STREET, WEST 87 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 88 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 91 STREET and WEST 87 STREET, WEST 28 STREET between 12 AVENUE and 11 AVENUE, WEST 27 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 26 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 26 STREET, WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 64 STREET and WEST 65 STREET",Manhattan,"4, 64, 7","10, 20, 22, 24",Television,Cable-episodic,United States of America,"10001, 10023, 10024"
+613080,Theater Load in and Load Outs,12/14/2021 12:01:00 AM,12/14/2021 11:59:00 PM,11/22/2021 10:45:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613079,Theater Load in and Load Outs,12/12/2021 12:01:00 AM,12/13/2021 11:59:00 PM,11/22/2021 10:29:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613074,Theater Load in and Load Outs,12/11/2021 12:01:00 AM,12/11/2021 11:59:00 PM,11/22/2021 10:10:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613069,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 09:00:00 PM,11/22/2021 10:00:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613068,Theater Load in and Load Outs,12/10/2021 12:01:00 AM,12/10/2021 11:59:00 PM,11/22/2021 09:59:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613066,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 09:00:00 PM,11/22/2021 09:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613067,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 09:00:00 PM,11/22/2021 09:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613064,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 09:00:00 PM,11/22/2021 09:54:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613063,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 09:00:00 PM,11/22/2021 09:49:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+613058,Theater Load in and Load Outs,12/09/2021 12:01:00 AM,12/09/2021 11:59:00 PM,11/22/2021 09:32:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613050,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 07:00:00 PM,11/22/2021 09:03:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 76 STREET and EAST 77 STREET,Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10075"
+613049,Theater Load in and Load Outs,12/08/2021 12:01:00 AM,12/08/2021 11:59:00 PM,11/22/2021 08:55:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613048,Shooting Permit,11/24/2021 09:00:00 AM,11/25/2021 12:00:00 AM,11/22/2021 08:39:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between COFFEY STREET and VAN DYKE STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between OTSEGO STREET and DWIGHT STREET, DWIGHT STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+613046,Theater Load in and Load Outs,12/06/2021 12:01:00 AM,12/07/2021 11:59:00 PM,11/22/2021 07:45:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+613041,Shooting Permit,11/24/2021 09:00:00 AM,11/25/2021 01:00:00 AM,11/21/2021 07:55:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 91 STREET and EAST 89 STREET, EAST 90 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 89 STREET and EAST 88 STREET, 5 AVENUE between EAST 90 STREET and EAST 89 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 88 STREET and EAST 86 STREET, MADISON AVENUE between EAST 88 STREET and EAST 87 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10028, 10128"
+613040,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 07:00:00 PM,11/21/2021 07:44:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, OCEAN AVENUE between FARRAGUT ROAD and GLENWOOD ROAD, OCEAN AVENUE between GLENWOOD ROAD and AVENUE H",Brooklyn,14,70,Film,Feature,United States of America,11230
+612913,Shooting Permit,11/24/2021 09:00:00 AM,11/24/2021 09:00:00 PM,11/19/2021 07:50:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 46 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 47 STREET and EAST 46 STREET",Manhattan,5,"14, 18",Film,Feature,United States of America,10017
+612912,Shooting Permit,11/23/2021 05:00:00 AM,11/23/2021 09:00:00 PM,11/19/2021 07:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between MADISON AVENUE and VANDERBILT AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 46 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 47 STREET and EAST 46 STREET",Manhattan,5,"14, 18",Film,Feature,United States of America,"10017, 10173"
+612904,Shooting Permit,12/08/2021 12:01:00 AM,12/13/2021 11:59:00 PM,11/19/2021 05:03:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 77 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Special/Awards Show,United States of America,10024
+612900,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 07:00:00 PM,11/19/2021 04:56:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between WEST 13 STREET and GANSEVOORT STREET, WEST 13 STREET between 9 AVENUE and HUDSON STREET",Manhattan,2,6,Film,Feature,United States of America,10014
+612899,Theater Load in and Load Outs,12/05/2021 12:01:00 AM,12/05/2021 11:59:00 PM,11/19/2021 04:53:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+612898,Theater Load in and Load Outs,12/03/2021 12:01:00 AM,12/04/2021 11:59:00 PM,11/19/2021 04:52:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+612892,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/19/2021 04:36:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612880,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 09:00:00 PM,11/19/2021 04:15:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+612876,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/19/2021 03:55:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+612871,Shooting Permit,11/23/2021 04:00:00 PM,11/23/2021 11:00:00 PM,11/19/2021 03:33:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE,Brooklyn,1,90,Television,Episodic series,United States of America,11237
+612868,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 11:00:00 PM,11/19/2021 03:29:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, LORIMER STREET between BEDFORD AVENUE and DRIGGS AVENUE, BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, NORTH 6 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 7 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, NORTH 7 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+612852,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 08:00:00 PM,11/19/2021 02:43:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HENRY STREET and CLINTON STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COURT ST between PIERREPONT ST and JORALEMON ST, CLINTON STREET between PIERREPONT STREET and LIVINGSTON STREET, MONTAGUE STREET between HENRY STREET and CLINTON STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET, JOHNSON STREET between CADMAN PLAZA WEST and ADAMS STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+612849,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 10:00:00 PM,11/19/2021 02:39:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between JEWEL STREET and DIAMOND STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612848,Shooting Permit,12/01/2021 08:00:00 AM,12/01/2021 08:00:00 PM,11/19/2021 02:38:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+612847,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 08:00:00 PM,11/19/2021 02:36:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+612844,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 10:00:00 PM,11/19/2021 02:30:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612842,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 10:00:00 PM,11/19/2021 02:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+612840,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 08:00:00 PM,11/19/2021 02:22:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+612838,Shooting Permit,11/29/2021 05:00:00 AM,11/29/2021 07:00:00 PM,11/19/2021 02:19:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+612826,Theater Load in and Load Outs,12/02/2021 12:01:00 AM,12/02/2021 11:59:00 PM,11/19/2021 01:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+612824,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 11:00:00 PM,11/19/2021 01:51:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+612823,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 10:00:00 PM,11/19/2021 01:45:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+612811,Shooting Permit,11/23/2021 06:00:00 AM,11/24/2021 01:00:00 AM,11/19/2021 12:59:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","RANDOLPH STREET between GARDNER AVENUE and STEWART AVENUE, HARRISON PLACE between STEWART AVENUE and FLUSHING AVENUE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and THAMES STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,"1, 4","83, 90, 94",Television,Episodic series,United States of America,"11222, 11237"
+612808,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 11:00:00 PM,11/19/2021 12:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between MARKET STREET and FORSYTH STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET, CHERRY STREET between PIKE STREET and MARKET SLIP",Manhattan,3,"5, 7",Commercial,Commercial,United States of America,10002
+612803,Theater Load in and Load Outs,12/07/2021 12:01:00 AM,12/07/2021 11:59:00 PM,11/19/2021 12:13:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+612798,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 10:00:00 PM,11/19/2021 11:58:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+612796,Shooting Permit,11/24/2021 06:00:00 AM,11/24/2021 09:00:00 PM,11/19/2021 11:42:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 44 STREET and 47 STREET, 45 STREET between BROADWAY and 34 AVENUE, 45 STREET between BROADWAY and NEWTOWN ROAD, 47 STREET between BROADWAY and 34 AVENUE, 46 STREET between BROADWAY and 34 AVENUE, BROADWAY between 47 STREET and 48 STREET, 47 STREET between BROADWAY and NEWTOWN ROAD, 47 STREET between NEWTOWN ROAD and 31 AVENUE, NEWTOWN ROAD between 47 STREET and 48 STREET",Queens,1,114,Film,Feature,United States of America,11103
+612785,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 09:00:00 PM,11/19/2021 11:17:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 38 STREET and WEST 37 STREET, BROADWAY between WEST 37 STREET and WEST 36 STREET, BROADWAY between WEST 36 STREET and WEST 35 STREET, WEST 38 STREET between BROADWAY and 6 AVENUE, WEST 38 STREET between 6 AVENUE and 5 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 37 STREET and WEST 36 STREET, 8 AVENUE between WEST 36 STREET and WEST 35 STREET",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018"
+612771,Shooting Permit,11/23/2021 06:30:00 AM,11/23/2021 08:30:00 PM,11/19/2021 11:03:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 32 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 31 STREET between PARK AVENUE SOUTH and MADISON AVENUE, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 31 STREET and EAST 32 STREET, EAST 31 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 32 STREET between LEXINGTON AVENUE and THIRD AVENUE, THIRD AVENUE between EAST 32 STREET and EAST 31 STREET, EAST 31 STREET between SECOND AVENUE and THIRD AVENUE, EAST 32 STREET between SECOND AVENUE and THIRD AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,10016
+612755,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 11:00:00 PM,11/19/2021 10:38:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+612753,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 10:00:00 PM,11/19/2021 10:23:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+612752,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 10:00:00 PM,11/19/2021 10:22:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+612741,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 10:00:00 PM,11/19/2021 09:52:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 35 STREET and EAST 39 STREET, EAST 35 STREET between PARK AVENUE and TUNNEL EXIT STREET, EAST 38 STREET between THIRD AVENUE and TUNNEL EXIT STREET, EAST 22 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 21 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 21 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 21 STREET and EAST 23 STREET",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10003, 10010, 10016"
+612722,Theater Load in and Load Outs,11/20/2021 08:00:00 AM,11/20/2021 11:59:00 PM,11/19/2021 03:01:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+612700,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 09:00:00 PM,11/18/2021 06:45:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612698,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 09:00:00 PM,11/18/2021 06:40:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612671,Shooting Permit,11/23/2021 06:30:00 AM,11/23/2021 07:30:00 PM,11/18/2021 04:06:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between METROPOLITAN AVENUE and DEVOE STREET, GRAHAM AVENUE between DEVOE STREET and AINSLIE STREET, DEVOE STREET between MANHATTAN AVENUE and GRAHAM AVENUE, DEVOE STREET between GRAHAM AVENUE and HUMBOLDT STREET, AINSLIE STREET between MANHATTAN AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between AINSLIE STREET and POWERS STREET, GRAHAM AVENUE between POWERS STREET and SCHOLES STREET, MAUJER STREET between GRAHAM AVENUE and HUMBOLDT STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11206, 11211"
+612670,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 11:00:00 PM,11/18/2021 04:01:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH FOURTH STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, NORTH 3 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 3 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+612668,Theater Load in and Load Outs,12/11/2021 12:01:00 AM,12/14/2021 06:00:00 AM,11/18/2021 04:00:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+612666,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 09:00:00 PM,11/18/2021 03:55:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","52 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between 52 STREET and 54 STREET, 52 STREET between 1 AVENUE and DEAD END, 56 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between 55 STREET and 57 STREET, 2 AVENUE between 55 STREET and 57 STREET",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+612665,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 06:00:00 PM,11/18/2021 03:54:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 32 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 31 STREET between PARK AVENUE SOUTH and MADISON AVENUE, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 31 STREET and EAST 32 STREET, FIFTH AVENUE between WEST 27 STREET and WEST 28 STREET, EAST 28 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 29 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 27 STREET between BROADWAY and FIFTH AVENUE, EAST 27 STREET between FIFTH AVENUE and PARK AVENUE SOUTH, MADISON AVENUE between EAST 26 STREET and EAST 29 STREET",Manhattan,5,"13, 14",Television,Episodic series,United States of America,"10001, 10010, 10016"
+612662,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 08:00:00 PM,11/18/2021 03:43:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between NORTH HENRY STREET and KINGSLAND AVENUE, NORMAN AVENUE between HUMBOLDT STREET and RUSSELL STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, KINGSLAND AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612656,Theater Load in and Load Outs,12/07/2021 12:01:00 AM,12/10/2021 06:00:00 AM,11/18/2021 03:31:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+612652,Theater Load in and Load Outs,12/03/2021 12:01:00 AM,12/06/2021 06:00:00 AM,11/18/2021 03:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+612642,Theater Load in and Load Outs,12/04/2021 12:01:00 AM,12/05/2021 06:00:00 AM,11/18/2021 02:48:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+612638,Shooting Permit,11/22/2021 02:00:00 PM,11/22/2021 05:00:00 PM,11/18/2021 02:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 125 STREET between OLD BROADWAY and AMSTERDAM AVENUE,Manhattan,9,26,Television,Episodic series,United States of America,10027
+612637,Theater Load in and Load Outs,12/02/2021 12:01:00 AM,12/03/2021 06:00:00 AM,11/18/2021 02:28:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+612636,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 11:00:00 PM,11/18/2021 02:24:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+612635,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 11:00:00 PM,11/18/2021 02:24:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+612633,Theater Load in and Load Outs,12/01/2021 12:01:00 AM,12/01/2021 11:59:00 PM,11/18/2021 02:15:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+612623,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 07:00:00 PM,11/18/2021 01:46:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between GREENE AVENUE and LEXINGTON AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+612622,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 07:00:00 PM,11/18/2021 01:46:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between GREENE AVENUE and LEXINGTON AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+612617,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 11:00:00 PM,11/18/2021 01:32:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+612612,Shooting Permit,11/20/2021 06:00:00 AM,11/20/2021 04:00:00 PM,11/18/2021 01:13:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+612609,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 01:00:00 PM,11/18/2021 01:09:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAMERCY PARK SOUTH between PARK AVENUE SOUTH and IRVING PLACE, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 19 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and 3 AVENUE, EAST 22 STREET between LEXINGTON AVENUE and 3 AVENUE, GRAMERCY PARK SOUTH between IRVING PLACE and 3 AVENUE",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+612607,Shooting Permit,11/19/2021 12:00:00 PM,11/19/2021 04:00:00 PM,11/18/2021 01:08:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+612601,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 07:00:00 PM,11/18/2021 12:44:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 24 STREET and WEST 25 STREET, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+612599,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 11:00:00 PM,11/18/2021 12:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between BOX STREET and CLAY STREET, PAIDGE AVENUE between PROVOST STREET and MCGUINNESS BOULEVARD, CLAY STREET between PAIDGE AVENUE and MCGUINNESS BOULEVARD, DUPONT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between EAGLE STREET and PAIDGE AVENUE, MCGUINNESS BOULEVARD between BOX STREET and ASH STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612598,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 07:00:00 PM,11/18/2021 12:39:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between MONITOR STREET and KINGSLAND AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and SUTTON STREET, KINGSLAND AVENUE between NASSAU AVENUE and DRIGGS AVENUE, SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, DRIGGS AVENUE between RUSSELL STREET and NORTH HENRY STREET, DRIGGS AVENUE between RUSSELL STREET and HUMBOLDT STREET, KINGSLAND AVENUE between NASSAU AVENUE and NORMAN AVENUE, SUTTON STREET between NASSAU AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+612571,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 08:00:00 PM,11/18/2021 11:36:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 56 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Film,Feature,United States of America,10019
+612567,Shooting Permit,11/19/2021 01:00:00 PM,11/20/2021 03:00:00 AM,11/18/2021 11:28:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON STREET between LEWIS AVENUE and MALCOLM X BOULEVARD, STUYVESANT AVENUE between MADISON STREET and PUTNAM AVENUE, STUYVESANT AVENUE between MONROE STREET and GATES AVENUE, STUYVESANT AVENUE between MONROE STREET and MADISON STREET, STUYVESANT AVENUE between MONROE STREET and MADISON STREET, MONROE STREET between LEWIS AVENUE and STUYVESANT AVENUE, MONROE STREET between STUYVESANT AVENUE and MALCOLM X BOULEVARD",Brooklyn,3,81,Film,Feature,United States of America,11221
+612561,Shooting Permit,11/24/2021 06:00:00 AM,11/24/2021 05:00:00 PM,11/18/2021 11:21:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between HALL STREET and VANDERBILT AVENUE, CLINTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, WAVERLY AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11205
+612544,Shooting Permit,11/22/2021 05:00:00 AM,11/22/2021 07:00:00 PM,11/18/2021 10:54:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, EAST 46 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 47 STREET and EAST 46 STREET",Manhattan,5,"14, 18",Film,Feature,United States of America,10017
+612514,Shooting Permit,11/21/2021 08:00:00 AM,11/21/2021 11:59:00 PM,11/18/2021 09:31:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between DWIGHT STREET and OTSEGO STREET, 2 AVENUE between 45 STREET and 46 STREET",Brooklyn,"6, 7","72, 76",Music Video,Signed Artist,United States of America,"11231, 11232"
+612503,Shooting Permit,11/20/2021 07:00:00 AM,11/20/2021 11:59:00 PM,11/18/2021 08:50:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 45 STREET and 46 STREET,Brooklyn,7,72,Music Video,Signed Artist,United States of America,11232
+612498,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/18/2021 06:28:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDS STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between VAN DYKE STREET and COFFEY STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+612435,Shooting Permit,11/23/2021 08:00:00 AM,11/23/2021 11:59:00 PM,11/17/2021 06:32:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROCKAWAY BEACH DRIVE between BEACH 108 STREET and BEACH 109 STREET, BEACH 109 STREET between ROCKAWAY BEACH DRIVE and ROCKAWAY BEACH BOULEVARD",Queens,14,100,WEB,Not Applicable,United States of America,11694
+612404,Shooting Permit,12/03/2021 09:00:00 AM,12/03/2021 11:00:00 PM,11/17/2021 04:44:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 85 AVENUE between 106 STREET and 107 STREET, 85 AVENUE between 107 STREET and 108 STREET, 86 AVENUE between 106 STREET and 107 STREET, 86 AVENUE between 107 STREET and 108 STREET, 86 AVENUE between 108 STREET and 109 STREET, 108 STREET between 85 AVENUE and 86 AVENUE, 108 STREET between 85 AVENUE and JAMAICA AVENUE, 107 STREET between 85 AVENUE and 86 AVENUE",Queens,"82, 9",102,Film,Feature,United States of America,"11385, 11418"
+612401,Theater Load in and Load Outs,12/01/2021 12:01:00 AM,12/01/2021 11:59:00 PM,11/17/2021 04:40:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+612384,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/17/2021 04:16:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 43 STREET and 44 STREET, 2 AVENUE between 44 STREET and 45 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+612375,Theater Load in and Load Outs,12/14/2021 12:01:00 AM,12/16/2021 11:59:00 PM,11/17/2021 04:03:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+612374,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 09:00:00 PM,11/17/2021 03:57:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TALBOT PLACE,Staten Island,1,"120, 121",Television,Cable-episodic,United States of America,"10303, 10304"
+612366,Shooting Permit,11/21/2021 06:00:00 AM,11/21/2021 05:00:00 PM,11/17/2021 03:40:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","RECTOR STREET between TRINITY PLACE and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, VESEY STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between BROADWAY and NASSAU STREET, TRINITY PLACE between RECTOR STREET and THAMES STREET, BROADWAY between LIBERTY STREET and CORTLANDT STREET, PINE STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10006, 10007, 10038"
+612353,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 10:00:00 PM,11/17/2021 03:20:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 141 STREET and WEST 138 STREET, W 139 ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 137 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 136 STREET and WEST 137 STREET, BRADHURST AVENUE between WEST 151 STREET and WEST 145 STREET, WEST 150 STREET between EDGECOMBE AVENUE and ST NICHOLAS PLACE, ST NICHOLAS PLACE between WEST 150 STREET and WEST 155 STREET, ST NICHOLAS AVENUE between WEST 151 STREET and WEST 149 STREET",Manhattan,"10, 9","30, 32",Television,Episodic series,United States of America,"10030, 10031, 10032, 10039"
+612351,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/17/2021 03:18:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, CENTRE STREET between WORTH STREET and READE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between WARREN STREET and MURRAY STREET, CHAMBERS STREET between ELK STREET and BROADWAY, WARREN STREET between BROADWAY and CHURCH STREET, BROADWAY between SPRING STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, WALKER STREET between CHURCH STREET and BROADWAY, WALKER STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between CANAL STREET and WALKER STREET, BROADWAY between WALKER STREET and FRANKLIN STREET",Manhattan,"1, 2","1, 5",Television,Cable-episodic,United States of America,"10007, 10012, 10013"
+612339,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 08:00:00 PM,11/17/2021 03:07:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 57 STREET and WEST 56 STREET, BROADWAY between WEST 56 STREET and WEST 55 STREET, BROADWAY between WEST 55 STREET and WEST 54 STREET, WEST 56 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",18,Television,Cable-episodic,United States of America,10019
+612338,Shooting Permit,11/20/2021 06:00:00 AM,11/20/2021 10:00:00 PM,11/17/2021 03:07:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",CEDAR STREET between PEARL STREET and WILLIAM STREET,Manhattan,1,1,Commercial,Commercial,United States of America,10005
+612337,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 10:00:00 PM,11/17/2021 03:07:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",CEDAR STREET between PEARL STREET and WILLIAM STREET,Manhattan,1,1,Commercial,Commercial,United States of America,10005
+612323,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 11:00:00 PM,11/17/2021 02:47:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 106 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 106 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 105 STREET and WEST 106 STREET, WEST 119 STREET between 5 AVENUE and MALCOLM X BOULEVARD, W 116th St between MALCOLM X BOULEVARD and Madison Ave, MALCOLM X BOULEVARD between WEST 118 STREET and WEST 119 STREET, MALCOLM X BOULEVARD between WEST 119 STREET and WEST 121 STREET, WEST 119 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, W 124TH ST between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 7","24, 28",Television,Cable-episodic,United States of America,"10025, 10026, 10027"
+612317,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 10:00:00 PM,11/17/2021 02:37:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 35 STREET and EAST 39 STREET, EAST 35 STREET between PARK AVENUE and TUNNEL EXIT STREET, EAST 38 STREET between THIRD AVENUE and TUNNEL EXIT STREET",Manhattan,6,17,Television,Episodic series,United States of America,10016
+612275,Shooting Permit,11/19/2021 06:00:00 AM,11/20/2021 02:00:00 AM,11/17/2021 01:38:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612233,Shooting Permit,11/30/2021 07:00:00 AM,11/30/2021 11:00:00 PM,11/17/2021 12:54:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 85 STREET and WEST 90 STREET, WEST END AVENUE between WEST 87 STREET and WEST 88 STREET, WEST END AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 87 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 84 STREET and WEST 79 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Film,Feature,United States of America,10024
+612213,Shooting Permit,11/19/2021 02:00:00 PM,11/19/2021 10:00:00 PM,11/17/2021 12:06:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, MCKIBBEN STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and INGRAHAM STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+612201,Shooting Permit,11/21/2021 06:00:00 AM,11/21/2021 08:00:00 PM,11/17/2021 11:50:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between GOLD STREET and PEARL STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, JOHN STREET between PEARL STREET and WATER STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+612195,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 10:00:00 PM,11/17/2021 11:41:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+612189,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 09:00:00 PM,11/17/2021 11:33:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, 7 AVENUE between WEST 16 STREET and WEST 15 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE, WEST 18 STREET between 7 AVENUE and 6 AVENUE",Manhattan,4,"10, 13",Television,Children,United States of America,10011
+612187,Shooting Permit,11/22/2021 08:00:00 AM,11/22/2021 10:00:00 PM,11/17/2021 11:31:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 37 STREET between 5 AVENUE and 6 AVENUE, EAST 37 STREET between 5 AVENUE and MADISON AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10018"
+612175,Shooting Permit,11/21/2021 06:00:00 AM,11/21/2021 05:00:00 PM,11/17/2021 11:09:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between MARKET STREET and CATHERINE STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET, EAST 22 STREET between BROADWAY and PARK AVENUE SOUTH",Manhattan,"2, 3, 5","13, 5, 84",Television,Episodic series,United States of America,"10002, 10010, 11201"
+612139,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 11:59:00 PM,11/17/2021 09:56:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+612131,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:00:00 PM,11/17/2021 09:29:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612128,Shooting Permit,11/19/2021 08:00:00 AM,11/19/2021 10:00:00 PM,11/17/2021 09:22:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 37 STREET between 5 AVENUE and 6 AVENUE, EAST 37 STREET between 5 AVENUE and MADISON AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10016, 10018"
+612118,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 10:00:00 PM,11/17/2021 09:00:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 12 AVENUE and 11 AVENUE, WEST 48 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 50 STREET, WEST 49 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10019, 10036"
+612115,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 09:00:00 PM,11/17/2021 08:49:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","SCHOLES STREET between BOGART STREET and WATERBURY STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, MESEROLE STREET between BOGART STREET and WATERBURY STREET",Brooklyn,1,90,Television,Children,United States of America,11206
+612068,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 07:00:00 PM,11/16/2021 08:40:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Commercial,Commercial,United States of America,"11101, 11106"
+612067,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 10:00:00 AM,11/16/2021 08:32:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",41 AVENUE between MAIN STREET and COLLEGE POINT BOULEVARD,Queens,7,109,Film,Feature,United States of America,"11354, 11355"
+612055,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 10:00:00 PM,11/16/2021 06:21:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVINGTON STREET between CHRYSTIE STREET and BOWERY, WEST 10 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"2, 3","5, 6",Music Video,Signed Artist,United States of America,"10002, 10011"
+612054,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 10:00:00 PM,11/16/2021 06:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between BOWNE STREET and COMMERCE STREET, COMMERCE STREET between IMLAY STREET and VAN BRUNT STREET, IMLAY STREET between COMMERCE STREET and BOWNE STREET, VAN BRUNT STREET between BOWNE STREET and HAMILTON AVENUE, HAMILTON AVENUE between VAN BRUNT STREET and BOWNE STREET, HAMILTON AVENUE between SUMMIT STREET and WOODHULL STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+612051,Shooting Permit,11/29/2021 07:00:00 AM,11/29/2021 10:00:00 PM,11/16/2021 05:52:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 85 STREET and WEST 90 STREET, WEST END AVENUE between WEST 87 STREET and WEST 88 STREET, WEST END AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 87 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 84 STREET and WEST 79 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Film,Feature,United States of America,10024
+612048,Theater Load in and Load Outs,11/23/2021 12:01:00 AM,11/28/2021 07:00:00 AM,11/16/2021 05:33:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+612047,Shooting Permit,11/24/2021 08:00:00 AM,11/24/2021 11:00:00 PM,11/16/2021 05:30:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 85 STREET and WEST 90 STREET, WEST END AVENUE between WEST 87 STREET and WEST 88 STREET, WEST END AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 87 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 84 STREET and WEST 79 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Film,Feature,United States of America,10024
+612036,Shooting Permit,11/18/2021 06:00:00 AM,11/19/2021 02:00:00 AM,11/16/2021 04:58:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWAY SOUTH between SUMMER STREET and ROCKROSE PLACE, PURITAN AVENUE between GREENWAY SOUTH and SHORTHILL PLACE, UNION TURNPIKE between 71 ROAD and 71 DRIVE, 70 AVENUE between LOUBET STREET and MANSE STREET, 70 AVENUE between MANSE STREET and NANSEN STREET, 70 AVENUE between NANSEN STREET and METROPOLITAN AVENUE, NANSEN STREET between 69 AVENUE and 70 AVENUE, WOODHAVEN BOULEVARD between COOPER AVENUE and FURMANVILLE AVENUE, OLCOTT STREET between 69 AVENUE and 70 AVENUE",Queens,"6, 82","102, 112",Television,Episodic series,United States of America,"11375, 11418"
+612018,Shooting Permit,11/19/2021 06:00:00 AM,11/20/2021 02:00:00 AM,11/16/2021 04:23:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+612013,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 09:00:00 PM,11/16/2021 04:20:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between PRINCE STREET and JERSEY STREET, LAFAYETTE STREET between JERSEY STREET and EAST HOUSTON STREET, MULBERRY STREET between SPRING STREET and PRINCE STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between MOTT STREET and MULBERRY STREET, PRINCE STREET between MOTT STREET and BOWERY, MOTT STREET between PRINCE STREET and EAST HOUSTON STREET, MOTT STREET between SPRING STREET and PRINCE STREET, PRINCE STREET between LAFAYETTE STREET and MULBERRY STREET, WOOSTER STREET between PRINCE STREET and SPRING STREET, WOOSTER STREET between SPRING STREET and BROOME STREET, SPRING STREET between WOOSTER STREET and GREENE STREET, BROOME STREET between WOOSTER STREET and GREENE STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+612010,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 06:00:00 PM,11/16/2021 04:17:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 27 STREET and WEST 28 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10001, 10014"
+611997,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 10:00:00 PM,11/16/2021 04:02:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611991,Shooting Permit,11/22/2021 08:00:00 AM,11/22/2021 09:00:00 PM,11/16/2021 03:54:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVENUE and DEAD END, KENT STREET between WEST STREET and DEAD END, GREENPOINT AVENUE between WEST STREET and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611983,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 10:00:00 PM,11/16/2021 03:46:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between EAST 45 STREET and EAST 42 STREET, MADISON AVENUE between EAST 45 STREET and EAST 42 STREET, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+611928,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 11:59:00 PM,11/16/2021 02:28:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, 19 STREET between 23 AVENUE and 22 ROAD, 22 ROAD between 19 STREET and 21 STREET, 21 STREET between 22 ROAD and 23 AVENUE, 22 DRIVE between 19 STREET and 21 STREET",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+611924,Theater Load in and Load Outs,11/20/2021 12:01:00 AM,11/21/2021 06:00:00 AM,11/16/2021 02:11:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+611922,Shooting Permit,11/18/2021 08:00:00 AM,11/18/2021 08:00:00 PM,11/16/2021 02:01:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","Provost Ave between BOSTON ROAD and E 233rd St, LIGHT STREET between PROVOST AVENUE and MERRITT AVENUE, MERRITT AVENUE between LIGHT STREET and DEAD END, E 233rd St between Provost Ave and Boston Rd",Bronx,12,47,Television,Cable-episodic,United States of America,10466
+611917,Shooting Permit,11/22/2021 06:30:00 AM,11/22/2021 07:00:00 PM,11/16/2021 01:49:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611915,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 10:00:00 PM,11/16/2021 01:45:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611906,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 08:00:00 PM,11/16/2021 01:37:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611895,Shooting Permit,11/21/2021 07:00:00 AM,11/21/2021 07:00:00 PM,11/16/2021 01:21:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WALKER STREET and WHITE STREET, WHITE STREET between LAFAYETTE STREET and CORTLANDT ALLEY, WHITE STREET between LAFAYETTE STREET and CENTRE STREET",Staten Island,"1, 3","123, 5",Commercial,Commercial,United States of America,"10013, 10309"
+611873,Theater Load in and Load Outs,12/04/2021 06:00:00 AM,12/04/2021 11:59:00 PM,11/16/2021 12:33:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 81 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10024
+611869,Shooting Permit,11/19/2021 03:00:00 PM,11/20/2021 01:00:00 AM,11/16/2021 12:28:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIKE STREET between MADISON STREET and CHERRY STREET, PIKE SLIP between SOUTH STREET and CHERRY STREET, CHERRY STREET between PIKE SLIP and FRANK T MODICA WAY, MARKET STREET between MONROE STREET and SOUTH STREET, MADISON STREET between PIKE STREET and CLINTON STREET, HENRY STREET between RUTGERS STREET and PIKE STREET, CHERRY STREET between PIKE SLIP and MARKET SLIP, MONROE STREET between MARKET STREET and PIKE STREET, SOUTH STREET between MARKET SLIP and PIKE SLIP",Manhattan,3,"5, 7",Television,Cable-episodic,United States of America,10002
+611857,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 10:00:00 PM,11/16/2021 11:56:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+611856,Shooting Permit,11/18/2021 08:00:00 AM,11/18/2021 10:00:00 PM,11/16/2021 11:54:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611840,Shooting Permit,11/20/2021 11:00:00 AM,11/21/2021 01:00:00 AM,11/16/2021 11:22:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between 69 STREET and MOUNT OLIVET CRESCENT,Queens,5,104,Film,Feature,United States of America,11379
+611837,Shooting Permit,11/18/2021 10:30:00 AM,11/19/2021 12:30:00 AM,11/16/2021 11:08:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,18,Film,Feature,United States of America,10022
+611834,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 08:00:00 PM,11/16/2021 10:57:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611832,Shooting Permit,11/19/2021 07:15:00 AM,11/19/2021 05:00:00 PM,11/16/2021 10:49:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",BATTERY PLACE between 1 PLACE and WEST STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10004, 10280"
+611822,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 10:00:00 PM,11/16/2021 10:30:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","30 STREET between 47 AVENUE and 48 AVENUE, 48 AVENUE between 30 STREET and 30 PLACE",Queens,2,108,Television,Episodic series,United States of America,11101
+611816,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 11:00:00 PM,11/16/2021 10:22:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and BROOME STREET, CENTRE STREET between CANAL STREET and GRAND STREET, HOWARD STREET between LAFAYETTE STREET and CROSBY STREET, HOWARD STREET between CROSBY STREET and BROADWAY, CROSBY STREET between HOWARD STREET and GRAND STREET, CROSBY STREET between GRAND STREET and BROOME STREET",Manhattan,2,5,Television,Episodic series,United States of America,10013
+611815,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 10:00:00 PM,11/16/2021 10:22:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and BROOME STREET, CENTRE STREET between CANAL STREET and GRAND STREET, HOWARD STREET between LAFAYETTE STREET and CROSBY STREET, HOWARD STREET between CROSBY STREET and BROADWAY, CROSBY STREET between HOWARD STREET and GRAND STREET",Manhattan,2,5,Television,Episodic series,United States of America,10013
+611811,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 10:00:00 PM,11/16/2021 10:14:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+611803,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 10:00:00 PM,11/16/2021 10:02:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+611794,Shooting Permit,11/18/2021 10:00:00 AM,11/18/2021 11:00:00 PM,11/16/2021 09:45:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HICKS STREET and HENRY STREET, WEST 25 STREET between 11 AVENUE and 10 AVENUE",Brooklyn,"2, 4","10, 84",Commercial,Commercial,United States of America,"10001, 11201"
+611782,Shooting Permit,11/19/2021 02:00:00 PM,11/20/2021 04:00:00 AM,11/16/2021 09:15:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVENUE between EASTERN PARKWAY and CARROLL STREET,Brooklyn,"55, 8, 9","71, 77, 78",Film,Feature,United States of America,"11225, 11238"
+611780,Theater Load in and Load Outs,12/15/2021 12:01:00 AM,12/17/2021 06:00:00 AM,11/16/2021 09:14:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+611778,Theater Load in and Load Outs,12/09/2021 12:01:00 AM,12/11/2021 06:00:00 AM,11/16/2021 09:03:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+611775,Shooting Permit,11/18/2021 12:00:00 PM,11/19/2021 01:30:00 AM,11/16/2021 08:58:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUTPHIN BOULEVARD between ARCHER AVENUE and 94 AVENUE, SUTPHIN BOULEVARD between 94 AVENUE and 95 AVENUE, 95 AVENUE between SUTPHIN BOULEVARD and 147 PLACE",Queens,"12, 81","103, 110",Television,Episodic series,United States of America,"11368, 11435"
+611773,Theater Load in and Load Outs,12/05/2021 12:01:00 AM,12/07/2021 06:00:00 AM,11/16/2021 08:55:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+611758,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 09:00:00 PM,11/16/2021 07:40:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WHITE STREET between BROADWAY and CHURCH STREET,Manhattan,1,1,Television,Variety,United States of America,10013
+611754,Shooting Permit,11/22/2021 07:00:00 AM,11/22/2021 09:00:00 PM,11/16/2021 07:14:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",WHITE STREET between BROADWAY and CHURCH STREET,Manhattan,1,1,Television,Variety,United States of America,10013
+611753,Shooting Permit,11/21/2021 06:00:00 AM,11/21/2021 08:00:00 PM,11/16/2021 07:12:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between MERCER STREET and BROADWAY, BROADWAY between GRAND STREET and HOWARD STREET, WHITE STREET between BROADWAY and CHURCH STREET",Manhattan,"1, 2","1, 5",Television,Variety,United States of America,10013
+611752,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 09:00:00 PM,11/16/2021 07:03:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between BROADWAY and MERCER STREET, WHITE STREET between BROADWAY and CHURCH STREET",Manhattan,"1, 2",1,Television,Variety,United States of America,10013
+611750,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 07:00:00 PM,11/16/2021 06:57:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BROADWAY and MERCER STREET, MERCER STREET between GRAND STREET and HOWARD STREET, HOWARD STREET between MERCER STREET and BROADWAY, BROADWAY between GRAND STREET and HOWARD STREET",Manhattan,2,"1, 5",Television,Variety,United States of America,10013
+611695,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 08:00:00 PM,11/15/2021 08:11:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WATER STREET between DOCK STREET and OLD FULTON STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+611686,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:00:00 PM,11/15/2021 07:46:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARD STREET between VAN DYKE STREET and BEARD STREET, RICHARD STREET between VAN DYKE STREET and COFFEY STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+611672,Shooting Permit,11/18/2021 12:00:00 AM,11/25/2021 10:00:00 PM,11/15/2021 07:11:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 ROAD between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and 23 ROAD, DITMARS BOULEVARD between 28 STREET and 31 STREET",Queens,1,114,Film,Feature,United States of America,11105
+611655,Shooting Permit,11/19/2021 11:00:00 AM,11/20/2021 02:00:00 AM,11/15/2021 05:27:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","Soundview Ave between ROSEDALE AVENUE and St. Lawrence Ave, LAFAYETTE AVENUE between SOUNDVIEW AVENUE and BEACH AVENUE, SOUNDVIEW AVENUE between ST LAWRENCE AVENUE and SEWARD AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and TAYLOR AVENUE, EVERGREEN AVENUE between BRUCKNER BOULEVARD and STORY AVENUE, STORY AVENUE between EVERGREEN AVENUE and WHEELER AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+611649,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 10:00:00 PM,11/15/2021 05:00:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BOND STREET between BOWERY and LAFAYETTE STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET",Manhattan,2,9,Film,Feature,United States of America,"10003, 10012"
+611642,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 09:00:00 PM,11/15/2021 04:45:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 16 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, FLATBUSH AVE between CORTELYOU RD and DITMAS AVE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+611641,Shooting Permit,11/19/2021 09:00:00 AM,11/19/2021 11:00:00 PM,11/15/2021 04:43:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between PERRY STREET and CHARLES STREET, CHARLES STREET between BLEECKER STREET and HUDSON STREET, PERRY STREET between BLEECKER STREET and WEST 4 STREET, PERRY STREET between WEST 4 STREET and WAVERLY PLACE, CHARLES STREET between WEST 4 STREET and 7 AVENUE SOUTH, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, 7 AVENUE SOUTH between WEST 10 STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, 7 AVENUE SOUTH between GROVE STREET and BARROW STREET, W 14 ST between 9 AVE and 8 AVE, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+611632,Shooting Permit,11/18/2021 09:00:00 AM,11/18/2021 11:00:00 PM,11/15/2021 04:28:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOOPER STREET between BROADWAY and MARCY AVENUE, HARRISON AVENUE between HOOPER STREET and RUTLEDGE STREET, PENN STREET between MARCY AVENUE and HARRISON AVENUE, HEWES STREET between BROADWAY and HARRISON AVENUE, BROADWAY between HOOPER STREET and HEWES STREET",Brooklyn,1,90,Film,Feature,United States of America,11211
+611631,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:00:00 PM,11/15/2021 04:27:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVNG AVE between ELDERT ST and COVERT ST, ST FELIX AVENUE between SENECA AVENUE and 60 PLACE, SENECA AVENUE between DECATUR STREET and ST FELIX AVENUE, ST FELIX AVENUE between SENECA AVENUE and CYPRESS AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+611619,Shooting Permit,11/28/2021 12:00:00 AM,11/28/2021 06:00:00 AM,11/15/2021 04:00:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611617,Shooting Permit,11/22/2021 12:00:00 AM,11/22/2021 12:00:00 PM,11/15/2021 03:57:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611612,Shooting Permit,11/18/2021 10:00:00 AM,11/18/2021 11:30:00 PM,11/15/2021 03:46:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARDEN STREET between SHERMAN AVENUE and NAGLE AVENUE, THAYER STREET between SHERMAN AVENUE and NAGLE AVENUE, DYCKMAN STREET between SHERMAN AVENUE and NAGLE AVENUE, POST AVENUE between DYCKMAN STREET and ACADEMY STREET, SHERMAN AVENUE between SICKLES STREET and DYCKMAN STREET",Manhattan,12,34,Television,Episodic series,United States of America,"10034, 10040"
+611607,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 08:00:00 PM,11/15/2021 03:33:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between PRINCE STREET and JERSEY STREET, LAFAYETTE STREET between JERSEY STREET and EAST HOUSTON STREET, PRINCE STREET between LAFAYETTE STREET and MULBERRY STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, MULBERRY STREET between SPRING STREET and PRINCE STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between MOTT STREET and MULBERRY STREET, PRINCE STREET between MOTT STREET and BOWERY, MOTT STREET between PRINCE STREET and EAST HOUSTON STREET, MOTT STREET between SPRING STREET and PRINCE STREET, BROADWAY between GRAND STREET and BROOME STREET",Manhattan,2,"1, 5, 6",Television,Episodic series,United States of America,"10012, 10013"
+611606,Shooting Permit,11/24/2021 07:00:00 AM,11/24/2021 11:00:00 PM,11/15/2021 03:29:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+611605,Shooting Permit,11/23/2021 07:00:00 AM,11/23/2021 11:00:00 PM,11/15/2021 03:29:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+611603,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:30:00 PM,11/15/2021 03:12:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 16 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, FLATBUSH AVE between CORTELYOU RD and DITMAS AVE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+611598,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 06:00:00 PM,11/15/2021 02:35:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",RICHARDS STREET between PIONEER STREET and VERONA STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+611596,Theater Load in and Load Outs,11/20/2021 06:00:00 AM,11/23/2021 11:59:00 PM,11/15/2021 02:24:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and DEAN STREET, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE",Brooklyn,"2, 6",78,Television,Cable-other,United States of America,11217
+611593,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 08:00:00 PM,11/15/2021 02:11:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+611592,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 08:00:00 PM,11/15/2021 02:11:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+611588,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 06:30:00 PM,11/15/2021 01:58:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVER STREET between GRAND STREET and NORTH FIRST STREET,Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,"11222, 11249"
+611585,Theater Load in and Load Outs,11/16/2021 07:00:00 AM,11/17/2021 01:00:00 AM,11/15/2021 01:49:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and DEAN STREET",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+611584,Shooting Permit,11/19/2021 09:00:00 AM,11/19/2021 11:00:00 PM,11/15/2021 01:45:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD ENS,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611583,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 07:00:00 PM,11/15/2021 01:41:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, GATES AVENUE between CAMBRIDGE PLACE and GRAND AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+611582,Shooting Permit,11/21/2021 06:00:00 AM,11/21/2021 11:59:00 PM,11/15/2021 01:23:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+611581,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 11:00:00 PM,11/15/2021 01:14:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611574,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 09:00:00 PM,11/15/2021 12:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between 6 AVENUE and BROADWAY, CENTRE STREET between HESTER STREET and WORTH STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LEONARD STREET between BENSON PLACE and LAFAYETTE STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET, LEONARD STREET between BROADWAY and CHURCH STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between LEONARD STREET and WHITE STREET",Manhattan,"1, 2, 3","1, 5",Television,Episodic series,United States of America,"10007, 10013, 10038"
+611559,Shooting Permit,11/17/2021 07:30:00 AM,11/17/2021 08:30:00 PM,11/15/2021 12:16:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+611556,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 11:59:00 PM,11/15/2021 12:04:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 20 STREET, EAST 19 STREET between BROADWAY and 5 AVENUE, EAST 20 STREET between BROADWAY and 5 AVENUE, EAST 18 STREET between PARK AVENUE SOUTH and BROADWAY",Manhattan,5,13,Commercial,Commercial,United States of America,10003
+611555,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 09:00:00 PM,11/15/2021 12:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611545,Shooting Permit,11/18/2021 11:00:00 AM,11/19/2021 01:00:00 AM,11/15/2021 11:27:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 105 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64","22, 23",Television,Cable-episodic,United States of America,10029
+611542,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 09:00:00 PM,11/15/2021 11:21:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611533,Shooting Permit,11/16/2021 08:00:00 AM,11/16/2021 10:00:00 PM,11/15/2021 11:10:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","HOOPER STREET between MARCY AVENUE and BROADWAY, HARRISON AVENUE between HOOPER STREET and RUTLEDGE STREET, PENN STREET between MARCY AVENUE and HARRISON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11211
+611531,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 11:59:00 PM,11/15/2021 11:04:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between GREENPOINT AVENUE and MESEROLE AVENUE, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MCGUINNESS BOULEVARD between KENT STREET and GREENPOINT AVENUE, KENT STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between JAVA STREET and KENT STREET, KENT STREET between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, MCGUINNESS BOULEVARD between JAVA STREET and KENT STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611529,Theater Load in and Load Outs,11/30/2021 12:01:00 AM,11/30/2021 11:59:00 PM,11/15/2021 10:58:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+611527,Shooting Permit,11/17/2021 06:00:00 AM,11/18/2021 01:00:00 AM,11/15/2021 10:55:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between RICHARDSON STREET and JACKSON STREET, WITHERS STREET between MANHATTAN AVENUE and HUMBOLDT STREET, MANHATTAN AVENUE between WITHERS STREET and JACKSON STREET, FROST STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11211
+611522,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 07:00:00 PM,11/15/2021 10:42:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","GERRITSEN AVENUE between SEBA AVENUE and LOIS AVENUE, FILLMORE AVENUE between EAST 31 STREET and EAST 32 STREET",Brooklyn,"15, 18","61, 63",Commercial,Commercial,United States of America,"11229, 11234"
+611520,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 11:00:00 PM,11/15/2021 10:40:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+611515,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 11:00:00 PM,11/15/2021 10:32:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+611514,Theater Load in and Load Outs,11/29/2021 12:01:00 AM,11/29/2021 11:59:00 PM,11/15/2021 10:32:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+611502,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 09:00:00 PM,11/15/2021 09:51:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611495,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 07:00:00 PM,11/15/2021 08:43:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, CLINTON STREET between ATLANTIC AVENUE and STATE STREET",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,11201
+611493,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 08:00:00 PM,11/15/2021 08:34:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and NEWKIRK AVENUE, COMMERCE STREET between RICHARDS STREET and COLUMBIA STREET",Brooklyn,"14, 6","70, 76",Still Photography,Not Applicable,United States of America,"11226, 11231"
+611492,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 07:00:00 PM,11/15/2021 08:31:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 22 STREET between BROADWAY and PARK AVENUE SOUTH, 6 AVENUE between CARMINE STREET and BEDFORD STREET, BROADWAY between EAST 22 STREET and EAST 21 STREET, EAST 26 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"2, 5","13, 6",Commercial,Commercial,United States of America,"10010, 10014"
+611482,Shooting Permit,11/20/2021 06:00:00 AM,11/20/2021 09:00:00 PM,11/14/2021 07:59:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 108 STREET and 111 STREET, 43 AVENUE between 108 STREET and 111 STREET",Queens,4,110,Film,Short,United States of America,11368
+611413,Shooting Permit,11/18/2021 12:00:00 PM,11/18/2021 10:30:00 PM,11/13/2021 09:48:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+611396,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 10:00:00 PM,11/12/2021 06:41:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","22ND ST between QUEENS PLAZA NORTH and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+611395,Shooting Permit,11/18/2021 10:00:00 AM,11/18/2021 11:00:00 PM,11/12/2021 06:41:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 7 AVENUE and BROADWAY, BROADWAY between WEST 57 STREET and WEST 54 STREET, 10 AVENUE between WEST 55 STREET and WEST 56 STREET, WEST 56 STREET between 8 AVENUE and 9 AVENUE, WEST 53 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 53 STREET and WEST 54 STREET, WEST 51 STREET between 10 AVENUE and 9 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+611377,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 11:00:00 PM,11/12/2021 04:07:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+611373,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:00:00 PM,11/12/2021 03:53:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EDGEWATER STREET between FRONT STREET and LYNHURST AVENUE, BAY STREET between GREENFIELD AVENUE and LYNHURST AVENUE, BAY STREET between LYNHURST AVENUE and CHESTNUT AVENUE, WILLOW AVENUE between LANGERE PLACE and BAY STREET",Staten Island,"1, 2, 3","120, 121, 123",Television,Cable-episodic,United States of America,"10304, 10305, 10309, 10314"
+611370,Shooting Permit,11/19/2021 07:00:00 AM,11/19/2021 09:00:00 PM,11/12/2021 03:46:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+611361,Shooting Permit,11/20/2021 06:00:00 AM,11/21/2021 11:59:00 PM,11/12/2021 03:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+611352,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 11:59:00 PM,11/12/2021 03:02:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+611349,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 10:00:00 PM,11/12/2021 02:59:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, LOCUST AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611348,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 09:00:00 PM,11/12/2021 02:57:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","HEWES STREET between BROADWAY and HARRISON AVENUE, BROADWAY between HOOPER STREET and HEWES STREET, HOOPER STREET between SOUTH 5 STREET and BROADWAY, HOOPER STREET between MARCY AVENUE and BROADWAY, HARRISON AVENUE between HOOPER STREET and RUTLEDGE STREET, PENN STREET between MARCY AVENUE and HARRISON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11211
+611321,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 11:59:00 PM,11/12/2021 02:11:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+611318,Shooting Permit,11/17/2021 08:00:00 AM,11/17/2021 11:00:00 PM,11/12/2021 02:03:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between TAYLOR AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, Soundview Ave between Beach Ave and Taylor Ave, Soundview Ave between Leland Ave and Underhill Ave",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+611316,Shooting Permit,11/16/2021 08:00:00 AM,11/16/2021 09:00:00 PM,11/12/2021 01:49:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARRISON AVENUE between MANIDA STREET and TIFFANY STREET, LAFAYETTE AVENUE between MANIDA STREET and BARRY STREET, LAFAYETTE AVENUE between MANIDA STREET and HUNTS POINT AVENUE, SPOFFORD AVENUE between TIFFANY STREET and MANIDA STREET, BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, MANIDA STREET between GARRISON AVENUE and LAFAYETTE AVENUE, HUNTS POINT AVENUE between GILBERT PLACE and LAFAYETTE AVENUE, MANIDA STREET between LAFAYETTE AVENUE and SPOFFORD AVENUE",Bronx,2,41,Television,Episodic series,United States of America,10474
+611313,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 06:00:00 PM,11/12/2021 01:44:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between CENTRE STREET and MULBERRY STREET, SOUTH STREET between FULTON STREET and JOHN STREET",Manhattan,"1, 2","1, 5",Still Photography,Not Applicable,United States of America,"10013, 10038"
+611312,Shooting Permit,11/17/2021 08:00:00 AM,11/17/2021 10:00:00 PM,11/12/2021 01:24:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+611311,Shooting Permit,11/16/2021 08:00:00 AM,11/16/2021 10:00:00 PM,11/12/2021 01:24:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+611309,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 09:00:00 PM,11/12/2021 01:18:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 43 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+611299,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 09:00:00 PM,11/12/2021 12:36:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611272,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 10:00:00 PM,11/12/2021 11:24:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, LOCUST AVENUE between EAST 140 STREET and EAST 139 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611268,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 11:00:00 PM,11/12/2021 11:21:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between TENTH AVENUE and ELEVENTH AVENUE, WEST 23 STREET between TENTH AVENUE and NINTH AVENUE, WEST 43 STREET between BROADWAY and SIXTH AVENUE, GRAMERCY PARK NORTH between LEXINGTON AVENUE and THIRD AVENUE, GRAMERCY PARK NORTH between THIRD AVENUE and GAMERCY PARK EAST, GRAMERCY PARK NORTH between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 22 STREET between THIRD AVENUE and LEXINGTON AVENUE, SIXTH AVENUE between WEST 42 STREET and WEST 44 STREET, WEST 44 STREET between BROADWAY and SIXTH AVENUE, WEST 43 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 43 STREET between FIFTH AVENUE and MADISON AVENUE",Manhattan,"2, 4, 5, 6","10, 13, 14, 6",Television,Episodic series,United States of America,"10001, 10003, 10010, 10011, 10017, 10036"
+611266,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 10:00:00 PM,11/12/2021 11:16:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, LOCUST AVENUE between EAST 140 STREET and EAST 139 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611262,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 11:00:00 PM,11/12/2021 11:08:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611261,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 10:00:00 PM,11/12/2021 11:06:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 140 STREET and EAST 139 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, LOCUST AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611258,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/12/2021 10:54:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611255,Shooting Permit,11/24/2021 06:00:00 AM,11/24/2021 10:00:00 PM,11/12/2021 10:41:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between LOCUST AVENUE and WALNUT AVENUE, LOCUST AVENUE between EAST 140 STREET and EAST 139 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611252,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 05:30:00 PM,11/12/2021 10:28:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",FORSYTH STREET between DELANCEY STREET and BROOME STREET,Manhattan,3,5,Still Photography,Not Applicable,United States of America,10002
+611250,Shooting Permit,11/16/2021 10:00:00 AM,11/16/2021 02:00:00 PM,11/12/2021 10:20:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET, HANOVER STREET between EXCHANGE PLACE and BEAVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+611249,Shooting Permit,11/19/2021 08:00:00 AM,11/19/2021 08:00:00 PM,11/12/2021 10:17:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 7 AVENUE and 6 AVENUE, 8 AVENUE between WEST 46 STREET and WEST 45 STREET, 8 AVENUE between WEST 45 STREET and WEST 44 STREET",Manhattan,"4, 5","14, 18",WEB,Not Applicable,United States of America,10036
+611244,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 09:00:00 PM,11/12/2021 10:07:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, LOCUST AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Commercial,Commercial,United States of America,10454
+611235,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 10:00:00 PM,11/12/2021 08:23:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, W 14 STREET between 9 AVENUE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+611232,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 09:00:00 PM,11/12/2021 08:07:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between EAST 19 STREET and OCEAN AVENUE, OCEAN AVENUE between DITMAS AVENUE and NEWKIRK AVENUE, TOMPKINS AVENUE between GATES AVENUE and MADISON STREET, MONROE STREET between TOMPKINS AVENUE and THROOP AVENUE",Brooklyn,"14, 3","70, 79",Commercial,Commercial,United States of America,"11216, 11221, 11226"
+611225,Shooting Permit,11/22/2021 06:00:00 AM,11/22/2021 11:59:00 PM,11/11/2021 09:30:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","50 AVENUE between 2 STREET and 5 STREET, 51 AVENUE between 2 STREET and 5 STREET, BORDEN AVENUE between 2 STREET and 5 STREET, 5 STREET between BORDEN AVENUE and 50 AVENUE, 5 STREET between 49 AVENUE and 50 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+611224,Shooting Permit,11/19/2021 06:00:00 AM,11/19/2021 07:00:00 PM,11/11/2021 09:04:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between WOLCOTT STREET and SULLIVAN STREET, SULLIVAN STREET between FERRIS STREET and CONOVER STREET, SULLIVAN STREET between FERRIS STREET and DEAD END, FERRIS STREET between SULLIVAN STREET and KING STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+611218,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 11:00:00 PM,11/11/2021 06:43:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 46 STREET and WEST 47 STREET, 10 AVENUE between WEST 45 STREET and WEST 46 STREET, 10 AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 46 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,18,Film,Feature,United States of America,10036
+611213,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/11/2021 05:09:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST HOUSTON STREET and PRINCE STREET, BOWERY between RIVINGTON STREET and SPRING STREET, BOWERY between SPRING STREET and KENMARE STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between KENMARE STREET and BROOME STREET, KENMARE STREET between ELIZABETH STREET and BOWERY, BOWERY between BROOME STREET and GRAND STREET",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10012, 10013"
+611210,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 08:00:00 PM,11/11/2021 04:46:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, LORIMER STREET between DRIGGS AVENUE and BEDFORD AVENUE, MESEROLE AVENUE between CLIFFORD PLACE and GUERNSEY STREET, CLIFFORD PLACE between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between BANKER STREET and CLIFFORD PLACE, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Children,United States of America,11222
+611209,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 07:00:00 PM,11/11/2021 04:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 69TH STREET between ALMEDA AVENUE and ELIZABETH AVENUE, BURCHELL AVENUE between BEACH 69 STREET and B 72 STREET",Queens,14,"100, 101",Commercial,Commercial,United States of America,"11691, 11692"
+611195,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/19/2021 06:00:00 AM,11/11/2021 02:27:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+611176,Shooting Permit,11/16/2021 05:30:00 AM,11/16/2021 07:00:00 PM,11/11/2021 01:24:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET",Manhattan,2,9,Film,Feature,United States of America,10012
+611137,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 07:00:00 PM,11/10/2021 10:25:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, CUMBERLAND STREET between FLUSHING AVENUE and PARK AVENUE",Brooklyn,"2, 6","76, 88",Still Photography,Not Applicable,United States of America,"11205, 11231"
+611122,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 11:00:00 PM,11/10/2021 05:52:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611120,Theater Load in and Load Outs,11/19/2021 12:01:00 AM,11/20/2021 06:00:00 AM,11/10/2021 05:47:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+611118,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 06:00:00 PM,11/10/2021 05:44:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between CENTRE STREET and MULBERRY STREET, SOUTH STREET between FULTON STREET and JOHN STREET",Manhattan,"1, 2","1, 5",Still Photography,Not Applicable,United States of America,"10013, 10038"
+611115,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 05:00:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, WEST 56 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between BROADWAY and 7 AVENUE, BROADWAY between WEST 55 STREET and WEST 56 STREET, 5 AVENUE between EAST 60 STREET and EAST 61 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 62 STREET, EAST 65 STREET between 2 AVENUE and 3 AVENUE, EAST 66 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 64 STREET and EAST 65 STREET, WEST 56 STREET between 6 AVENUE and 7 AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+611111,Shooting Permit,11/17/2021 09:00:00 AM,11/17/2021 09:00:00 PM,11/10/2021 04:40:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between BROOME STREET and SPRING STREET, MERCER STREET between SPRING STREET and BROOME STREET, BROOME STREET between GREENE STREET and LAFAYETTE STREET, MERCER STREET between BROOME STREET and GRAND STREET, CROSBY STREET between SPRING STREET and GRAND STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+611105,Theater Load in and Load Outs,11/15/2021 12:01:00 AM,11/18/2021 06:00:00 AM,11/10/2021 04:07:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+611098,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 11:00:00 PM,11/10/2021 03:44:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOLCOTT STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between WOLCOTT STREET and SULLIVAN STREET, SULLIVAN STREET between FERRIS STREET and CONOVER STREET, SULLIVAN STREET between FERRIS STREET and DEAD END, HICKS ST between SACKETT STREET and UNION STREET, UNION ST between COLUMBIA STREET and HICKS STREET, SACKETT ST between HICKS STREET and COLUMBIA STREET, FERRIS STREET between SULLIVAN STREET and KING STREET, HICKS ST between UNION STREET and PRESIDENT STREET, PRESIDENT STREET between COLUMBIA STREET and HICKS STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+611095,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 11:00:00 PM,11/10/2021 03:40:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+611088,Shooting Permit,11/21/2021 05:00:00 AM,11/21/2021 12:00:00 PM,11/10/2021 03:24:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611087,Shooting Permit,11/19/2021 11:00:00 AM,11/20/2021 04:00:00 AM,11/10/2021 03:23:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 15 STREET and WEST 16 STREET, SURF AVENUE between WEST 15 STREET and WEST 16 STREET, SURF AVENUE between WEST 17 STREET and WEST 19 STREET, WEST 21 STREET between RIEGELMANN BOARDWALK and SURF AVENUE, WEST 15 STREET between SURF AVENUE and MERMAID AVENUE",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+611076,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 03:03:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+611074,Shooting Permit,11/16/2021 05:00:00 AM,11/16/2021 12:00:00 PM,11/10/2021 02:51:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611073,Shooting Permit,11/15/2021 05:00:00 AM,11/15/2021 12:00:00 PM,11/10/2021 02:49:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611070,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 10:00:00 PM,11/10/2021 02:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between GREAT JONES STREET and EAST 4 STREET, GREAT JONES STREET between LAFAYETTE STREET and BROADWAY, EAST 4 STREET between LAFAYETTE STREET and BROADWAY, EAST 4 STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LA GUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET",Manhattan,2,"6, 9",Television,Cable-episodic,United States of America,"10003, 10012"
+611061,Shooting Permit,11/15/2021 06:30:00 AM,11/15/2021 09:00:00 PM,11/10/2021 02:27:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","MIDDLETOWN ROAD between WESTCHESTER AVENUE and MULFORD AVENUE, WESTCHESTER AVENUE between MIDDLETOWN ROAD and MAYFLOWER AVENUE, MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, MIDDLETOWN ROAD between MULFORD AVENUE and MAYFLOWER AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, EDISON AVENUE between ROEBLING AVENUE and WELLMAN AVENUE, ZULETTE AVENUE between EDISON AVENUE and PLYMOUTH AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, Hutchinson River Parkway E between E Tremont Ave and Roebling Ave, MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and MAITLAND AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, EAST TREMONT AVENUE between LASALLE AVENUE and BAISLEY AVENUE",Bronx,10,45,Television,Cable-episodic,United States of America,10461
+611056,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 02:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH FIFTH STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH FIFTH STREET and BROADWAY, SOUTH 6 STREET between KENT AVENUE and DUNHAM PLACE, BROADWAY between KENT AVENUE and DUNHAM PLACE, WYTHE AVENUE between SOUTH THIRD STREET and SOUTH FIFTH STREET, SOUTH FOURTH STREET between WYTHE AVENUE and KENT AVENUE, SOUTH FOURTH STREET between WYTHE AVENUE and BERRY STREET, SOUTH FIFTH STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11249
+611053,DCAS Prep/Shoot/Wrap Permit,11/15/2021 04:00:00 PM,11/15/2021 08:00:00 PM,11/10/2021 02:15:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between MURRAY STREET and WARREN STREET, WARREN STREET between BROADWAY and WEST BROADWAY, READE STREET between BROADWAY and CHURCH STREET, READE STREET between CENTRE STREET and ELK STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+611052,Shooting Permit,11/15/2021 06:30:00 AM,11/15/2021 05:00:00 PM,11/10/2021 02:15:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CATHERINE STREET between MADISON STREET and MONROE STREET, CATHERINE STREET between MADISON STREET and HENRY STREET, CATHERINE STREET between MONROE STREET and CHERRY STREET, MONROE STREET between CATHERINE STREET and MARKET STREET, OLIVER STREET between ST JAMES PLACE and HENRY STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,"10002, 10007, 10038"
+611051,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 09:00:00 PM,11/10/2021 02:14:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611048,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 09:00:00 PM,11/10/2021 02:04:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611046,Shooting Permit,11/14/2021 05:00:00 AM,11/14/2021 12:00:00 PM,11/10/2021 02:01:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611044,Shooting Permit,11/13/2021 05:00:00 AM,11/13/2021 12:00:00 PM,11/10/2021 01:58:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+611043,Shooting Permit,11/14/2021 06:00:00 AM,11/14/2021 07:00:00 PM,11/10/2021 01:57:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between WILLIAM STREET and HANOVER STREET, HANOVER STREET between WALL STREET and PEARL STREET, BEAVER STREET between PEARL STREET and HANOVER STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, WILLIAM STREET between WALL STREET and BEAVER STREET, WALL STREET between HANOVER STREET and SOUTH STREET, BEAVER STREET between WILLIAM STREET and BROAD STREET, WILLIAM STREET between BEAVER STREET and STONE STREET, HANOVER SQUARE between STONE STREET and WATER STREET, WATER STREET between OLD SLIP and WALL STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10004, 10005"
+611040,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 09:00:00 PM,11/10/2021 01:47:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+611037,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 11:00:00 PM,11/10/2021 01:33:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 47 STREET and WEST 46 STREET, 10 AVENUE between WEST 45 STREET and WEST 46 STREET, 10 AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 46 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,18,Film,Feature,United States of America,10036
+611028,Theater Load in and Load Outs,12/10/2021 12:01:00 AM,12/24/2021 11:59:00 PM,11/10/2021 12:53:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVE between WEST 61 STREET and WEST 63RD ST",Manhattan,7,20,Theater,Theater,United States of America,10023
+611017,Shooting Permit,11/15/2021 06:30:00 AM,11/15/2021 08:00:00 PM,11/10/2021 11:54:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","HILLSIDE AVENUE between 146 STREET and 153 STREET, 90 AVENUE between 153 STREET and 160 STREET, PARSONS BOULEVARD between 89 AVENUE and JAMAICA AVENUE, 89 AVENUE between PARSONS BOULEVARD and 161 STREET, 145 STREET between 89 AVENUE and JAMAICA AVENUE, 144 STREET between 89 AVENUE and JAMAICA AVENUE, JAMAICA AVENUE between 139 STREET and 143 STREET, JAMAICA AVENUE between 144 PLACE and 146 STREET, 144 PLACE between JAMAICA AVENUE and 91 AVENUE, JAMAICA AVENUE between 144 STREET and 145 STREET",Queens,"12, 8","103, 107",Television,Episodic series,United States of America,"11432, 11435"
+611012,Theater Load in and Load Outs,11/21/2021 12:01:00 AM,11/21/2021 11:59:00 PM,11/10/2021 11:40:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+611011,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 09:00:00 PM,11/10/2021 11:34:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between 1 AVENUE and 2 AVENUE,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+611005,Shooting Permit,11/17/2021 08:00:00 AM,11/17/2021 11:59:00 PM,11/10/2021 11:22:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","SCHOLES STREET between BOGART STREET and WATERBURY STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET",Brooklyn,1,90,Television,Children,United States of America,11206
+611003,Shooting Permit,11/12/2021 02:00:00 PM,11/12/2021 11:59:00 PM,11/10/2021 11:19:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,18,Television,Variety,United States of America,10036
+611001,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 09:00:00 PM,11/10/2021 11:16:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between SECOND AVENUE and QUEENSBORO BRIDGE EXIT, EAST 62 STREET between SECOND AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 60 STREET between SECOND AVENUE and THIRD AVENUE, PARK AVENUE between EAST 63 STREET and EAST 64 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10022, 10065"
+610997,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 11:00:00 PM,11/10/2021 11:12:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+610996,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 11:59:00 PM,11/10/2021 11:01:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Television,Variety,United States of America,10036
+610995,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 11:00:00 PM,11/10/2021 11:00:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between BEDFORD AVENUE and WYTHE AVENUE, SOUTH 5 STREET between BERRY STREET and KENT AVENUE, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, SOUTH 6 STREET between DUNHAM PLACE and KENT AVENUE, KENT AVENUE between SOUTH 6 STREET and SOUTH 4 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+610994,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 10:59:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+610989,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 08:00:00 PM,11/10/2021 10:44:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",83 STREET between COOPER AVENUE and DORAN AVENUE,Queens,"5, 6, 9","104, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+610987,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 07:00:00 PM,11/10/2021 10:37:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BLVD between HOOVER AVENUE and VAN WYCK EXPRESSWAY, KEW GARDENS ROAD between LEFFERTS BOULEVARD and 83 DRIVE, QUEENS BOULEVARD between 86 AVENUE and 84 DRIVE, 82 AVENUE between 132 STREET and 126 STREET",Queens,"8, 9","102, 107",Television,Episodic series,United States of America,"11415, 11435"
+610986,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 08:00:00 PM,11/10/2021 10:36:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","SENATOR STREET between COLONIAL ROAD and RIDGE BOULEVARD, SENATOR STREET between RIDGE BOULEVARD and 3 AVENUE, RIDGE BOULEVARD between SENATOR STREET and 67 STREET, RIDGE BOULEVARD between SENATOR STREET and 68 STREET, COLONIAL ROAD between 67 STREET and WAKEMAN PLACE, COLONIAL ROAD between 67 STREET and 68 STREET, 68 STREET between COLONIAL ROAD and SHORE ROAD, BAY RIDGE AVENUE between 3 AVENUE and RIDGE BOULEVARD, OWLS HEAD COURT between 68 STREET and BAY RIDGE AVENUE",Brooklyn,10,68,Television,Cable-episodic,United States of America,11220
+610985,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 10:34:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+610979,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 10:00:00 PM,11/10/2021 10:24:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+610972,Shooting Permit,11/13/2021 06:00:00 AM,11/13/2021 03:00:00 PM,11/10/2021 09:52:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK ROW between SPRUCE STREET and ANN STREET, SPRUCE STREET between PARK ROW and WILLIAM STREET, NASSAU STREET between SPRUCE STREET and BEEKMAN STREET, BEEKMAN STREET between PARK ROW and WILLIAM STREET, FRANKFORT STREET between PARK ROW and GOLD STREET",Manhattan,1,"1, 5",Commercial,Commercial,United States of America,"10007, 10038"
+610962,Shooting Permit,11/18/2021 06:00:00 AM,11/18/2021 08:00:00 PM,11/10/2021 09:33:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 6 AVENUE and 7 AVENUE, WEST 28 STREET between 6 AVENUE and BROADWAY, WEST 28 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between WEST 29 STREET and WEST 28 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10016"
+610961,Shooting Permit,11/17/2021 02:00:00 AM,11/17/2021 07:00:00 PM,11/10/2021 09:31:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","PERRY STREET between WEST 4 STREET and BLEEKER STREET, 7 AVENUE SOUTH between WEST 11 STREET and CHARLES STREET, WAVERLY PLACE between WEST 11 STREET and PERRY STREET",Manhattan,2,6,Television,Variety,United States of America,10014
+610952,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 05:00:00 PM,11/10/2021 09:15:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between SOUTH STREET and WATER STREET, OLD SLIP between WATER STREET and SOUTH STREET, WATER STREET between BROAD STREET and OLD SLIP, HANOVER SQUARE between PEARL STREET and WATER STREET",Manhattan,"1, 3","1, 5",Commercial,Commercial,United States of America,"10002, 10004, 10005, 10038, 10041"
+610951,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 07:00:00 PM,11/10/2021 09:14:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","64 PLACE between CATALPA AVENUE and 68 AVENUE, 64 STREET between CATALPA AVENUE and 68 AVENUE, 65 PLACE between CATALPA AVENUE and 68 AVENUE, CATALPA AVENUE between 65 STREET and 65 PLACE, 68 AVENUE between 65 STREET and 64 PLACE, 68 AVENUE between 64 STREET and 64 PLACE, DECATUR STREET between FOREST AVENUE and MYRTLE AVENUE",Queens,5,104,Television,Children,United States of America,"11379, 11385"
+610947,Shooting Permit,11/16/2021 01:00:00 AM,11/16/2021 10:00:00 PM,11/10/2021 09:05:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 26 STREET and EAST 25 STREET, 3 AVENUE between EAST 25 STREET and EAST 24 STREET",Manhattan,6,13,Television,Variety,United States of America,10010
+610942,Shooting Permit,11/15/2021 05:30:00 AM,11/15/2021 07:00:00 PM,11/10/2021 08:13:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET",Manhattan,2,9,Film,Feature,United States of America,10012
+610940,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 06:00:00 PM,11/10/2021 08:02:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between BROADWAY and CHURCH STREET, BROADWAY between WALKER STREET and FRANKLIN STREET",Manhattan,"1, 2","1, 5, 6",Television,Variety,United States of America,"10013, 10014"
+610937,Shooting Permit,11/14/2021 11:00:00 AM,11/14/2021 09:00:00 PM,11/10/2021 06:23:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between SPRING STREET and VAN DAM STREET, SPRING STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,2,1,Television,Variety,United States of America,10013
+610936,Shooting Permit,11/12/2021 12:30:00 PM,11/13/2021 01:00:00 AM,11/10/2021 06:21:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between 69 STREET and MT OLIVET CRESCENT,Queens,"5, 6, 9","104, 75",Film,Feature,United States of America,"11375, 11379, 11385, 11415, 11421"
+610934,Shooting Permit,11/11/2021 12:00:00 PM,11/12/2021 01:00:00 AM,11/10/2021 06:03:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","84 AVENUE between MYRTLE AVENUE and BESSEMER STREET, MYRTLE AVENUE between PARK LANE SOUTH and WOODHAVEN BOULEVARD",Queens,"82, 9",102,Film,Feature,United States of America,"11385, 11418"
+610916,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 07:00:00 PM,11/09/2021 06:35:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 27 STREET, 11 AVENUE between WEST 33 STREET and WEST 30 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 26 STREET, 12 AVENUE between WEST 27 STREET and WEST 26 STREET, 12 AVENUE between WEST 26 STREET and WEST 24 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+610914,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 09:00:00 PM,11/09/2021 06:13:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 36 AVENUE, 35 AVENUE between 37 STREET and 36 STREET, 35 AVENUE between 37 STREET and STEINWAY STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,1,"114, 94",Television,Episodic series,United States of America,"11101, 11106, 11222"
+610911,Shooting Permit,11/15/2021 01:00:00 AM,11/15/2021 06:00:00 PM,11/09/2021 05:26:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 1 STREET between 1 AVENUE and 2 AVENUE,Manhattan,3,"5, 9",Still Photography,Not Applicable,United States of America,"10002, 10003"
+610907,Shooting Permit,11/14/2021 06:00:00 AM,11/14/2021 09:00:00 PM,11/09/2021 04:50:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 ROAD and 44 AVENUE",Queens,2,108,Commercial,Commercial,United States of America,11101
+610905,Shooting Permit,11/11/2021 09:00:00 AM,11/11/2021 11:00:00 PM,11/09/2021 04:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610902,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 08:00:00 PM,11/09/2021 04:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 7 AVENUE and 6 AVENUE, WEST 28 STREET between 6 AVENUE and BROADWAY, WEST 28 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between WEST 29 STREET and WEST 28 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10016"
+610896,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 11:00:00 PM,11/09/2021 04:02:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610895,Shooting Permit,11/11/2021 09:30:00 AM,11/12/2021 12:00:00 AM,11/09/2021 04:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and JOHN STREET, SOUTH STREET between BEEKMAN STREET and PECK SLIP, PECK SLIP between SOUTH STREET and FRONT STREET, BEEKMAN STREET between SOUTH STREET and WATER STREET, JOHN STREET between SOUTH STREET and WATER STREET, WILLIAM STREET between STONE STREET and WALL STREET, HANOVER SQUARE between PEARL STREET and WATER STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, HANOVER STREET between WALL STREET and PEARL STREET, BEAVER STREET between HANOVER STREET and PEARL STREET, WATER STREET between OLD SLIP and GOUVERNEUR LANE",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005, 10038"
+610870,Shooting Permit,11/14/2021 06:00:00 AM,11/14/2021 06:00:00 PM,11/09/2021 02:42:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",SCHOLES STREET between BOGART STREET and WATERBURY STREET,Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11206, 11222, 11237"
+610866,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 09:00:00 PM,11/09/2021 02:36:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610865,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 01:00:00 PM,11/09/2021 02:35:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610850,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 11:00:00 PM,11/09/2021 01:58:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610848,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 09:00:00 PM,11/09/2021 01:52:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","ORIENT AVENUE between OLIVE STREET and METROPOLITAN AVENUE, MASPETH AVENUE between CONSELYEA STREET and OLIVE STREET, METROPOLITAN AVENUE between ORIENT AVENUE and OLIVE STREET, OLIVE STREET between MASPETH AVENUE and DEVOE STREET, DEVOE STREET between BUSHWICK AVENUE and OLIVE STREET, CONSELYEA STREET between HUMBOLDT STREET and WOODPOINT ROAD",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11211
+610847,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 09:00:00 PM,11/09/2021 01:49:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between DEAN STREET and WYCKOFF STREET, BERGEN STREET between BOND STREET and HOYT STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11217
+610841,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 10:00:00 PM,11/09/2021 01:23:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between 11 AVENUE and WEST SIDE HIGHWAY, WEST 49 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 49 STREET, 11 AVENUE between WEST 47 STREET and WEST 48 STREET, WEST 47 STREET between 11 AVENUE and WEST SIDE HIGHWAY, WEST 48 STREET between 11 AVENUE and WEST SIDE HIGHWAY, WEST 45 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,"10019, 10036"
+610835,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 11:00:00 PM,11/09/2021 12:55:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610832,Shooting Permit,11/10/2021 04:00:00 AM,11/10/2021 10:00:00 AM,11/09/2021 12:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+610821,Rigging Permit,11/11/2021 09:00:00 AM,11/11/2021 05:00:00 PM,11/09/2021 12:30:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, BEAVER STREET between PEARL STREET and HANOVER STREET",Manhattan,1,1,Film,Feature,United States of America,10005
+610820,Shooting Permit,11/14/2021 06:00:00 AM,11/14/2021 09:00:00 PM,11/09/2021 12:29:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between GOLD STREET and PEARL STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, JOHN STREET between WATER STREET and PEARL STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+610817,Shooting Permit,11/12/2021 06:30:00 AM,11/12/2021 10:00:00 PM,11/09/2021 12:26:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between JEWEL STREET and DIAMOND STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610815,Shooting Permit,11/12/2021 09:00:00 AM,11/12/2021 11:00:00 PM,11/09/2021 12:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+610805,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 11:59:00 PM,11/09/2021 11:49:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 57 STREET and WEST 56 STREET, WEST 56 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Not Applicable,United States of America,10019
+610804,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 11:59:00 PM,11/09/2021 11:44:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 57 STREET and WEST 56 STREET, WEST 57 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Not Applicable,United States of America,10019
+610801,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 10:00:00 PM,11/09/2021 11:29:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE, 43 AVENUE between 22 STREET and 23 STREET, 22 STREET between 44 AVENUE and 43 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Not Applicable,United States of America,11101
+610797,Shooting Permit,11/15/2021 06:00:00 AM,11/16/2021 01:00:00 AM,11/09/2021 11:23:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, 12 STREET between 38 AVENUE and 40 AVENUE, 13 STREET between 38 AVENUE and 40 AVENUE, 40 AVENUE between 12 STREET and 21 STREET, 40 AVENUE between 10 STREET and 12 STREET, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+610792,Shooting Permit,11/13/2021 07:00:00 AM,11/13/2021 09:00:00 PM,11/09/2021 10:58:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+610790,Shooting Permit,11/13/2021 07:00:00 AM,11/13/2021 05:00:00 PM,11/09/2021 10:58:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 103 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 105 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"11, 64","22, 23",Film,Feature,United States of America,10029
+610774,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 09:00:00 PM,11/09/2021 10:20:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610772,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 09:00:00 PM,11/09/2021 10:19:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610771,Shooting Permit,11/14/2021 03:00:00 PM,11/14/2021 11:59:00 PM,11/09/2021 10:06:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between 8 AVENUE and BROADWAY,Manhattan,5,18,Television,Variety,United States of America,10036
+610765,Shooting Permit,11/11/2021 08:00:00 AM,11/11/2021 10:00:00 PM,11/09/2021 09:13:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARD STREET between VAN DYKE STREET and BEARD STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, VAN DYKE STREET between RICHARD STREET and DWIGHT STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+610764,Shooting Permit,11/12/2021 05:30:00 AM,11/12/2021 07:00:00 PM,11/09/2021 09:07:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between BLEECKER STREET and BOND STREET, MULBERRY STREET between EAST HOUSTON STREET and BLEECKER STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET",Manhattan,2,"6, 9",Film,Feature,United States of America,10012
+610762,Shooting Permit,11/11/2021 05:30:00 AM,11/11/2021 07:00:00 PM,11/09/2021 08:53:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","MULBERRY STREET between BLEECKER STREET and EAST HOUSTON STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET, LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between BOND STREET and BLEECKER STREET",Manhattan,2,"6, 9",Film,Feature,United States of America,10012
+610761,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 10:00:00 PM,11/09/2021 08:53:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 63 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET, 3 AVENUE between EAST 62 STREET and EAST 63 STREET, LEXINGTON AVENUE between EAST 61 STREET and EAST 62 STREET, 3 AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 62 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 63 STREET and EAST 64 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+610760,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 09:00:00 PM,11/09/2021 08:50:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610757,Shooting Permit,11/11/2021 08:00:00 AM,11/11/2021 06:00:00 PM,11/09/2021 08:11:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between 6 AVENUE and 7 AVENUE,Manhattan,2,6,Television,Variety,United States of America,"10003, 10011"
+610755,Shooting Permit,11/11/2021 06:00:00 AM,11/11/2021 11:00:00 PM,11/09/2021 07:40:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE FRONT PARKWAY between BEACH 92 STREET and BEACH 99 STREET, SHORE FRONT PARKWAY between BEACH 102 STREET and BEACH 105 STREET, BEACH 102ND ST between SHORE FRONT PARKWAY and ROCKAWAY BEACH BLVD, ROCKAWAY BEACH BOULEVARD between BEACH 94 STREET and BEACH 92 STREET, BEACH 92 STREET between ROCKAWAY FWY and HOLLAND AVENUE, HOLLAND AVENUE between BEACH 91 STREET and BEACH 93 STREET, BEACH 91 STREET between ROCKAWAY BEACH BOULEVARD and HOLLAND AVENUE, ROCKAWAY BEACH BOULEVARD between BEACH 91 STREET and BEACH 90 STREET, CROSS BAY PARKWAY between SHORE FRONT PARKWAY and ROCKAWAY BEACH BOULEVARD",Queens,14,"100, 101",Television,Episodic series,United States of America,"11691, 11693, 11694"
+610723,Shooting Permit,11/17/2021 06:00:00 AM,11/17/2021 11:59:00 PM,11/08/2021 06:22:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+610716,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 11:00:00 PM,11/08/2021 05:34:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 21 STREET and 23 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between 43 AVENUE and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+610715,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 11:00:00 PM,11/08/2021 05:27:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVENUE and DEAD END, NEWEL STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between NEWEL STREET and HUMBOLDT STREET, DRIGGS AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610714,Shooting Permit,11/16/2021 06:00:00 AM,11/16/2021 10:00:00 PM,11/08/2021 05:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+610713,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 09:00:00 PM,11/08/2021 05:03:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+610710,Shooting Permit,11/14/2021 07:00:00 AM,11/14/2021 09:00:00 PM,11/08/2021 04:41:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+610701,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 10:00:00 PM,11/08/2021 04:13:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610689,Shooting Permit,11/11/2021 06:00:00 AM,11/11/2021 07:00:00 PM,11/08/2021 03:52:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between NASSAU AVENUE and DRIGGS AVENUE, MANHATTAN AVENUE between NORMAN AVENUE and MESEROLE AVENUE",Brooklyn,"1, 2","84, 94",Commercial,Commercial,United States of America,"11201, 11222"
+610680,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 10:00:00 PM,11/08/2021 03:39:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+610662,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 10:00:00 PM,11/08/2021 01:59:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 7 AVENUE and BROADWAY, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10019, 10020, 10022, 10152, 10171"
+610660,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 11:00:00 PM,11/08/2021 01:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 21 STREET between 43 AVENUE and 44 AVENUE, 43 AVENUE between 22 STREET and 23 STREET, 22 STREET between 44 AVENUE and 43 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Not Applicable,United States of America,11101
+610619,Shooting Permit,11/10/2021 05:00:00 AM,11/10/2021 07:00:00 PM,11/08/2021 12:57:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",30 PLACE between 48 AVENUE and HUNTERS POINT AVENUE,Queens,2,108,Commercial,Commercial,United States of America,11101
+610613,DCAS Prep/Shoot/Wrap Permit,11/13/2021 06:00:00 AM,11/13/2021 05:00:00 PM,11/08/2021 12:49:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between BROADWAY and CENTRE STREET, BROADWAY between CHAMBERS STREET and PARK ROW, CHAMBERS STREET between CHURCH STREET and BROADWAY, LAFAYETTE STREET between WORTH STREET and DUANE STREET, CENTRE STREET between CHAMBERS STREET and PARK ROW",Manhattan,1,"1, 5",Commercial,Commercial,United States of America,"10007, 10038, 10279"
+610601,Shooting Permit,11/12/2021 08:00:00 AM,11/13/2021 12:00:00 AM,11/08/2021 12:21:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between THOMSON AVENUE and 32 PLACE, SKILLMAN AVENUE between 32 PLACE and 39 STREET, VAN DAM STREET between SKILLMAN AVENUE and THOMSON AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 44 STREET, W 43 STREET between MADISON AVENUE and 6 AVENUE",Queens,"1, 2, 5","108, 114, 14",Film,Feature,United States of America,"10017, 10036, 11101"
+610594,Shooting Permit,11/11/2021 11:00:00 AM,11/12/2021 02:00:00 AM,11/08/2021 11:59:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","74 AVENUE between 175 STREET and UTOPIA PARKWAY, UTOPIA PARKWAY between JEWEL AVENUE and 73 AVENUE, JEWEL AVENUE between UTOPIA PARKWAY and 178 STREET, 73 AVENUE between UTOPIA PARKWAY and 179 STREET, 73 AVENUE between 175 STREET and UTOPIA PARKWAY, UTOPIA PARKWAY between 73 AVENUE and 75 AVENUE",Queens,8,107,Film,Feature,United States of America,"11365, 11366"
+610580,Shooting Permit,11/10/2021 10:00:00 AM,11/11/2021 02:00:00 AM,11/08/2021 11:01:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAVESEND NECK ROAD between MCDONALD AVENUE and VAN SICKLEN STREET, WEST STREET between GRAVESEND NECK ROAD and AVENUE W, GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD EAST",Brooklyn,15,61,WEB,Not Applicable,United States of America,11223
+610571,Shooting Permit,11/10/2021 10:00:00 AM,11/11/2021 02:00:00 AM,11/08/2021 10:21:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, EAST 41 STREET between FIFTH AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10019, 10020, 10022, 10112"
+610562,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 09:00:00 PM,11/08/2021 09:48:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+610558,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 09:00:00 PM,11/08/2021 09:28:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 43 STREET and 44 STREET, 2 AVENUE between 44 STREET and 45 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+610545,Shooting Permit,11/10/2021 10:00:00 AM,11/10/2021 11:00:00 PM,11/08/2021 08:26:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","BLEECKER STREET between WOODWARD AVENUE and ONDERDONK AVENUE, ONDERDONK AVENUE between BLEECKER STREET and GREENE AVENUE, ONDERDONK AVENUE between STANHOPE STREET and STOCKHOLM STREET, WOODWARD AVENUE between STARR STREET and STANHOPE STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, STANHOPE STREET between WOODWARD AVENUE and FAIRVIEW AVENUE, STANHOPE STREET between FAIRVIEW AVENUE and GRANDVIEW AVENUE, SENECA AVENUE between GREENE AVENUE and BLEECKER STREET, GREENE AVENUE between SENECA AVENUE and CYPRESS AVENUE, BLEECKER STREET between SENECA AVENUE and CYPRESS AVENUE, BLEECKER STREET between SENECA AVENUE and CYPRESS AVENUE, BLEECKER STREET between SENECA AVENUE and ONDERDONK AVENUE, CYPRESS AVENUE between BLEECKER STREET and GREENE AVENUE, MENAHAN STREET between SENECA AVENUE and CYPRESS AVENUE, ONDERDONK AVENUE between BLEECKER STREET and MENAHAN STREET",Queens,"4, 5","104, 83",Television,Cable-episodic,United States of America,"11237, 11385"
+610543,Shooting Permit,11/11/2021 08:00:00 AM,11/12/2021 01:00:00 AM,11/08/2021 08:14:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STATE STREET between BRIDGE STREET and PEARL STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET, WHITEHALL STREET between PEARL STREET and BRIDGE STREET, PEARL STREET between STATE STREET and BROAD STREET, PEARL STREET between BROAD STREET and COENTIES SLIP, GREENWICH STREET between CARLISLE STREET and RECTOR STREET, WASHINGTON STREET between JOSEPH P WARD STREET and RECTOR STREET, WEST THAMES STREET between WEST STREET and BATTERY PLACE, 3 PLACE between BATTERY PLACE and LITTLE WEST STREET, LITTLE WEST STREET between 3 PLACE and 2 PLACE",Manhattan,1,1,Commercial,Commercial,United States of America,"10004, 10006, 10280"
+610537,Shooting Permit,11/10/2021 07:00:00 AM,11/11/2021 01:00:00 AM,11/08/2021 07:07:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between 6 AVENUE and COLUMBUS CIRCLE, WEST 56 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 58 STREET and CENTRAL PARK SOUTH, 6 AVENUE between WEST 57 STREET and WEST 58 STREET",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,10019
+610536,Shooting Permit,11/10/2021 11:30:00 AM,11/11/2021 01:30:00 AM,11/08/2021 05:54:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 178 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 174 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 177 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+610529,Shooting Permit,11/10/2021 09:00:00 PM,11/11/2021 06:00:00 AM,11/07/2021 05:48:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 23 STREET and WEST 24 STREET, 10 AVENUE between WEST 24 STREET and WEST 25 STREET",Manhattan,"1, 4, 5, 6","1, 10, 13, 17",WEB,Not Applicable,United States of America,"10001, 10010, 10011, 10017, 10038"
+610527,Theater Load in and Load Outs,11/20/2021 12:01:00 AM,11/21/2021 06:00:00 AM,11/07/2021 04:12:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+610507,Shooting Permit,11/29/2021 06:00:00 AM,12/01/2021 11:59:00 PM,11/06/2021 05:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10020, 10036"
+610506,Shooting Permit,11/23/2021 06:00:00 AM,11/23/2021 11:59:00 PM,11/06/2021 05:47:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+610504,Shooting Permit,11/25/2021 02:00:00 AM,11/25/2021 02:00:00 PM,11/06/2021 05:42:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+610503,Shooting Permit,11/24/2021 06:00:00 AM,11/24/2021 11:59:00 PM,11/06/2021 05:32:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,News,United States of America,10023
+610500,Shooting Permit,11/10/2021 05:30:00 AM,11/10/2021 08:00:00 PM,11/06/2021 03:37:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BOND STREET and BLEECKER STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, MULBERRY STREET between BLEECKER STREET and EAST HOUSTON STREET, BLEECKER STREET between MOTT STREET and MULBERRY STREET, LAFAYETTE STREET between BOND STREET and BLEECKER STREET",Manhattan,2,"6, 9",Film,Feature,United States of America,10012
+610453,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 09:00:00 PM,11/05/2021 04:36:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, COOK STREET between WHITE STREET and BOGART STREET, COOK STREET between WHITE STREET and BUSHWICK AVENUE, BUSHWICK AVENUE between COOK STREET and FLUSHING AVENUE, WHITE STREET between COOK STREET and VARET STREET, MOORE STREET between BUSHWICK AVENUE and AVENUE OF PUERTO RICO, AVENUE OF PUERTO RICO between VARET STREET and SEIGEL STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+610450,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 11:00:00 PM,11/05/2021 04:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610446,Shooting Permit,11/18/2021 06:00:00 AM,11/26/2021 11:00:00 PM,11/05/2021 04:21:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 5 AVENUE, WEST 53 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 53 STREET and WEST 52 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Special/Awards Show,United States of America,"10019, 10022, 10023, 10103"
+610440,Shooting Permit,11/10/2021 09:00:00 AM,11/10/2021 10:00:00 PM,11/05/2021 03:36:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between MT CARMEL PLACE and FIRST AVENUE, FIRST AVENUE between EAST 28 STREET and EAST 29 STREET, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, EAST 26 STREET between SECOND AVENUE and THIRD AVENUE, PARK AVENUE SOUTH between EAST 27 STREET and EAST 28 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 29 STREET between 1 AVENUE and 2 AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+610439,Shooting Permit,11/10/2021 06:00:00 AM,11/10/2021 11:00:00 PM,11/05/2021 03:36:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+610438,Shooting Permit,11/09/2021 06:00:00 AM,11/09/2021 11:00:00 PM,11/05/2021 03:23:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+610434,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 10:00:00 PM,11/05/2021 03:11:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between HALL STREET and GRAND AVENUE, MYRTLE AVENUE between GRAND AVENUE and STEUBEN STREET, PARK AVENUE between WASHINGTON AVENUE and HALL STREET, HALL STREET between PARK AVENUE and FLUSHING AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+610432,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 11:00:00 PM,11/05/2021 03:08:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+610421,Shooting Permit,11/06/2021 05:00:00 AM,11/06/2021 10:00:00 AM,11/05/2021 02:24:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+610420,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 10:00:00 PM,11/05/2021 02:24:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and 5 AVENUE, WEST 23 STREET between 6 AVENUE and 5 AVENUE, WEST 21 STREET between 6 AVENUE and 5 AVENUE, WEST 22 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 23 STREET and WEST 21 STREET, GRAMERCY PARK SOUTH between PARK AVENUE SOUTH and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, IRVING PLACE between EAST 16 STREET and EAST 15 STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 20 STREET and EAST 19 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 20 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and 3 AVENUE",Manhattan,"4, 5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010, 10011"
+610411,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 11:00:00 PM,11/05/2021 01:37:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610409,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 09:00:00 PM,11/05/2021 01:25:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610407,Shooting Permit,11/14/2021 08:00:00 PM,11/14/2021 11:59:00 PM,11/05/2021 01:15:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 57 STREET and WEST 56 STREET, WEST 56 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Not Applicable,United States of America,10019
+610405,Shooting Permit,11/15/2021 07:00:00 AM,11/15/2021 11:00:00 PM,11/05/2021 01:12:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610404,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 07:00:00 PM,11/05/2021 01:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",STILLWELL AVENUE between SURF AVENUE and MERMAID AVENUE,Brooklyn,13,60,Still Photography,Not Applicable,United States of America,11224
+610395,Shooting Permit,11/10/2021 08:00:00 AM,11/10/2021 07:00:00 PM,11/05/2021 12:39:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",PIKE STREET between MONROE STREET and MADISON STREET,Manhattan,3,"5, 7",WEB,Not Applicable,United States of America,10002
+610390,Shooting Permit,11/07/2021 06:00:00 AM,11/07/2021 08:00:00 PM,11/05/2021 12:18:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 7 AVENUE and 5 AVENUE, WEST 46 STREET between 6 AVENUE and 5 AVENUE, EAST 46 STREET between 5 AVENUE and MADISON AVENUE, WEST 48 STREET between 6 AVENUE and 5 AVENUE, WEST 51 STREET between 6 AVENUE and 5 AVENUE, EAST 47 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, WEST 52 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10016, 10017, 10019, 10020, 10022, 10036"
+610385,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 11:59:00 PM,11/05/2021 12:05:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE X between WEST 2 STREET and WEST 3 STREET, BOUCK COURT between WEST 3 STREET and SHELL ROAD",Brooklyn,15,61,WEB,Not Applicable,United States of America,11223
+610381,Shooting Permit,11/12/2021 06:00:00 AM,11/12/2021 10:00:00 PM,11/05/2021 11:57:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 20 STREET and WEST 17 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 15 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5","10, 104",Television,Episodic series,United States of America,"10011, 11385"
+610371,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 10:00:00 PM,11/05/2021 11:32:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+610370,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 10:00:00 PM,11/05/2021 11:31:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+610368,Shooting Permit,11/16/2021 07:00:00 AM,11/16/2021 08:00:00 PM,11/05/2021 11:19:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 37 STREET between PARK AVENUE and MADISON AVENUE,Manhattan,6,17,Still Photography,Not Applicable,United States of America,10016
+610360,Shooting Permit,11/08/2021 07:00:00 AM,11/09/2021 07:00:00 PM,11/05/2021 10:33:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",STILLWELL AVENUE between SURF AVENUE and MERMAID AVENUE,Brooklyn,13,60,Still Photography,Not Applicable,United States of America,11224
+610359,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 10:00:00 PM,11/05/2021 10:25:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+610358,Shooting Permit,11/10/2021 06:00:00 AM,11/10/2021 09:00:00 PM,11/05/2021 10:18:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+610357,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 09:00:00 PM,11/05/2021 10:16:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 43 STREET and 44 STREET, 2 AVENUE between 44 STREET and 45 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+610350,Shooting Permit,11/09/2021 06:00:00 AM,11/09/2021 10:00:00 PM,11/05/2021 09:00:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between BEDFORD AVENUE and SPENCER PLACE, FULTON STREET between BEDFORD AVENUE and ARLINGTON PLACE, FULTON STREET between ARLINGTON PLACE and NOSTRAND AVENUE, HALSEY STREET between BEDFORD AVENUE and ARLINGTON PLACE, HALSEY STREET between ARLINGTON PLACE and NOSTRAND AVENUE, HALSEY STREET between NOSTRAND AVENUE and ARLINGTON PLACE, ARLINGTON PLACE between HALSEY STREET and MACON STREET, ARLINGTON PLACE between MACON STREET and FULTON STREET, MACON STREET between ARLINGTON PLACE and NOSTRAND AVENUE, WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END, DEAN STREET between CLASSON AVENUE and FRANKLIN AVENUE",Brooklyn,"1, 3, 8","77, 79, 90",Television,Cable-episodic,United States of America,"11206, 11216, 11238"
+610323,Shooting Permit,11/22/2021 04:00:00 PM,11/23/2021 04:00:00 AM,11/04/2021 09:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between BAY RIDGE AVENUE and OVINGTON AVENUE,Brooklyn,10,68,Student,Student Film,United States of America,11209
+610315,Shooting Permit,11/09/2021 06:00:00 AM,11/09/2021 09:00:00 PM,11/04/2021 06:29:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610310,Shooting Permit,11/10/2021 08:00:00 AM,11/10/2021 10:00:00 PM,11/04/2021 05:56:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Theater,Theater,United States of America,10036
+610302,Shooting Permit,11/11/2021 09:00:00 AM,11/11/2021 11:00:00 PM,11/04/2021 04:40:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 57 STREET and WEST 58 STREET, 11 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 59 STREET between 11 AVENUE and 10 AVENUE, WEST 58 STREET between 11 AVENUE and 10 AVENUE, WEST 58 STREET between 9 AVENUE and 8 AVENUE, WEST 57 STREET between 10 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 8 AVENUE, FREEDOM PLACE SOUTH between WEST 60 STREET and WEST 59 STREET",Manhattan,"4, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+610293,Shooting Permit,11/09/2021 09:00:00 AM,11/10/2021 11:30:00 PM,11/04/2021 04:13:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between MULBERRY STREET and MOTT STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, BROOME STREET between BROADWAY and LAFAYETTE STREET, PRINCE STREET between MOTT STREET and BOWERY, PRINCE STREET between LAFAYETTE STREET and MULBERRY STREET, MULBERRY STREET between PRINCE STREET and SPRING STREET, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, CROSBY STREET between PRINCE STREET and BROOME STREET, MOTT STREET between PRINCE STREET and SPRING STREET, LAFAYETTE STREET between EAST HOUSTON STREET and JERSEY STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+610289,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 11:00:00 PM,11/04/2021 04:00:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610288,Shooting Permit,11/12/2021 07:00:00 AM,11/12/2021 11:00:00 PM,11/04/2021 03:59:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+610287,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 11:00:00 PM,11/04/2021 03:47:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and 5 AVENUE, WEST 23 STREET between 6 AVENUE and 5 AVENUE, WEST 21 STREET between 6 AVENUE and 5 AVENUE, WEST 22 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 23 STREET and WEST 21 STREET, GRAMERCY PARK SOUTH between PARK AVENUE SOUTH and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, IRVING PLACE between EAST 16 STREET and EAST 15 STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, EAST 21 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 20 STREET and EAST 19 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 20 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and 3 AVENUE",Manhattan,"4, 5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010, 10011"
+610286,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 10:30:00 PM,11/04/2021 03:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and RIVINGTON STREET, DELANCEY STREET between BOWERY and FORSYTH STREET, FORSYTH STREET between DELANCEY STREET and BROOME STREET, KENMARE STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BROOME STREET between MOTT STREET and BOWERY",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10012, 10013"
+610284,Shooting Permit,11/09/2021 08:00:00 AM,11/09/2021 10:00:00 PM,11/04/2021 03:33:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 24 STREET and CRESCENT STREET, 44 DRIVE between HUNTER STREET and 23 STREET, CRESCENT STREET between 44 ROAD and HUNTER STREET, CRESCENT STREET between 43 AVENUE and 44 ROAD, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, 44 DRIVE between JACKSON AVENUE and HUNTER STREET, HUNTER STREET between 43 AVENUE and CRESCENT STREET, HUNTER STREET between 27 STREET and 42 ROAD, 44 DRIVE between JACKSON AVENUE and THOMPSON AVENUE, JACKSON AVENUE between QUEENS STREET and ORCHARD STREET, QUEENS STREET between DEAD END and JACKSON AVENUE, JACKSON AVENUE between QUEENS STREET and DUTCH KILLS STREET, DUTCH KILLS STREET between JACKSON AVENUE and DEAD END",Queens,"0, 2","0, 108",Television,Episodic series,United States of America,"0, 11101"
+610251,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 10:00:00 PM,11/04/2021 01:52:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between BOGART STREET and WHITE STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+610249,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 09:00:00 PM,11/04/2021 01:41:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610248,Shooting Permit,11/09/2021 08:00:00 AM,11/09/2021 09:00:00 PM,11/04/2021 01:38:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 5 AVENUE and 6 AVENUE, 24 STREET between 4 AVENUE and 5 AVENUE, 5 AVENUE between 24 STREET and 25 STREET, WEST 20 STREET between 10 AVENUE and 11 AVENUE, 5 AVENUE between 26 STREET and 29 STREET, 25 STREET between 4 AVENUE and 5 AVENUE, 27 STREET between 4 AVENUE and 5 AVENUE, WEST 26 STREET between 11 AVENUE and WEST SIDE HIGHWAY, WEST 26 STREET between 11 AVENUE and WEST SIDE HIGHWAY, WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET, 11 AVENUE between WEST 27 STREET and WEST 28 STREET, WEST SIDE HIGHWAY between WEST 24 STREET and WEST 26 STREET",Brooklyn,"4, 7","10, 72",Television,Episodic series,United States of America,"10001, 10011, 11232"
+610244,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 10:00:00 PM,11/04/2021 01:26:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+610243,Shooting Permit,11/05/2021 11:00:00 AM,11/05/2021 01:00:00 PM,11/04/2021 01:24:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",BATH AVENUE between BAY 22 STREET and 19 AVENUE,Brooklyn,11,62,WEB,Not Applicable,United States of America,11214
+610239,Shooting Permit,11/09/2021 06:00:00 AM,11/09/2021 10:00:00 PM,11/04/2021 01:06:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between 6 AVENUE and BARROW STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+610240,Shooting Permit,11/10/2021 06:00:00 AM,11/10/2021 10:00:00 PM,11/04/2021 01:06:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PLACE between 6 AVENUE and BARROW STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+610237,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 09:00:00 PM,11/04/2021 01:03:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 43 STREET and 44 STREET, 2 AVENUE between 44 STREET and 45 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+610235,Shooting Permit,11/10/2021 12:00:00 PM,11/11/2021 03:00:00 AM,11/04/2021 12:58:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 13 STREET, 11 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 11 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between 9 STREET and 11 STREET, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET",Queens,2,108,Film,Feature,United States of America,11101
+610233,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 09:00:00 PM,11/04/2021 12:45:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+610231,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 09:00:00 PM,11/04/2021 12:41:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+610221,Shooting Permit,11/10/2021 06:00:00 AM,11/10/2021 10:00:00 PM,11/04/2021 12:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between CANAL STREET and BROOME STREET, GRAND STREET between CHRYSTIE STREET and BOWERY, BOWERY between HESTER STREET and BROOME STREET, BROADWAY between WEST 3 STREET and EAST HOUSTON STREET, BLEEKER STREET between MERCER STREET and BROADWAY, MERCER STREET between BLEEKER STREET and WEST 3 STREET",Manhattan,"2, 3","5, 6, 9",Commercial,Commercial,United States of America,"10002, 10012, 10013"
+610214,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 09:00:00 PM,11/04/2021 11:46:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between WEST SIDE HIGHWAY and 10 AVENUE, WEST 18 STREET between WEST SIDE HIGHWAY and 10 AVENUE",Manhattan,4,10,Film,Feature,United States of America,10011
+610213,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 07:00:00 PM,11/04/2021 11:44:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+610208,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 06:00:00 PM,11/04/2021 11:30:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between 5 AVENUE and MADISON AVENUE, EAST 36 STREET between 5 AVENUE and MADISON AVENUE, WEST 37 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 49 STREET and WEST 50 STREET, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Film,Feature,United States of America,"10016, 10018, 10019, 10020, 10036"
+610188,Shooting Permit,11/06/2021 07:00:00 AM,11/06/2021 04:00:00 PM,11/04/2021 10:53:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+610179,Shooting Permit,11/10/2021 09:00:00 AM,11/11/2021 12:00:00 AM,11/04/2021 10:14:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH FOURTH STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH FOURTH STREET and NORTH THIRD STREET, WYTHE AVENUE between NORTH THIRD STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH FIRST STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH THIRD STREET, NORTH THIRD STREET between KENT AVENUE and WYTHE AVENUE, NORTH THIRD STREET between WYTHE AVENUE and BERRY STREET, SOUTH 1 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between GRAND STREET and SOUTH FIRST STREET, WYTHE AVENUE between GRAND STREET and SOUTH FIRST STREET, WYTHE AVENUE between SOUTH FIRST STREET and SOUTH SECOND STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+610173,Shooting Permit,11/09/2021 05:30:00 AM,11/09/2021 07:30:00 PM,11/04/2021 10:06:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between BLEECKER STREET and BOND STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, MULBERRY STREET between EAST HOUSTON STREET and BLEECKER STREET, LAFAYETTE STREET between BOND STREET and BLEECKER STREET, BLEECKER STREET between MOTT STREET and MULBERRY STREET",Manhattan,2,"6, 9",Film,Feature,United States of America,10012
+610169,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 10:00:00 PM,11/04/2021 09:56:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET, 10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+610162,Shooting Permit,11/09/2021 08:00:00 AM,11/10/2021 12:00:00 AM,11/04/2021 09:33:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022"
+610161,Shooting Permit,11/08/2021 08:00:00 AM,11/08/2021 11:30:00 PM,11/04/2021 09:32:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between BEDFORD AVENUE and KENT AVENUE, SOUTH 5 STREET between BERRY STREET and KENT AVENUE, WYTHE AVENUE between BROADWAY and SOUTH 5 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+610150,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 08:00:00 PM,11/04/2021 08:27:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 56 STREET and EAST 50 STREET, EAST 55 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 55 STREET between 3 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 53 STREET, 3 AVENUE between EAST 53 STREET and EAST 52 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10022, 10152"
+610148,Theater Load in and Load Outs,11/19/2021 05:00:00 AM,11/22/2021 01:00:00 PM,11/04/2021 06:31:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+610147,Theater Load in and Load Outs,11/15/2021 05:00:00 AM,11/18/2021 04:59:00 AM,11/04/2021 06:23:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+610146,Theater Load in and Load Outs,11/11/2021 06:00:00 AM,11/14/2021 08:00:00 AM,11/04/2021 06:15:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+610145,Theater Load in and Load Outs,11/06/2021 06:00:00 AM,11/07/2021 11:00:00 PM,11/04/2021 05:56:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+610112,Shooting Permit,11/18/2021 07:00:00 AM,11/18/2021 07:00:00 PM,11/03/2021 05:13:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLIAM STREET between BEAVER STREET and STONE STREET, 7 AVENUE between WEST 49 STREET and WEST 50 STREET",Manhattan,"1, 5","1, 18",Documentary,Not Applicable,United States of America,"10004, 10019"
+610103,Shooting Permit,11/20/2021 09:00:00 AM,11/20/2021 01:00:00 PM,11/03/2021 04:56:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK WEST between PRESIDENT STREET and PLAZA STREET WEST, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET",Brooklyn,"2, 55, 6","6, 78",Documentary,Not Applicable,United States of America,"10014, 11215"
+610099,Theater Load in and Load Outs,11/27/2021 12:01:00 AM,11/28/2021 11:59:00 PM,11/03/2021 04:48:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610098,Shooting Permit,11/17/2021 07:00:00 AM,11/17/2021 07:00:00 PM,11/03/2021 04:47:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 17 STREET between UNION SQUARE WEST and 5 AVENUE,Manhattan,5,13,Documentary,Not Applicable,United States of America,10003
+610094,Theater Load in and Load Outs,11/26/2021 12:01:00 AM,11/26/2021 11:59:00 PM,11/03/2021 04:39:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610085,Theater Load in and Load Outs,11/29/2021 12:01:00 AM,12/02/2021 06:00:00 AM,11/03/2021 04:17:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610084,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 09:00:00 PM,11/03/2021 04:14:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between PRINCE STREET and JERSEY STREET, LAFAYETTE STREET between JERSEY STREET and EAST HOUSTON STREET, LAFAYETTE STREET between EAST HOUSTON STREET and JERSEY STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, PRINCE STREET between MULBERRY STREET and MOTT STREET, PRINCE STREET between LAFAYETTE STREET and MULBERRY STREET, MULBERRY STREET between PRINCE STREET and SPRING STREET, PRINCE STREET between MOTT STREET and BOWERY, MOTT STREET between EAST HOUSTON STREET and PRINCE STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, LA GUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, BLEECKER STREET between LA GUARDIA PLACE and MERCER STREET, MOTT STREET between PRINCE STREET and SPRING STREET",Manhattan,"2, 3","5, 6",Television,Episodic series,United States of America,"10002, 10012"
+610082,Theater Load in and Load Outs,11/22/2021 12:01:00 AM,11/25/2021 06:00:00 AM,11/03/2021 04:09:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610074,Shooting Permit,11/09/2021 06:30:00 AM,11/09/2021 09:00:00 PM,11/03/2021 03:51:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+610072,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 10:00:00 PM,11/03/2021 03:41:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH FOURTH STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH THIRD STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH FIRST STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, NORTH THIRD STREET between KENT AVENUE and WYTHE AVENUE, NORTH THIRD STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+610069,Theater Load in and Load Outs,11/19/2021 12:01:00 AM,11/20/2021 06:00:00 AM,11/03/2021 03:32:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610053,Shooting Permit,11/07/2021 06:00:00 AM,11/07/2021 10:00:00 PM,11/03/2021 02:47:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between ROCKAWAY AVENUE and MOTHER GASTON BOULEVARD, ROCKAWAY AVENUE between PITKIN AVENUE and SUTTER AVENUE, MOTHER GASTON BOULEVARD between PITKIN AVENUE and BELMONT AVENUE, MOTHER GASTON BOULEVARD between BELMONT AVENUE and SUTTER AVENUE, PITKIN AVENUE between WATKINS STREET and MOTHER GASTON BOULEVARD, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11212"
+610052,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/18/2021 11:59:00 PM,11/03/2021 02:44:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+610048,Shooting Permit,11/07/2021 04:00:00 AM,11/07/2021 11:00:00 AM,11/03/2021 02:24:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+610043,Shooting Permit,11/05/2021 11:00:00 AM,11/06/2021 01:00:00 AM,11/03/2021 02:11:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, HANOVER STREET between WALL STREET and EXCHANGE PLACE, WALL STREET between HANOVER STREET and WILLIAM STREET, WILLIAM STREET between EXCHANGE PLACE and WALL STREET, BEAVER STREET between HANOVER STREET and WILLIAM STREET, BEAVER STREET between WILLIAM STREET and BROAD STREET, WILLIAM STREET between EXCHANGE PLACE and BEAVER STREET, WATER STREET between BROAD STREET and COENTIES SLIP, BROAD STREET between WATER STREET and SOUTH STREET, MAIDEN LANE between PEARL STREET and WATER STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and FULTON STREET",Brooklyn,1,"1, 94",Television,Cable-episodic,United States of America,"10004, 10005, 10038, 11222"
+610039,Shooting Permit,11/10/2021 07:00:00 AM,11/10/2021 11:00:00 PM,11/03/2021 02:02:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+610034,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 10:00:00 PM,11/03/2021 01:47:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+610033,Shooting Permit,11/09/2021 06:00:00 AM,11/09/2021 09:00:00 PM,11/03/2021 01:47:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between PIKE STREET and MARKET STREET, MARKET STREET between MONROE STREET and CHERRY STREET, OLIVER STREET between ST JAMES PLACE and HENRY STREET, CATHARINE STREET between MADISON STREET and MONROE STREET, MONROE STREET between CATHERINE STREET and MARKET STREET",Manhattan,3,5,Commercial,Commercial,United States of America,"10002, 10038"
+610030,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 06:30:00 PM,11/03/2021 01:38:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER AVENUE between EAST 153 STREET and EAST 157 STREET, RIVER AVENUE between EAST 157 STREET and EAST 158 STREET",Bronx,4,44,Still Photography,Not Applicable,United States of America,"10451, 10452"
+610026,Shooting Permit,11/08/2021 06:30:00 AM,11/08/2021 09:00:00 PM,11/03/2021 01:25:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 9 AVENUE and 11 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 29 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+610023,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 10:00:00 PM,11/03/2021 01:13:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX TERRACE PLACE between WEST 135 STREET and WEST 134 STREET, WEST 135 STREET between 5 AVENUE and LENOX AVENUE, WEST 134 STREET between DEAD END 1 and DEAD END 2, LENOX AVENUE between WEST 134 STREET and WEST 128 STREET",Manhattan,10,32,Television,Episodic series,United States of America,"10027, 10037"
+610010,Shooting Permit,11/05/2021 11:00:00 AM,11/06/2021 01:00:00 AM,11/03/2021 12:41:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 176 STREET, BROADWAY between WEST 176 STREET and WEST 177 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 174 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+610001,Theater Load in and Load Outs,11/17/2021 12:01:00 AM,11/17/2021 11:59:00 PM,11/03/2021 12:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+609999,DCAS Prep/Shoot/Wrap Permit,11/05/2021 08:30:00 AM,11/05/2021 10:00:00 PM,11/03/2021 12:23:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between BROADWAY and CHURCH STREET, READE STREET between CENTRE STREET and ELK STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+609997,Shooting Permit,11/05/2021 11:00:00 AM,11/05/2021 02:00:00 PM,11/03/2021 12:21:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between BAXTER STREET and CENTRE STREET, CENTRE STREET between PEARL STREET and WORTH STREET, CENTRE STREET between HOGAN PLACE and WORTH STREET, WORTH STREET between BROADWAY and LAFAYETTE STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+609996,Shooting Permit,11/04/2021 10:00:00 AM,11/05/2021 12:00:00 AM,11/03/2021 12:17:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 174 STREET and WEST 176 STREET, BROADWAY between WEST 176 STREET and WEST 177 STREET, BROADWAY between WEST 177 STREET and WEST 178 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 174 STREET and WEST 175 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+609991,Shooting Permit,11/05/2021 07:00:00 AM,11/05/2021 09:00:00 PM,11/03/2021 11:53:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+609987,Shooting Permit,11/05/2021 07:00:00 AM,11/06/2021 12:00:00 AM,11/03/2021 11:42:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between REWE STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11211
+609984,Theater Load in and Load Outs,11/18/2021 05:00:00 AM,11/19/2021 04:59:00 AM,11/03/2021 11:24:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 73 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+609982,Shooting Permit,11/08/2021 09:00:00 AM,11/08/2021 10:00:00 PM,11/03/2021 11:21:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","ELDERT STREET between DEAD END and WYCKOFF AVE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST, DECATUR ST between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, ELDERT STREET between IRVING AVENUE and KNICKERBOCKER AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+609978,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 10:00:00 PM,11/03/2021 10:50:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+609973,Rigging Permit,11/04/2021 11:00:00 PM,11/05/2021 01:00:00 PM,11/03/2021 10:22:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+609971,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 11:00:00 PM,11/03/2021 10:18:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 19 STREET and WEST 20 STREET, 8 AVENUE between WEST 17 STREET and WEST 19 STREET, WEST 19 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+609968,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 10:00:00 PM,11/03/2021 10:12:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, WEST 27 STREET between 5 AVENUE and BROADWAY, EAST 28 STREET between 5 AVENUE and MADISON AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 27 STREET and EAST 28 STREET, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 6 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011, 10016"
+609967,Shooting Permit,11/05/2021 06:00:00 AM,11/05/2021 10:00:00 PM,11/03/2021 09:52:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 119 STREET, W 116 STREET between MALCOLM X BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ST NICHOLAS AVENUE between WEST 114 STREET and ADAM CLAYTON POWELL JR BOULEVARD, WEST 115 STREET between MALCOLM X BOULEVARD and ST NICHOLAS AVENUE",Manhattan,10,28,Television,Episodic series,United States of America,10026
+609959,Shooting Permit,11/05/2021 01:00:00 AM,11/06/2021 01:00:00 PM,11/03/2021 08:45:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between BERRY STREET and WYTHE AVENUE, CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,"1, 2","84, 94",Music Video,Signed Artist,United States of America,"11201, 11211, 11249"
+609938,Shooting Permit,11/06/2021 07:00:00 AM,11/06/2021 10:00:00 PM,11/03/2021 12:34:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+609927,Shooting Permit,11/05/2021 01:00:00 PM,11/05/2021 10:00:00 PM,11/02/2021 11:01:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 10 STREET between SURF AVENUE and BOARDWALK,Brooklyn,13,60,Commercial,Commercial,United States of America,11224
+609901,Shooting Permit,11/05/2021 07:00:00 AM,11/05/2021 09:00:00 PM,11/02/2021 06:07:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+609899,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 06:00:00 PM,11/02/2021 06:03:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",JUNCTION BOULEVARD between ROOSEVELT AVENUE and 40 ROAD,Queens,"3, 4","110, 115",Film,Feature,United States of America,"11368, 11372"
+609891,Shooting Permit,11/05/2021 06:00:00 AM,11/05/2021 11:00:00 PM,11/02/2021 04:34:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, 7 AVENUE between WEST 16 STREET and WEST 15 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 13 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 13, 6",Television,Children,United States of America,10011
+609883,Shooting Permit,11/06/2021 07:00:00 AM,11/06/2021 11:00:00 PM,11/02/2021 04:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHANNEL ROAD between EAST 18 ROAD and CHURCH ROAD, BEACH 149 STREET between ROCKAWAY BEACH BOULEVARD and NEPONSIT AVENUE",Queens,14,100,Film,Short,United States of America,"11692, 11693, 11694"
+609881,Theater Load in and Load Outs,11/09/2021 12:01:00 AM,11/09/2021 11:59:00 PM,11/02/2021 04:06:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+609879,Shooting Permit,12/03/2021 06:00:00 AM,12/03/2021 11:59:00 PM,11/02/2021 03:59:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+609876,Shooting Permit,12/02/2021 06:00:00 AM,12/02/2021 11:59:00 PM,11/02/2021 03:55:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+609870,Shooting Permit,12/01/2021 06:00:00 AM,12/01/2021 11:59:00 PM,11/02/2021 03:39:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+609866,Shooting Permit,11/05/2021 12:00:00 PM,11/06/2021 03:00:00 AM,11/02/2021 03:29:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 15 STREET and NORTH 12 STREET, NORTH 15 STREET between WYTHE AVENUE and NASSAU AVENUE, BANKER STREET between NORMAN AVENUE and NORTH 15 STREET, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, LORIMER STREET between NASSAU AVENUE and DRIGGS AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET, DRIGGS AVENUE between MANHATTAN AVENUE and LORIMER STREET, MANHATTAN AVENUE between LEONARD STREET and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+609865,Shooting Permit,11/30/2021 06:00:00 AM,11/30/2021 11:59:00 PM,11/02/2021 03:27:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+609860,Shooting Permit,11/29/2021 06:00:00 AM,11/29/2021 11:59:00 PM,11/02/2021 03:13:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+609856,Shooting Permit,11/05/2021 01:00:00 PM,11/06/2021 02:00:00 AM,11/02/2021 03:02:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between COVERT STREET and ELDERT ST, STEPHEN STREET between CYPRESS AVENUE and WYCKOFF AVENUE, CYPRESS AVENUE between CENTRE STREET and NORMAN STREET",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+609848,Theater Load in and Load Outs,11/03/2021 06:00:00 AM,11/06/2021 06:00:00 AM,11/02/2021 02:37:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+609838,Shooting Permit,11/05/2021 09:30:00 AM,11/06/2021 12:30:00 AM,11/02/2021 01:58:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 43 ROAD between VERNON BOULEVARD and 9 STREET, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between 43 AVENUE and 43 ROAD, VERNON BOULEVARD between 43 ROAD and 44 AVENUE, 43 ROAD between 10 STREET and 9 STREET, 43 AVENUE between VERNON BOULEVARD and 10 STREET, 47 ROAD between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+609836,Shooting Permit,11/05/2021 10:00:00 AM,11/05/2021 11:59:00 PM,11/02/2021 01:54:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+609833,Shooting Permit,11/04/2021 10:00:00 AM,11/04/2021 11:59:00 PM,11/02/2021 01:47:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+609824,Shooting Permit,12/11/2021 06:00:00 AM,12/11/2021 11:59:00 PM,11/02/2021 12:59:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+609820,Shooting Permit,12/10/2021 06:00:00 AM,12/10/2021 11:59:00 PM,11/02/2021 12:46:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+609806,Shooting Permit,12/09/2021 06:00:00 AM,12/09/2021 11:59:00 PM,11/02/2021 11:47:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+609792,Shooting Permit,11/04/2021 11:00:00 AM,11/05/2021 02:00:00 AM,11/02/2021 10:50:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, VAN BRUNT STREET between BEARD STREET and REED STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+609776,Shooting Permit,11/07/2021 09:00:00 AM,11/07/2021 10:00:00 PM,11/02/2021 09:38:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10001
+609774,Shooting Permit,11/05/2021 09:00:00 AM,11/06/2021 12:00:00 AM,11/02/2021 09:33:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET, 11 STREET between 44 AVENUE and 44 DRIVE, 44 ROAD between 10 STREET and 11 STREET, 44 ROAD between 11 STREET and 21 STREET, 44 DRIVE between 10 STREET and 21 STREET, 21 STREET between 44 ROAD and 45 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+609683,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 11:00:00 PM,11/01/2021 04:37:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+609673,Shooting Permit,11/04/2021 10:00:00 AM,11/04/2021 05:00:00 PM,11/01/2021 04:21:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",FREDERICK DOUGLASS BOULEVARD between WEST 155 STREET and WEST 154 STREET,Manhattan,10,32,Commercial,Commercial,United States of America,10039
+609668,Shooting Permit,11/09/2021 07:00:00 AM,11/09/2021 11:00:00 PM,11/01/2021 04:12:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+609653,Shooting Permit,11/08/2021 07:00:00 AM,11/08/2021 11:00:00 PM,11/01/2021 03:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, PARK AVENUE SOUTH between EAST 18 STREET and EAST 20 STREET, EAST 19 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 19 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 20 STREET, MESEROLE AVENUE between FRANKLIN STREET and BANKER STREET, BANKER STREET between FRANKLIN STREET and MESEROLE AVENUE, BANKER STREET between NORMAN AVENUE and MESEROLE AVENUE, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, IRVING PLACE between EAST 15 STREET and EAST 16 STREET",Manhattan,"1, 5, 6","13, 94",Television,Cable-episodic,United States of America,"10003, 10010, 11222"
+609632,Shooting Permit,11/08/2021 09:00:00 AM,11/08/2021 04:00:00 PM,11/01/2021 03:20:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BOND STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and EAST 4 STREET, BOND STREET between LAFAYETTE STREET and BROADWAY, GREAT JONES STREET between BOWERY and LAFAYETTE STREET, GREAT JONES STREET between LAFAYETTE STREET and BROADWAY, EAST 4 STREET between LAFAYETTE STREET and BROADWAY, BROADWAY between BOND STREET and GREAT JONES STREET, BROADWAY between GREAT JONES STREET and EAST 4 STREET, BROADWAY between SPRING STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between BROOME STREET and GRAND STREET, BROOME STREET between LAFAYETTE STREET and CLEVELAND PLACE, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5, 6, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013"
+609629,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 11:00:00 PM,11/01/2021 03:18:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and WHITE STREET, WALKER STREET between BROADWAY and LAFAYETTE STREET, WHITE STREET between LAFAYETTE STREET and BROADWAY, FRANKLIN STREET between BROADWAY and CHURCH STREET, BROADWAY between FRANKLIN STREET and WHITE STREET, BROADWAY between WHITE STREET and WALKER STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET",Manhattan,1,"1, 5",Film,Feature,United States of America,10013
+609618,Shooting Permit,11/13/2021 06:00:00 AM,11/13/2021 06:00:00 PM,11/01/2021 03:04:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 64 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+609604,Theater Load in and Load Outs,11/12/2021 12:01:00 AM,11/13/2021 06:00:00 AM,11/01/2021 02:47:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+609594,Shooting Permit,11/10/2021 12:00:00 PM,11/11/2021 12:00:00 AM,11/01/2021 02:35:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 64 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+609578,Shooting Permit,11/04/2021 11:00:00 AM,11/04/2021 11:00:00 PM,11/01/2021 02:24:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+609564,Shooting Permit,11/05/2021 07:00:00 AM,11/05/2021 11:00:00 PM,11/01/2021 02:14:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21ST STREET and 23RD STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+609560,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 10:00:00 PM,11/01/2021 02:11:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+609545,Shooting Permit,11/05/2021 06:00:00 AM,11/05/2021 08:00:00 PM,11/01/2021 01:59:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",LEXINGTON AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Commercial,Industrial/Corporate,United States of America,11216
+609541,Shooting Permit,11/04/2021 06:00:00 AM,11/04/2021 08:00:00 PM,11/01/2021 01:56:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOMPKINS AVENUE between VAN BUREN STREET and LAFAYETTE AVENUE, GREENE AVENUE between MARCY AVENUE and TOMPKINS AVENUE, LEXINGTON AVENUE between NOSTRAND AVENUE and BEDFORD AVENUE",Brooklyn,3,79,Commercial,Industrial/Corporate,United States of America,11216
+609507,Theater Load in and Load Outs,11/07/2021 12:01:00 AM,11/08/2021 06:00:00 AM,11/01/2021 01:29:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+609498,Shooting Permit,11/04/2021 06:00:00 AM,11/04/2021 09:00:00 PM,11/01/2021 01:23:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",STARR STREET between WYCKOFF AVENUE and IRVING AVENUE,Brooklyn,4,83,Commercial,Commercial,United States of America,11237
+609490,Shooting Permit,11/07/2021 09:00:00 AM,11/07/2021 11:00:00 PM,11/01/2021 01:19:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 27 STREET between 5 AVENUE and 6 AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, EAST 26 STREET between MADISON AVENUE and 5 AVENUE, EAST 26 STREET between MADISON AVENUE and PARK AVENUE SOUTH, MADISON AVENUE between EAST 23 STREET and EAST 26 STREET, EAST 24 STREET between MADISON AVENUE and PARK AVENUE SOUTH, WEST 23 STREET between 6 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011, 10016"
+609488,Theater Load in and Load Outs,11/28/2021 12:01:00 AM,11/29/2021 06:00:00 AM,11/01/2021 01:18:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+609482,Shooting Permit,11/04/2021 06:00:00 AM,11/04/2021 11:00:00 PM,11/01/2021 01:11:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD AVENUE between EAST 36 STREET and EAST 37 STREET, THIRD AVENUE between EAST 37 STREET and EAST 39 STREET, THIRD AVENUE between EAST 36 STREET and EAST 35 STREET, EAST 35 STREET between THIRD AVENUE and PARK AVENUE, EAST 38 STREET between THIRD AVENUE and TUNNEL EXIT STREET, PARK AVENUE between EAST 37 STREET and EAST 38 STREET",Manhattan,6,17,Television,Episodic series,United States of America,10016
+609480,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 11:00:00 PM,11/01/2021 01:10:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+609479,Shooting Permit,11/04/2021 06:30:00 AM,11/04/2021 02:30:00 PM,11/01/2021 01:08:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET, BROADWAY between WEST 155 STREET and WEST 153 STREET, EDWARD M MORGAN PLACE between RIVERSIDE DRIVE and WEST 157 STREET, RIVERSIDE DRIVE between EDWARD M MORGAN PLACE and WEST 155 STREET, WEST 157 STREET between RIVERSIDE DRIVE and EDWARD M MORGAN PLACE",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,10032
+609468,Theater Load in and Load Outs,11/26/2021 12:01:00 AM,11/27/2021 11:59:00 PM,11/01/2021 12:49:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+609419,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 09:00:00 PM,11/01/2021 12:18:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 176 STREET and WEST 175 STREET, WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 177 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET, WADSWORTH AVENUE between WEST 175 STREET and WEST 174 STREET",Manhattan,12,33,Film,Feature,United States of America,10033
+609397,Theater Load in and Load Outs,11/22/2021 12:01:00 AM,11/24/2021 06:00:00 AM,11/01/2021 12:03:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+609382,Shooting Permit,11/26/2021 03:00:00 PM,11/27/2021 05:00:00 AM,11/01/2021 11:55:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between SOUTH SECOND STREET and SOUTH FOURTH STREET, SOUTH THIRD STREET between WYTHE AVENUE and BERRY STREET, SOUTH FOURTH STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH THIRD STREET and SOUTH FOURTH STREET",Brooklyn,1,90,Film,Feature,United States of America,11249
+609283,Shooting Permit,11/04/2021 03:00:00 PM,11/05/2021 05:00:00 AM,11/01/2021 10:33:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH THIRD STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH SECOND STREET and SOUTH FOURTH STREET, SOUTH FOURTH STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH THIRD STREET and SOUTH FOURTH STREET",Brooklyn,1,90,Film,Feature,United States of America,11249
+609234,Shooting Permit,11/04/2021 06:00:00 AM,11/04/2021 10:00:00 PM,11/01/2021 09:58:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 11 AVENUE and 12 AVENUE, WEST 46 STREET between 11 AVENUE and 12 AVENUE, WEST 47 STREET between 11 AVENUE and 12 AVENUE, WEST 48 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 48 STREET and WEST 49 STREET, 11 AVENUE between WEST 48 STREET and WEST 50 STREET, WEST 49 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 11 AVENUE and 10 AVENUE, WEST 20 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10019, 10036"
+609215,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 09:00:00 PM,11/01/2021 09:46:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","SURF AVENUE between WEST 15 STREET and STILLWELL AVENUE, SURF AVENUE between STILLWELL AVENUE and WEST 10 STREET, SURF AVENUE between WEST 10 STREET and WEST 8 STREET, WEST 15 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, STILLWELL AVENUE between BOWERY STREET and RIEGELMANN BOARDWALK, WEST 12 STREET between SURF AVENUE and DEAD END, WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, SURF AVENUE between WEST 5 STREET and SEA BREEZE AVENUE",Brooklyn,13,60,Television,Cable-episodic,United States of America,"11224, 11235"
+609206,Shooting Permit,11/03/2021 06:00:00 AM,11/03/2021 09:00:00 PM,11/01/2021 09:34:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET, BEARD STREET between DWIGHT STREET and RICHARDS STREET, BEARD STREET between VAN BRUNT STREET and CONOVER STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, VAN BRUNT STREET between BEARD STREET and REED STREET, RICHARDS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+609160,Shooting Permit,11/03/2021 01:00:00 AM,11/04/2021 01:00:00 AM,11/01/2021 08:04:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 161 STREET between RIVER AVENUE and WALTON AVENUE,Manhattan,"1, 10, 11, 4","25, 32, 40, 44",Commercial,PSA,United States of America,"10035, 10039, 10451, 10454"
+609152,Shooting Permit,11/06/2021 06:00:00 AM,11/06/2021 09:00:00 PM,11/01/2021 07:53:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST GUN HILL ROAD between DEKALB AVENUE and WAYNE AVENUE, BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,"2, 7","41, 52",Commercial,Commercial,United States of America,"10467, 10474"
+609147,Shooting Permit,11/05/2021 06:00:00 AM,11/05/2021 09:00:00 PM,11/01/2021 07:36:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+608898,Theater Load in and Load Outs,11/08/2021 06:00:00 AM,11/08/2021 11:59:00 PM,10/30/2021 07:07:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 52 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10103, 10112"
+608890,Shooting Permit,11/05/2021 10:00:00 AM,11/05/2021 04:00:00 PM,10/29/2021 04:51:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between GOLD STREET and DUFFIELD STREET, MOTT STREET between GRAND STREET and HESTER STREET",Manhattan,2,"5, 84",Television,Cable-episodic,United States of America,"10013, 11201"
+608886,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 09:00:00 PM,10/29/2021 04:36:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, CORTELYOU ROAD between ARGYLE ROAD and MARLBOROUGH ROAD, RUGBY ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Film,Feature,United States of America,"11218, 11226"
+608884,Theater Load in and Load Outs,11/21/2021 12:01:00 AM,11/21/2021 11:59:00 PM,10/29/2021 04:32:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608883,Shooting Permit,11/05/2021 08:00:00 AM,11/05/2021 08:00:00 PM,10/29/2021 04:28:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, EAST 41 STREET between 1 AVENUE and FDR DRIVE, 1 AVENUE between EAST 41 STREET and EAST 40 STREET, EAST 40 STREET between 2 AVENUE and 1 AVENUE, EAST 39 STREET between TUNNEL APPROACH STREET and 1 AVENUE, EAST 38 STREET between 1 AVENUE and 2 AVENUE, EAST 37 STREET between TUNNEL APPROACH STREET and 1 AVENUE, 1 AVENUE between EAST 38 STREET and EAST 37 STREET, EAST 19 STREET between BROADWAY and PARK AVENUE SOUTH, EAST 38 STREET between PARK AVENUE and LEXINGTON AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,"1, 5, 6","13, 17, 90, 94",Television,Cable-episodic,United States of America,"10003, 10016, 10017, 11222, 11249"
+608878,Shooting Permit,11/02/2021 11:00:00 AM,11/03/2021 12:30:00 AM,10/29/2021 04:07:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 1 STREET and EAST 2 STREET, EAST 1 STREET between 2 AVENUE and BOWERY, BOWERY between EAST HOUSTON STREET and EAST 1 STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between DELANCEY STREET and GRAND STREET, ESSEX STREET between BROOME STREET and DELANCEY STREET, ESSEX STREET between GRAND STREET and CANAL STREET, MULBERRY STREET between PRINCE STREET and JERSEY STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET, LAFAYETTE STREET between GREAT JONES STREET and EAST HOUSTON STREET",Manhattan,"2, 3","5, 7, 9",Television,Episodic series,United States of America,"10002, 10003, 10012"
+608875,Theater Load in and Load Outs,11/20/2021 12:01:00 AM,11/20/2021 11:59:00 PM,10/29/2021 04:01:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608874,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 07:00:00 PM,10/29/2021 03:58:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",OCEAN AVENUE between LINCOLN ROAD and FLATBUSH AVENUE,Brooklyn,"55, 9","71, 78",Television,Children,United States of America,"11215, 11225"
+608868,Shooting Permit,11/03/2021 10:00:00 AM,11/03/2021 11:00:00 PM,10/29/2021 03:51:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between FLATBUSH AVENUE and EAST 21 STREET, CHURCH AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, FLATBUSH AVENUE between WOODRUFF AVENUE and ALBERMARLE ROAD, EAST 21 STREET between CHURCH AVENUE and CATON AVENUE, EAST 21 STREET between CHURCH AVENUE and KENMORE TERRACE, KENMORE TERRACE between EAST 21 STREET and DEAD END",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+608864,Shooting Permit,11/03/2021 06:30:00 AM,11/03/2021 09:30:00 PM,10/29/2021 03:48:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+608863,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 06:00:00 PM,10/29/2021 03:48:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+608861,Shooting Permit,12/07/2021 06:00:00 AM,12/07/2021 11:59:00 PM,10/29/2021 03:46:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+608862,Shooting Permit,12/08/2021 06:00:00 AM,12/08/2021 11:59:00 PM,10/29/2021 03:46:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, WEST 61 STREET between COLUMBUS AVENUE and BROADWAY",Manhattan,"4, 7","18, 20",Television,Special/Awards Show,United States of America,"10019, 10023"
+608859,Shooting Permit,11/03/2021 06:00:00 AM,11/04/2021 02:00:00 AM,10/29/2021 03:42:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, VERNON BOULEVARD between 44 AVENUE and 45 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+608856,Shooting Permit,11/02/2021 06:00:00 AM,11/03/2021 09:00:00 PM,10/29/2021 03:35:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and MONITOR STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608854,Shooting Permit,11/09/2021 12:00:00 PM,11/10/2021 03:00:00 AM,10/29/2021 03:30:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","LA GUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, BLEECKER ST. between SULLIVAN STREET and PEDESTRIAN PATH, BLEECKER STREET between SULLIVAN STREET and MINETTA STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, SULLIVAN STREET between BLEECKER STREET and WEST 3 STREET",Manhattan,2,6,Film,Feature,United States of America,"10012, 10014"
+608853,Shooting Permit,11/04/2021 06:00:00 PM,11/05/2021 07:00:00 AM,10/29/2021 03:30:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between PROSPECT STREET and CLARK STREET, FURMAN STREET between DOUGHTY STREET and PIERREPONT STREET",Brooklyn,"1, 2, 3","7, 84, 90",Television,Episodic series,United States of America,"10002, 11201, 11211"
+608852,Shooting Permit,11/05/2021 06:00:00 AM,11/05/2021 09:00:00 PM,10/29/2021 03:28:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10036
+608848,Shooting Permit,11/04/2021 11:00:00 AM,11/05/2021 01:00:00 AM,10/29/2021 03:24:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+608847,Shooting Permit,11/03/2021 03:00:00 PM,11/04/2021 05:00:00 AM,10/29/2021 03:14:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between PIERREPONT STREET and JORALEMON STREET, FURMAN STREET between DOUGHTY STREET and PIERREPONT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+608841,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 07:30:00 PM,10/29/2021 03:07:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, TILLARY STREET between CADMAN PLAZA WEST and ADAMS STREET, CLINTON STREET between PIERREPONT STREET and SCHERMERHORN STREET, BROOKLYN BRIDGE BOULEVARD between RED CROSS PLACE and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+608838,Shooting Permit,11/08/2021 06:00:00 AM,11/09/2021 09:00:00 PM,10/29/2021 02:57:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between HORATIO STREET and 7 AVENUE SOUTH, JANE STREET between GREENWICH AVENUE and WEST 4 STREET, BANK STREET between GREENWICH AVENUE and WAVERLY PLACE, 7 AVENUE SOUTH between WAVERLY PLACE and GREENWICH AVENUE, 6 AVENUE between WEST 8 STREET and WEST 10 STREET, WEST 9 STREET between 6 AVENUE and 5 AVENUE, HORATIO STREET between 8 AVENUE and GREENWICH AVENUE",Manhattan,2,6,Film,Feature,United States of America,"10011, 10014"
+608835,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 09:00:00 PM,10/29/2021 02:55:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between BROADWAY and LAFAYETTE STREET, CROSBY STREET between HOWARD STREET and GRAND STREET, CROSBY STREET between GRAND STREET and BROOME STREET, GRAND STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between LAFAYETTE STREET and MERCER STREET, LAFAYETTE STREET between GRAND STREET and BROOME STREET, MERCER STREET between GRAND STREET and BROOME STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,10013
+608828,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 11:00:00 PM,10/29/2021 02:28:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between 23 STREET and 22 STREET, 40 AVENUE between 22 STREET and 21 STREET, 41 AVENUE between 21 STREET and 23 STREET, 22 STREET between 41 AVENUE and 40 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between 43 AVENUE and 44 AVENUE, 43 AVENUE between 21 STREET and 23 STREET",Queens,"1, 2","108, 114",Television,Not Applicable,United States of America,11101
+608825,Shooting Permit,11/04/2021 06:00:00 AM,11/04/2021 09:00:00 PM,10/29/2021 02:19:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+608817,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 10:00:00 PM,10/29/2021 01:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+608806,Shooting Permit,11/04/2021 09:00:00 AM,11/04/2021 11:00:00 PM,10/29/2021 01:28:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, WEST 27 STREET between 5 AVENUE and BROADWAY, EAST 28 STREET between 5 AVENUE and MADISON AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 27 STREET and EAST 28 STREET, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 6 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011, 10016"
+608805,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 09:00:00 PM,10/29/2021 01:25:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 26 STREET and WEST 30 STREET, WEST 28 STREET between 8 AVENUE and 9 AVENUE, WEST 28 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 29 STREET",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10001
+608803,Shooting Permit,11/01/2021 06:00:00 AM,11/01/2021 09:00:00 PM,10/29/2021 01:20:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","ORCHARD STREET between HESTER STREET and CANAL STREET, HESTER STREET between ORCHARD STREET and ALLEN STREET, HENRY STREET between MECHANICS ALLEY and MARKET STREET, HENRY STREET between MARKET STREET and CATHERINE STREET, MARKET STREET between HENRY STREET and MONROE STREET, MONROE STREET between CATHERINE STREET and MARKET STREET, 8 STREET between 2 AVENUE and 3 AVENUE, 7 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between 8 STREET and 7 STREET",Manhattan,"3, 6","5, 7, 78",Commercial,Commercial,United States of America,"10002, 11215"
+608801,Theater Load in and Load Outs,11/04/2021 12:01:00 AM,11/05/2021 11:59:00 PM,10/29/2021 01:17:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Cable-other,United States of America,10019
+608799,Theater Load in and Load Outs,11/19/2021 12:01:00 AM,11/19/2021 11:59:00 PM,10/29/2021 01:05:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608798,Shooting Permit,11/03/2021 08:30:00 AM,11/03/2021 07:00:00 PM,10/29/2021 01:00:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DAM STREET between QUEENS BLVD and 48 AVENUE, 32 PLACE between QUEENS BLVD and 48TH AVENUE, COURT SQUARE WEST between JACKSON AVENUE and DEAD END, COURT SQUARE EAST between THOMPSON AVENUE and DEAD END, THOMPSON AVENUE between JACKSON AVENUE and COURT SQUARE EAST, THOMPSON AVENUE between COURT SQUARE EAST and 44 DRIVE, 44 DRIVE between JACKSON AVENUE and THOMPSON AVENUE, 44 DRIVE between JACKSON AVENUE and HUNTER STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608796,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/18/2021 11:59:00 PM,10/29/2021 12:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608793,Shooting Permit,11/01/2021 06:00:00 AM,11/01/2021 09:00:00 PM,10/29/2021 12:50:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 63 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 63 STREET and EAST 64 STREET, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET, LEXINGTON AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 62 STREET between PARK AVENUE and THIRD AVENUE, EAST 63 STREET between LEXINGTON AVENUE and THIRD AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+608782,Theater Load in and Load Outs,11/17/2021 12:01:00 AM,11/17/2021 11:59:00 PM,10/29/2021 12:39:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608780,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 11:00:00 PM,10/29/2021 12:35:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, ROOSEVELT AVENUE between 56 STREET and 57 STREET, ROOSEVELT AVENUE between 57 STREET and 59 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, WOODSIDE AVENUE between ROOSEVELT AVENUE and 57 STREET, ROOSEVELT AVENUE between WOODSIDE AVENUE and 58 STREET, 57 STREET between ROOSEVELT AVENUE and 43 AVENUE, WOODSIDE AVENUE between 60 STREET and 59 STREET, QUEENS BOULEVARD between 58 STREET and 51ST STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11222, 11377"
+608778,Theater Load in and Load Outs,11/16/2021 12:01:00 AM,11/16/2021 11:59:00 PM,10/29/2021 12:31:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608776,Theater Load in and Load Outs,11/15/2021 12:01:00 AM,11/15/2021 11:59:00 PM,10/29/2021 12:22:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608771,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 09:00:00 PM,10/29/2021 12:12:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+608746,Theater Load in and Load Outs,11/05/2021 12:01:00 AM,11/06/2021 06:00:00 AM,10/29/2021 10:54:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+608745,Shooting Permit,11/04/2021 06:00:00 AM,11/05/2021 02:00:00 AM,10/29/2021 10:45:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 95 STREET and EAST 96 STREET, ROOSEVELT AVENUE between 60 STREET and 61 STREET",Manhattan,"1, 11, 2, 64, 8","108, 114, 19, 22, 23",Film,Feature,United States of America,"10023, 10024, 10025, 10029, 10128, 11101, 11104, 11377"
+608742,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/29/2021 10:27:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608740,Shooting Permit,11/04/2021 07:00:00 AM,11/04/2021 05:00:00 PM,10/29/2021 10:13:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between WYTHE AVENUE and KENT AVENUE, SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11249
+608739,Shooting Permit,11/03/2021 08:00:00 AM,11/03/2021 07:00:00 PM,10/29/2021 10:13:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",SCOTT AVENUE between MESEROLE STREET and RANDOLPH STREET,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+608738,Shooting Permit,11/02/2021 08:00:00 AM,11/02/2021 07:00:00 PM,10/29/2021 10:13:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11249
+608736,Shooting Permit,11/03/2021 06:00:00 AM,11/03/2021 08:00:00 PM,10/29/2021 09:56:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","MAIN STREET between CRAIG AVENUE and AMBOY ROAD, AMBOY ROAD between MAIN STREET and JOHNSON AVENUE, ARTHUR KILL ROAD between INDUSTRIAL LOOP E and CHEMICAL LANE",Staten Island,3,123,Television,Episodic series,United States of America,"10307, 10309"
+608730,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 10:00:00 PM,10/29/2021 09:43:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 47 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, E 50TH STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 52 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10017, 10022, 10152"
+608723,Shooting Permit,11/11/2021 07:00:00 AM,11/11/2021 06:00:00 PM,10/29/2021 09:14:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 29 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,5,"13, 14",Television,News,United States of America,10016
+608722,Shooting Permit,11/04/2021 10:00:00 AM,11/05/2021 01:00:00 AM,10/29/2021 09:11:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608719,Shooting Permit,11/03/2021 03:00:00 PM,11/04/2021 05:00:00 AM,10/29/2021 08:52:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between SOUTH SECOND STREET and SOUTH THIRD STREET, SOUTH FOURTH STREET between WYTHE AVENUE and KENT AVENUE, KENT AVENUE between SOUTH THIRD STREET and SOUTH FOURTH STREET, SOUTH THIRD STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,90,Film,Feature,United States of America,11249
+608714,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 11:59:00 PM,10/28/2021 10:47:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 97 STREET and EAST 99 STREET, EAST 99 STREET between 2 AVENUE and 3 AVENUE, EAST 99 STREET between 1 AVENUE and 2 AVENUE, EAST 100 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 97 STREET and EAST 102 STREET, EAST 100 STREET between 1 AVENUE and FDR DRIVE, EAST 99 STREET between 1 AVENUE and FDR DRIVE",Manhattan,11,23,Television,Episodic series,United States of America,10029
+608708,Shooting Permit,11/03/2021 09:00:00 AM,11/03/2021 11:00:00 PM,10/28/2021 07:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 27 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10016"
+608702,Shooting Permit,11/03/2021 08:00:00 AM,11/04/2021 01:00:00 AM,10/28/2021 06:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+608697,Shooting Permit,11/03/2021 09:00:00 AM,11/03/2021 10:00:00 PM,10/28/2021 04:49:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, COOK STREET between WHITE STREET and BOGART STREET, WHITE STREET between COOK STREET and VARET STREET, WHITE STREET between VARET STREET and MOORE STREET, WHITE STREET between MOORE STREET and SEIGEL STREET, MOORE STREET between BUSHWICK AVENUE and AVENUE OF PUERTO RICO, AVENUE OF PUERTO RICO between VARET STREET and SEIGEL STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+608696,Theater Load in and Load Outs,11/30/2021 12:01:00 AM,12/01/2021 06:00:00 AM,10/28/2021 04:49:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608694,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 08:00:00 PM,10/28/2021 04:47:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+608686,Shooting Permit,11/03/2021 06:00:00 AM,11/03/2021 11:00:00 PM,10/28/2021 04:06:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608685,Shooting Permit,11/02/2021 06:00:00 AM,11/02/2021 11:00:00 PM,10/28/2021 03:51:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608684,Theater Load in and Load Outs,11/26/2021 12:01:00 AM,11/28/2021 06:00:00 AM,10/28/2021 03:47:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608681,Theater Load in and Load Outs,11/13/2021 12:01:00 AM,11/14/2021 06:00:00 AM,10/28/2021 03:34:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,28,Theater,Theater,United States of America,10027
+608680,Shooting Permit,11/05/2021 08:00:00 AM,11/05/2021 11:00:00 PM,10/28/2021 03:33:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, WATER STREET between OLD SLIP and GOUVERNEUR LANE, WALL STREET between WATER STREET and FRONT STREET, FRONT STREET between OLD SLIP and WALL STREET",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005"
+608679,Shooting Permit,11/01/2021 06:00:00 AM,11/01/2021 11:00:00 PM,10/28/2021 03:31:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608677,Theater Load in and Load Outs,11/09/2021 12:01:00 AM,11/14/2021 11:59:00 PM,10/28/2021 03:26:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between UNION SQUARE EAST and IRVING PLACE",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+608672,Shooting Permit,11/04/2021 09:00:00 AM,11/05/2021 12:00:00 AM,10/28/2021 03:19:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between STATE STREET and BROAD STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET, PEARL STREET between STATE STREET and BROAD STREET, STATE STREET between BRIDGE STREET and PEARL STREET, OLD SLIP between WATER STREET and SOUTH STREET, WATER STREET between HANOVER SQUARE and GOUVERNEUR LANE, FREEDOM PLACE SOUTH between WEST 62 STREET and WEST 59 STREET, WEST 60 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 60 STREET and WEST 59 STREET, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 64 STREET, W 63RD ST between RIVERSIDE BOULEVARD and THELONIOUS MONK CIRCLE, WEST 59 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,"1, 4, 7","1, 18, 20",Television,Episodic series,United States of America,"10004, 10005, 10019, 10023, 10069"
+608671,Shooting Permit,11/02/2021 10:30:00 AM,11/02/2021 11:30:00 PM,10/28/2021 03:15:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","HARROW STREET between 69 AVENUE and 70 AVENUE, 69 AVENUE between FLEET STREET and KESSEL STREET, METROPOLITAN AVENUE between 69 AVENUE and 71 AVENUE",Queens,6,112,Television,Episodic series,United States of America,11375
+608670,Shooting Permit,11/01/2021 11:00:00 AM,11/02/2021 01:00:00 AM,10/28/2021 03:11:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, LA GUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET, SULLIVAN STREET between WEST HOUSTON STREET and BLEECKER STREET, WEST HOUSTON STREET between MACDOUGAL STREET and SULLIVAN STREET, WEST HOUSTON STREET between SULLIVAN STREET and THOMPSON STREET, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"2, 4, 5","1, 14, 18, 6",Television,Episodic series,United States of America,"10012, 10036"
+608669,Theater Load in and Load Outs,11/24/2021 12:01:00 AM,11/25/2021 06:00:00 AM,10/28/2021 03:11:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608668,Shooting Permit,11/03/2021 01:00:00 PM,11/04/2021 02:00:00 AM,10/28/2021 03:07:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 95 STREET and EAST 96 STREET, ROOSEVELT AVENUE between 60 STREET and 61 STREET",Manhattan,"1, 11, 2, 64, 8","108, 114, 19, 22, 23",Film,Feature,United States of America,"10023, 10024, 10025, 10029, 10128, 11101, 11104, 11377"
+608664,Theater Load in and Load Outs,11/22/2021 12:01:00 AM,11/23/2021 06:00:00 AM,10/28/2021 02:35:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608663,Shooting Permit,11/02/2021 05:00:00 AM,11/02/2021 01:00:00 PM,10/28/2021 02:26:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",Columbia St between Halleck St and Dead End,Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+608661,Theater Load in and Load Outs,11/20/2021 12:01:00 AM,11/21/2021 11:59:00 PM,10/28/2021 02:17:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608660,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/28/2021 02:10:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between ARKANSAS DRIVE and MONTANA PLACE, AVENUE N between EAST 64 STREET and RALPH AVENUE",Brooklyn,18,63,WEB,Not Applicable,United States of America,11234
+608659,Shooting Permit,11/10/2021 06:30:00 AM,11/10/2021 11:00:00 PM,10/28/2021 01:54:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between JEWEL STREET and DIAMOND STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608654,Shooting Permit,11/08/2021 06:30:00 AM,11/08/2021 11:00:00 PM,10/28/2021 01:45:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between JEWEL STREET and DIAMOND STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608653,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 11:00:00 PM,10/28/2021 01:43:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608652,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/19/2021 06:00:00 AM,10/28/2021 01:41:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608649,Theater Load in and Load Outs,11/15/2021 12:01:00 AM,11/17/2021 06:00:00 AM,10/28/2021 01:25:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608648,Shooting Permit,11/01/2021 08:00:00 AM,11/01/2021 10:00:00 PM,10/28/2021 01:23:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","Provost Ave between BOSTON ROAD and E 233rd St, LIGHT STREET between PROVOST AVENUE and MERRITT AVENUE, MERRITT AVENUE between LIGHT STREET and DEAD END, E 233rd St between Provost Ave and Boston Rd",Bronx,12,47,Television,Cable-episodic,United States of America,10466
+608647,Shooting Permit,11/05/2021 02:00:00 PM,11/06/2021 04:00:00 AM,10/28/2021 01:22:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 7 AVENUE and 6 AVENUE, WEST 56 STREET between 6 AVENUE and 5 AVENUE, WEST 54 STREET between 7 AVENUE and 6 AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10022, 10105, 10152"
+608646,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/28/2021 01:18:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, CORTELYOU ROAD between ARGYLE ROAD and MARLBOROUGH ROAD, RUGBY ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Film,Feature,United States of America,"11218, 11226"
+608644,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/28/2021 01:06:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET, EAST 55 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 53 STREET, EAST 54 STREET between 3 AVENUE and 2 AVENUE, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10022, 10152"
+608627,Shooting Permit,11/03/2021 07:30:00 AM,11/03/2021 09:30:00 PM,10/28/2021 11:27:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and WHITE STREET, WALKER STREET between BROADWAY and LAFAYETTE STREET, WHITE STREET between LAFAYETTE STREET and BROADWAY, FRANKLIN STREET between BROADWAY and CHURCH STREET, BROADWAY between FRANKLIN STREET and WHITE STREET, BROADWAY between WHITE STREET and WALKER STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET",Manhattan,1,"1, 5",Film,Feature,United States of America,10013
+608623,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 10:00:00 PM,10/28/2021 11:06:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+608620,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 11:00:00 PM,10/28/2021 10:59:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608616,Shooting Permit,11/02/2021 08:00:00 AM,11/02/2021 11:59:00 PM,10/28/2021 10:51:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608611,Shooting Permit,11/03/2021 10:00:00 AM,11/04/2021 01:00:00 AM,10/28/2021 10:00:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608610,Shooting Permit,11/02/2021 10:00:00 AM,11/03/2021 01:00:00 AM,10/28/2021 10:00:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608603,Shooting Permit,10/30/2021 06:00:00 AM,10/30/2021 07:00:00 PM,10/28/2021 09:34:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","GARRISON AVENUE between TIFFANY STREET and MANIDA STREET, BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, WEST 133 STREET between BROADWAY and 12 AVENUE",Bronx,"2, 9","26, 30, 41",Commercial,Commercial,United States of America,"10027, 10474"
+608601,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/28/2021 09:28:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 210 STREET between KOSSUTH AVENUE and ROCHAMBEAU AVENUE, EAST 210 STREET between BAINBRIDGE AVENUE and WAYNE AVENUE, BAINBRIDGE AVENUE between EAST 210 STREET and EAST 208 STREET, BAINBRIDGE AVENUE between EAST 210 STREET and EAST GUN HILL ROAD",Bronx,7,52,Commercial,PSA,United States of America,10467
+608583,Theater Load in and Load Outs,11/01/2021 12:01:00 AM,11/07/2021 11:59:00 PM,10/27/2021 07:11:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+608580,Shooting Permit,11/08/2021 06:00:00 AM,11/08/2021 08:00:00 PM,10/27/2021 06:45:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVE between EASTERN PARKWAY and PRESIDENT ST,Brooklyn,"55, 8, 9","71, 77, 78",Commercial,Commercial,United States of America,"11225, 11238"
+608579,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 05:00:00 PM,10/27/2021 06:38:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between HUDSON STREET and WEST 12 STREET, HUDSON STREET between BLEECKER STREET and BANK STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+608576,Shooting Permit,11/02/2021 09:00:00 AM,11/02/2021 06:00:00 PM,10/27/2021 06:13:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",9 AVENUE between LITTLE WEST 12 STREET and WEST 13 STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+608575,Shooting Permit,11/02/2021 05:00:00 AM,11/02/2021 02:00:00 PM,10/27/2021 06:11:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 52 STREET, EAST 52 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 50 STREET between LEXINGTON AVENUE and THIRD AVENUE",Manhattan,"5, 6","17, 18",Film,Feature,United States of America,"10022, 10154"
+608573,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/27/2021 05:57:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 52 STREET, EAST 51 STREET between LEXINGTON AVENUE and THIRD AVENUE, EAST 50 STREET between LEXINGTON AVENUE and THIRD AVENUE",Manhattan,"5, 6","17, 18",Film,Feature,United States of America,"10022, 10154"
+608571,Shooting Permit,10/29/2021 06:00:00 AM,10/29/2021 07:00:00 PM,10/27/2021 05:52:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 13 STREET between AVENUE A and FIRST AVENUE, FIRST AVENUE between EAST 13 STREET and EAST 14 STREET",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+608565,Shooting Permit,10/31/2021 05:00:00 AM,10/31/2021 09:00:00 PM,10/27/2021 05:11:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 5 AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between 5 AVENUE and MADISON AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, EAST 47 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10016, 10017, 10019, 10020, 10036"
+608561,Shooting Permit,11/01/2021 06:30:00 AM,11/01/2021 08:00:00 PM,10/27/2021 04:59:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, DEKALB AVENUE between SOUTH ELLIOTT PLACE and CUMBERLAND STREET, LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and CARLTON AVENUE, LAFAYETTE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, SOUTH OXFORD STREET between LAFAYETTE AVENUE and FULTON STREET, CUMBERLAND STREET between DEKALB AVENUE and LAFAYETTE AVENUE, WASHINGTON PARK between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217, 11238"
+608559,Shooting Permit,11/01/2021 02:00:00 PM,11/02/2021 03:30:00 AM,10/27/2021 04:49:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","CARROLL STREET between COURT STREET and CLINTON STREET, FDR DRIVE between GRAND STREET and CHERRY STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Brooklyn,"1, 3, 6","1, 7, 76",Music Video,Signed Artist,United States of America,"10002, 10004, 11231"
+608557,Shooting Permit,11/15/2021 06:00:00 AM,11/15/2021 10:00:00 PM,10/27/2021 04:18:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",15 AVENUE between 138 STREET and 143 STREET,Queens,7,109,Film,Feature,United States of America,11357
+608555,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 09:00:00 PM,10/27/2021 03:58:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, BOGART STREET between VARET STREET and COOK STREET, COOK STREET between WHITE STREET and BOGART STREET, WHITE STREET between COOK STREET and VARET STREET, WHITE STREET between VARET STREET and MOORE STREET, WHITE STREET between MOORE STREET and SEIGEL STREET, MOORE STREET between BUSHWICK AVENUE and AVENUE OF PUERTO RICO, AVENUE OF PUERTO RICO between VARET STREET and SEIGEL STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+608554,Shooting Permit,11/01/2021 04:00:00 AM,11/01/2021 11:00:00 PM,10/27/2021 03:56:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GRAVESEND NECK ROAD and VILLAGE ROAD EAST, WEST STREET between VILLAGE ROAD EAST and AVENUE U, COURT STREET between 1 PLACE and 2 PLACE, COURT STREET between 1 PLACE and CARROLL STREET, 2 PLACE between COURT STREET and SMITH STREET",Brooklyn,"15, 6","61, 76",WEB,Not Applicable,United States of America,"11223, 11231"
+608553,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 10:00:00 PM,10/27/2021 03:52:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 10 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 10 STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 9 STREET, NORTH 11 STREET between WYTHE AVENUE and BEDFORD AVENUE, WEST 16 STREET between 9 AVENUE and 10 AVENUE, WEST 15 STREET between 10 AVENUE and 9 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 17 STREET and WEST 16 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, 11 AVENUE between WEST 19 STREET and WEST 18 STREET",Brooklyn,"1, 4","10, 94",Television,Cable-episodic,United States of America,"10011, 11249"
+608550,Shooting Permit,11/01/2021 08:30:00 AM,11/01/2021 10:00:00 PM,10/27/2021 03:46:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOSTRAND AVENUE between MIDWOOD STREET and CLARKSON AVENUE, FENIMORE STREET between BEDFORD AVENUE and ROGERS AVENUE, FENIMORE STREET between BEDFORD AVENUE and ROGERS AVENUE, FENIMORE STREET between ROGERS AVENUE and NOSTRAND AVENUE, HAWTHORNE STREET between ROGERS AVENUE and NOSTRAND AVENUE, BEDFORD AVENUE between RUTLAND ROAD and HAWTHORNE STREET, FLATBUSH AVENUE between LINCOLN ROAD and PARKSIDE AVENUE, FLATBUSH AVENUE between PARKSIDE AVENUE and CATON AVENUE",Brooklyn,"14, 9","70, 71",Television,Episodic series,United States of America,"11225, 11226"
+608546,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 11:00:00 PM,10/27/2021 03:34:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 21 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Not Applicable,United States of America,11101
+608545,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/19/2021 06:00:00 AM,10/27/2021 03:25:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+608534,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 09:00:00 PM,10/27/2021 02:51:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLEY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Film,Feature,United States of America,"11218, 11226"
+608526,Theater Load in and Load Outs,11/01/2021 12:01:00 AM,11/01/2021 11:59:00 PM,10/27/2021 02:09:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+608524,Shooting Permit,11/01/2021 06:00:00 AM,11/01/2021 07:00:00 PM,10/27/2021 01:49:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 121 STREET and WEST 120 STREET",Manhattan,10,28,WEB,Not Applicable,United States of America,10027
+608523,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 09:00:00 PM,10/27/2021 01:49:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between CANAL STREET and WHITE STREET, WALKER STREET between BROADWAY and LAFAYETTE STREET, WHITE STREET between LAFAYETTE STREET and BROADWAY, FRANKLIN STREET between BROADWAY and CHURCH STREET, BROADWAY between FRANKLIN STREET and WHITE STREET, BROADWAY between WHITE STREET and WALKER STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and FRANKLIN STREET",Manhattan,1,"1, 5",Film,Feature,United States of America,10013
+608522,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 10:00:00 PM,10/27/2021 01:41:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 21 STREET and 22 STREET, 43 AVENUE between 22 STREET and 23 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 22 STREET and 23 STREET",Queens,2,108,Television,Not Applicable,United States of America,11101
+608521,Shooting Permit,11/02/2021 08:00:00 AM,11/02/2021 11:00:00 PM,10/27/2021 01:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between 72 ROAD and 72 AVENUE, METROPOLITAN AVENUE between 72 ROAD and 72 DRIVE, 72 ROAD between METROPOLITAN AVENUE and MANSE STREET, MANSE STREET between 72 ROAD and ASCAN AVENUE, 72 ROAD between METROPOLITAN AVENUE and UNION TURNPIKE, ALBION AVENUE between QUEENS BOULEVARD and BARNWELL AVENUE, BARNWELL AVENUE between QUEENS BOULEVARD and POYER STREET, QUEENS BOULEVARD between 76 STREET and ALBION AVENUE, QUEENS BOULEVARD between ALBION AVENUE and CORNISH AVENUE",Queens,"4, 6","110, 112",Television,Cable-episodic,United States of America,"11373, 11375"
+608515,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 10:00:00 PM,10/27/2021 01:13:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+608513,Shooting Permit,11/09/2021 08:30:00 AM,11/09/2021 10:00:00 PM,10/27/2021 01:07:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between WHITE STREET and BOGART STREET, VARET STREET between WHITE STREET and BOGART STREET, WHITE STREET between VARET STREET and COOK STREET, WHITE STREET between MOORE STREET and VARET STREET, VARET STREET between BUSHWICK AVENUE and WHITE STREET, COOK STREET between BUSHWICK AVENUE and WHITE STREET, FLUSHING AVENUE between BUSHWICK AVENUE and EVERGREEN AVENUE, FLUSHING AVENUE between EVERGREEN AVENUE and BOGART STREET, FLUSHING AVENUE between BOGART STREET and MORGAN AVENUE, CENTRAL AVENUE between FORREST STREET and FLUSHING AVENUE, EVERGREEN AVENUE between NOLL STREET and FLUSHING AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11206
+608506,Shooting Permit,10/30/2021 07:00:00 AM,10/30/2021 05:00:00 PM,10/27/2021 12:34:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 105 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Film,Feature,United States of America,"10028, 10029"
+608503,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 08:00:00 PM,10/27/2021 12:15:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 16 STREET and WEST 21 STREET, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+608489,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 07:00:00 PM,10/27/2021 11:15:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST, SENECA AVENUE between LINDEN STREET and GATES AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+608487,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 09:00:00 PM,10/27/2021 10:44:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, 10 STREET between 43 AVENUE and 44 AVENUE, NINTH STREET between 44 AVENUE and 43 ROAD, 44 AVENUE between NINTH STREET and TENTH STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+608485,Theater Load in and Load Outs,11/06/2021 12:01:00 AM,11/06/2021 11:59:00 PM,10/27/2021 10:41:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+608480,Shooting Permit,11/02/2021 08:00:00 AM,11/02/2021 11:00:00 PM,10/27/2021 10:24:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 87 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 88 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 84 STREET and WEST 85 STREET, BROADWAY between WEST 85 STREET and WEST 86 STREET, BROADWAY between WEST 87 STREET and WEST 88 STREET, BROADWAY between WEST 89 STREET and WEST 90 STREET, BROADWAY between WEST 90 STREET and WEST 91 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+608479,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 10:00:00 PM,10/27/2021 10:24:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+608478,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 10:00:00 PM,10/27/2021 10:23:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+608474,Shooting Permit,11/04/2021 12:00:00 AM,11/05/2021 02:00:00 AM,10/27/2021 10:07:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between WEST 8 STREET and WEST 10 STREET, WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 12 STREET and WEST 11 STREET, 5 AVENUE between WEST 11 STREET and WEST 10 STREET, WEST 9 STREET between 5 AVENUE and 6 AVENUE, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, 6 AVENUE between WEST 4 STREET and CARMINE STREET, 6 AVENUE between MINETTA LANE and MINETTA STREET, 6 AVENUE between DOWNING STREET and BEDFORD STREET, BLEECKER STREET between LEROY STREET and CARMINE STREET, BLEECKER STREET between CARMINE STREET and DOWNING STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, WEST 40 STREET between 6 AVENUE and 5 AVENUE, WEST 41 STREET between 6 AVENUE and BROADWAY, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 39 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 40 STREET and WEST 39 STREET",Manhattan,"2, 5","14, 6",Film,Feature,United States of America,"10003, 10011, 10014, 10018, 10036"
+608473,Shooting Permit,11/03/2021 06:00:00 AM,11/03/2021 06:00:00 PM,10/27/2021 10:00:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","56 AVENUE between 90 STREET and 92 STREET, 56 AVENUE between 92 STREET and 94 STREET, 92 STREET between 56 AVENUE and 55 AVENUE, 92 STREET between 56 AVENUE and 57 AVENUE, 94 STREET between 57 AVENUE and 58 AVENUE, 94 STREET between 58 AVENUE and 59 AVENUE, 59 AVENUE between 94 STREET and JUNCTION BOULEVARD, 94 STREET between 59 AVENUE and 60 AVENUE",Queens,4,110,Film,Feature,United States of America,11373
+608472,Shooting Permit,10/30/2021 08:00:00 AM,10/30/2021 09:00:00 PM,10/27/2021 09:46:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between BOARDWALK and SURF AVENUE, SURF AVENUE between WEST 10 STREET and WEST 12 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 112 STREET, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 112 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE",Brooklyn,"10, 13","28, 60",Commercial,PSA,United States of America,"10026, 11224"
+608465,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 10:00:00 PM,10/27/2021 08:31:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608464,Shooting Permit,10/29/2021 11:00:00 AM,10/30/2021 02:00:00 AM,10/27/2021 08:26:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYCKOFF AVENUE between STARR STREET and SUYDAM STREET, WYCKOFF AVENUE between SUYDAM STREET and HART STREET, SUYDAM STREET between ST NICHOLAS AVENUE and WYCKOFF AVENUE, WILLOUGHBY AVENUE between ST NICHOLAS AVENUE and IRVING AVENUE",Brooklyn,4,83,Film,Feature,United States of America,11237
+608461,Shooting Permit,10/30/2021 07:00:00 AM,10/30/2021 07:00:00 PM,10/27/2021 07:56:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 DRIVE and 44 AVENUE, 44 ROAD between 11 STREET and 21 STREET",Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+608445,Theater Load in and Load Outs,10/30/2021 06:00:00 AM,11/02/2021 11:59:00 PM,10/27/2021 03:11:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+608444,Theater Load in and Load Outs,10/29/2021 05:45:00 AM,10/30/2021 05:45:00 AM,10/27/2021 02:56:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+608427,Shooting Permit,10/29/2021 08:00:00 AM,10/30/2021 02:00:00 AM,10/26/2021 07:19:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRADLEY AVENUE between GREENPOINT AVENUE and 35 STREET, 35 STREET between BRADLEY AVENUE and GALE AVENUE, 35 STREET between BRADLEY AVENUE and STARR AVENUE, GREENPOINT AVENUE between BRADLEY AVENUE and STARR AVENUE, BRADLEY AVENUE between 37 STREET and GREENPOINT AVENUE, BRADLEY AVENUE between 35 STREET and 34 STREET, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+608424,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 09:00:00 PM,10/26/2021 06:12:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+608423,Theater Load in and Load Outs,11/09/2021 12:01:00 AM,11/10/2021 06:00:00 AM,10/26/2021 05:53:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+608418,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 09:00:00 PM,10/26/2021 04:58:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUNDVIEW AVE between ROSEDALE AVE and ST. LAWRENCE AVE, LAFAYETTE AVENUE between SOUNDVIEW AVENUE and BEACH AVENUE, SOUNDVIEW AVENUE between ST LAWRENCE AVENUE and SEWARD AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and RANDALL AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+608416,Shooting Permit,10/29/2021 06:00:00 AM,10/29/2021 11:00:00 PM,10/26/2021 04:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between ROCKAWAY AVENUE and MOTHER GASTON BOULEVARD, ROCKAWAY AVENUE between PITKIN AVENUE and SUTTER AVENUE, MOTHER GASTON BOULEVARD between PITKIN AVENUE and BELMONT AVENUE, MOTHER GASTON BOULEVARD between BELMONT AVENUE and SUTTER AVENUE, PITKIN AVENUE between WATKINS STREET and MOTHER GASTON BOULEVARD, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE",Brooklyn,"16, 5","73, 75",Television,Episodic series,United States of America,"11207, 11212"
+608415,Shooting Permit,11/04/2021 08:30:00 AM,11/04/2021 10:30:00 PM,10/26/2021 04:47:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 22 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 21 STREET and WEST 23 STREET",Manhattan,4,10,Film,Feature,United States of America,10011
+608414,Shooting Permit,11/03/2021 09:00:00 AM,11/03/2021 11:00:00 PM,10/26/2021 04:42:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE C between EAST 9 STREET and EAST 10 STREET, AVENUE C between EAST 10 STREET and EAST 11 STREET, EAST 9 STREET between AVENUE B and AVENUE C, EAST 10 STREET between AVENUE B and SZOLD PLACE, EAST 11 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Film,Feature,United States of America,10009
+608407,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 07:00:00 PM,10/26/2021 04:01:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between JOHNSON STREET and DEAD END, WHITE STREET between SEIGEL STREET and MOORE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+608406,DCAS Prep/Shoot/Wrap Permit,11/02/2021 10:00:00 AM,11/03/2021 12:00:00 AM,10/26/2021 03:41:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between CENTRE STREET and BAXTER STREET, CENTER STREET between WORTH STREET and WALKER STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET",Manhattan,1,5,Film,Feature,United States of America,"10007, 10013"
+608397,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 09:00:00 PM,10/26/2021 02:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD",Brooklyn,14,70,Film,Feature,United States of America,11218
+608395,Shooting Permit,11/01/2021 09:00:00 AM,11/01/2021 07:00:00 PM,10/26/2021 02:29:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 2 AVENUE and 3 AVENUE, EAST 60 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 59 STREET and EAST 60 STREET",Manhattan,8,19,Film,Feature,United States of America,"10022, 10065"
+608382,Theater Load in and Load Outs,11/26/2021 03:00:00 PM,12/03/2021 11:59:00 PM,10/26/2021 01:50:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+608381,Theater Load in and Load Outs,11/17/2021 03:00:00 PM,11/20/2021 11:59:00 PM,10/26/2021 01:44:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+608380,Shooting Permit,11/01/2021 07:00:00 AM,11/02/2021 12:30:00 AM,10/26/2021 01:42:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PERRY STREET between WEST STREET and WASHINGTON STREET, WEST STREET between CHARLES STREET and PERRY STREET, CHARLES STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between WEST 10 STREET and CHARLES STREET, WASHINGTON STREET between CHARLES STREET and PERRY STREET, WEST 11 STREET between WEST STREET and WASHINGTON STREET, WEST STREET between WEST 11 STREET and BANK STREET, HUDSON STREET between PERRY STREET and WEST 11 STREET, PERRY STREET between HUDSON STREET and GREENWICH STREET, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+608379,Theater Load in and Load Outs,11/09/2021 03:00:00 PM,11/13/2021 11:59:00 PM,10/26/2021 01:40:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+608376,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 03:00:00 PM,10/26/2021 01:24:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, NEWEL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608372,Shooting Permit,10/28/2021 06:00:00 AM,10/28/2021 11:00:00 PM,10/26/2021 12:54:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608364,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 11:00:00 PM,10/26/2021 12:07:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608363,Shooting Permit,10/29/2021 06:00:00 AM,10/29/2021 11:00:00 PM,10/26/2021 11:51:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608360,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 07:00:00 PM,10/26/2021 11:45:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 50 AVENUE and 49 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,"11101, 11109"
+608359,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 07:00:00 PM,10/26/2021 11:45:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 50 AVENUE and 49 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,"11101, 11109"
+608357,Shooting Permit,10/28/2021 06:00:00 AM,10/28/2021 11:00:00 PM,10/26/2021 11:41:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+608352,Shooting Permit,11/03/2021 06:00:00 AM,11/03/2021 09:00:00 PM,10/26/2021 10:48:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between COLIN PLACE and AVENUE S, MCDONALD AVENUE between AVENUE S and AVENUE T, AVENUE O between WEST 5 STREET and WEST 4 STREET, WEST 5 STREET between 65 STREET and AVENUE O",Brooklyn,"11, 15","61, 62",WEB,Not Applicable,United States of America,"11204, 11223"
+608347,Shooting Permit,10/29/2021 09:00:00 AM,10/29/2021 03:00:00 PM,10/26/2021 09:49:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10017
+608343,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 09:00:00 PM,10/26/2021 09:17:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 52 STREET and EAST 53 STREET, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 51 STREET and EAST 54 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+608342,Shooting Permit,10/31/2021 06:00:00 AM,10/31/2021 09:00:00 PM,10/26/2021 09:12:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+608341,Shooting Permit,10/27/2021 06:00:00 AM,10/27/2021 07:30:00 PM,10/26/2021 08:54:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 61 STREET and EAST 62 STREET, LEXINGTON AVENUE between EAST 62 STREET and EAST 63 STREET",Manhattan,"3, 8","19, 5",Film,Feature,United States of America,"10002, 10065"
+608340,Shooting Permit,10/28/2021 06:00:00 AM,10/28/2021 10:00:00 PM,10/26/2021 08:52:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+608339,Shooting Permit,10/29/2021 09:00:00 AM,10/29/2021 11:59:00 PM,10/26/2021 08:40:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608337,Shooting Permit,11/18/2021 12:00:00 PM,11/19/2021 03:00:00 AM,10/26/2021 07:29:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",STAFFORD AVENUE between VERNON AVENUE and MARCY AVENUE,Staten Island,3,123,Television,Reality,United States of America,10309
+608323,Shooting Permit,10/28/2021 10:00:00 AM,10/28/2021 11:59:00 PM,10/25/2021 09:14:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between FDR and 1 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 26 STREET and EAST 28 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 27 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+608311,Shooting Permit,11/01/2021 06:00:00 AM,11/01/2021 07:00:00 PM,10/25/2021 06:54:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 87 STREET and WEST 88 STREET, RIVERSIDE DRIVE between WEST 84 STREET and WEST 95 STREET, WEST 88 STREET between RIVERSIDE DRIVE and WEST END AVENUE",Manhattan,"7, 9","20, 24",Film,Feature,United States of America,"10024, 10025"
+608310,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 09:00:00 PM,10/25/2021 06:39:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between BOERUM STREET and JOHNSON AVENUE, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+608306,Shooting Permit,10/29/2021 06:00:00 AM,10/29/2021 07:00:00 PM,10/25/2021 05:47:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 DRIVE and 44 AVENUE, 44 ROAD between 11 STREET and 21 STREET",Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+608299,Shooting Permit,10/27/2021 03:00:00 PM,10/28/2021 01:00:00 AM,10/25/2021 05:16:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between MARKET STREET and PIKE STREET, CHERRY STREET between CATHERINE STREET and MARKET STREET, MARKET STREET between MONROE STREET and CHERRY STREET, MARKET SLIP between CHERRY STREET and SOUTH STREET, CHERRY STREET between PIKE SLIP and RUTGERS STREET, PIKE STREET between CHERRY STREET and MADISON STREET, PIKE SLIP between CHERRY STREET and SOUTH STREET, MADISON STREET between PIKE STREET and RUTGERS STREET, MADISON STREET between RUTGERS STREET and CLINTON STREET, MADISON STREET between CLINTON STREET and MONTGOMERY STREET, MADISON STREET between MONTGOMERY STREET and GOUVERNEUR STREET, MADISON STREET between GOUVERNEUR STREET and JACKSON STREET",Manhattan,3,"5, 7",Television,Cable-episodic,United States of America,10002
+608298,Shooting Permit,11/01/2021 09:00:00 AM,11/01/2021 11:00:00 PM,10/25/2021 05:14:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 75 STREET and EAST 79 STREET, EAST 76 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 86 STREET between 1 AVENUE and YORK AVENUE, EAST END AVENUE between EAST 84 STREET and EAST 90 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10028, 10075, 10128"
+608289,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 08:00:00 PM,10/25/2021 04:10:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+608275,Shooting Permit,10/28/2021 02:00:00 PM,10/29/2021 04:00:00 AM,10/25/2021 03:31:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","73 AVENUE between 179 STREET and UTOPIA PARKWAY, UTOPIA PARKWAY between JEWEL AVENUE and 73 AVENUE, 69 AVENUE between 174 STREET and 175 STREET, 175 STREET between 69 AVENUE and JEWEL AVENUE, 69 AVENUE between 175 STREET and UTOPIA PARKWAY, FRESH MEADOW LANE between 68 AVENUE and 69 AVENUE, 68 AVENUE between UTOPIA PARKWAY and 174 STREET, UTOPIA PARKWAY between 69 AVENUE and FRESH MEADOW LANE",Queens,8,107,Film,Feature,United States of America,"11365, 11366"
+608264,Shooting Permit,10/28/2021 08:30:00 AM,10/28/2021 09:00:00 PM,10/25/2021 03:19:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 18 STREET and WEST 23 STREET, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 8 AVENUE and 9 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+608260,Theater Load in and Load Outs,11/29/2021 12:01:00 AM,12/05/2021 11:59:00 PM,10/25/2021 03:07:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 62 STREET and WEST 64 STREET, AMSTERDAM AVENUE between WEST 65 STREET and WEST 66 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+608255,Theater Load in and Load Outs,11/18/2021 12:01:00 AM,11/20/2021 11:59:00 PM,10/25/2021 02:58:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 62 STREET and WEST 64 STREET, AMSTERDAM AVENUE between WEST 65 STREET and WEST 66 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+608254,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 10:00:00 PM,10/25/2021 02:54:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between 5 AVENUE and MADISON AVENUE, WEST 51 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 51 STREET, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, W 116th St between LENOX AVENUE and Madison Ave, W 124TH ST between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 5","18, 28",Television,Cable-episodic,United States of America,"10017, 10019, 10020, 10022, 10026, 10027, 10171, 10172"
+608252,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 11:00:00 PM,10/25/2021 02:49:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+608244,Shooting Permit,10/28/2021 06:00:00 AM,10/28/2021 09:00:00 PM,10/25/2021 02:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",MORRIS PARK AVENUE between SEMINOLE AVENUE and EASTCHESTER ROAD,Bronx,11,49,Commercial,Commercial,United States of America,10461
+608242,Shooting Permit,10/29/2021 09:00:00 AM,10/29/2021 09:00:00 PM,10/25/2021 01:59:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT HAMILTON PARKWAY between 66 STREET and BAY RIDGE AVENUE, 68 STREET between FORT HAMILTON PARKWAY and 9 AVENUE, PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE TERRACE between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between BROOKLYN HEIGHTS PROMENADE and HICKS STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, HENRY STREET between MONTAGUE STREET and PIERREPONT STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,"10, 2","68, 84",Television,Cable-episodic,United States of America,"11201, 11219"
+608235,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 08:00:00 PM,10/25/2021 01:23:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between GRAND STREET and BROOME STREET",Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+608234,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 08:00:00 PM,10/25/2021 01:23:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between WEST 11 STREET and WEST 12 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+608232,Shooting Permit,10/29/2021 08:00:00 AM,10/29/2021 11:00:00 PM,10/25/2021 01:17:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA BOULEVARD between 23 STREET and 28 STREET, 23 STREET between ASTORIA BOULEVARD and NEWTOWN AVENUE, NEWTOWN AVENUE between 23 STREET and CRESCENT STREET",Queens,1,114,Film,Feature,United States of America,11102
+608227,Theater Load in and Load Outs,11/03/2021 12:01:00 AM,11/05/2021 06:00:00 AM,10/25/2021 12:46:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+608226,Theater Load in and Load Outs,11/01/2021 12:01:00 AM,11/02/2021 11:59:00 PM,10/25/2021 12:42:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+608225,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 11:00:00 PM,10/25/2021 12:34:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608218,Shooting Permit,11/02/2021 07:00:00 AM,11/02/2021 11:59:00 PM,10/25/2021 12:11:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between EAGLE STREET and DUPONT STREET, EAGLE ST between PROVOST STREET and MCGUINESS BLVD",Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+608217,Shooting Permit,10/28/2021 09:00:00 AM,10/29/2021 12:00:00 AM,10/25/2021 11:58:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between QUEENS PLAZA NORTH and 41 AVENUE, 41 AVENUE between 21 STREET and 23 STREET, QUEENS PLAZA SOUTH between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between 21 STREET and 23 STREET",Queens,"1, 2","108, 114",Television,Not Applicable,United States of America,11101
+608213,Theater Load in and Load Outs,11/13/2021 12:01:00 AM,11/14/2021 11:59:00 PM,10/25/2021 11:54:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608205,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 10:00:00 PM,10/25/2021 11:29:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+608202,Shooting Permit,10/28/2021 10:00:00 AM,10/29/2021 02:00:00 AM,10/25/2021 11:20:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 105 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between MADISON AVENUE and PARK AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64","22, 23",Television,Cable-episodic,United States of America,10029
+608201,Theater Load in and Load Outs,11/11/2021 12:01:00 AM,11/12/2021 11:59:00 PM,10/25/2021 11:14:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608193,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:00:00 PM,10/25/2021 11:00:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608192,Theater Load in and Load Outs,11/10/2021 12:01:00 AM,11/10/2021 11:59:00 PM,10/25/2021 10:57:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608187,Shooting Permit,10/28/2021 02:00:00 AM,10/28/2021 08:00:00 PM,10/25/2021 10:42:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between WEST 11 STREET and WEST 12 STREET, BETHUNE STREET between WASHINGTON STREET and WEST STREET",Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+608186,Rigging Permit,11/01/2021 07:00:00 AM,11/01/2021 07:00:00 PM,10/25/2021 10:36:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+608185,Rigging Permit,10/28/2021 07:00:00 AM,10/28/2021 07:00:00 PM,10/25/2021 10:34:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+608184,Rigging Permit,10/27/2021 07:00:00 AM,10/27/2021 07:00:00 PM,10/25/2021 10:32:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",PIERREPONT PLACE between PIERREPONT STREET and MONTAGUE STREET,Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+608183,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 08:00:00 PM,10/25/2021 10:29:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between BANK STREET and WEST 12 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+608181,Shooting Permit,10/28/2021 08:00:00 AM,10/28/2021 09:00:00 PM,10/25/2021 10:26:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","LISPENARD STREET between CHURCH STREET and BROADWAY, WALKER STREET between 6 AVENUE and BROADWAY, CHURCH STREET between LISPENARD STREET and FRANKLIN STREET, WHITE STREET between CHURCH STREET and BROADWAY, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, CANAL STREET between CHURCH STREET and BROADWAY",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+608180,Shooting Permit,10/28/2021 06:00:00 AM,10/28/2021 07:00:00 PM,10/25/2021 10:18:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 ROAD and 44 DRIVE, 44 ROAD between 11 STREET and 21 STREET",Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+608178,Theater Load in and Load Outs,11/25/2021 12:01:00 AM,12/09/2021 11:59:00 PM,10/25/2021 10:09:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVE between WEST 61 STREET and WEST 63RD ST",Manhattan,7,20,Theater,Theater,United States of America,10023
+608176,Theater Load in and Load Outs,11/08/2021 12:01:00 AM,11/09/2021 06:00:00 AM,10/25/2021 10:06:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608171,Theater Load in and Load Outs,11/07/2021 12:01:00 AM,11/07/2021 11:59:00 PM,10/25/2021 09:42:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608169,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/25/2021 09:27:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between JOHNSON AVENUE and BOERUM STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+608168,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/25/2021 09:21:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Film,Feature,United States of America,"11218, 11226"
+608167,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 09:00:00 PM,10/25/2021 09:08:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Film,Feature,United States of America,"11218, 11226"
+608163,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 10:00:00 PM,10/25/2021 09:01:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+608161,Shooting Permit,10/28/2021 08:00:00 AM,10/28/2021 11:00:00 PM,10/25/2021 08:41:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA BOULEVARD between CRESCENT STREET and 23 STREET, ASTORIA BOULEVARD between CRESCENT STREET and 28 STREET, ASTORIA BOULEVARD between CRESCENT STREET and 28 STREET, ASTORIA BOULEVARD between 28 STREET and 29 STREET, ASTORIA BOULEVARD between 28 STREET and 29 STREET, 29TH STREET between ASTORIA BOULEVARD and NEWTOWN AVENUE, 23 STREET between NEWTOWN AVENUE and ASTORIA BOULEVARD, NEWTOWN AVENUE between 23 STREET and CRESCENT STREET, 27 STREET between ASTORIA BOULEVARD and 25 ROAD, 28 STREET between ASTORIA BOULEVARD and NEWTOWN AVENUE",Queens,1,114,Film,Feature,United States of America,11102
+608160,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 09:00:00 PM,10/25/2021 08:37:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+608135,Theater Load in and Load Outs,10/28/2021 12:01:00 AM,10/31/2021 07:00:00 AM,10/24/2021 10:55:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+608123,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 07:00:00 PM,10/23/2021 09:14:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+608108,Shooting Permit,10/28/2021 07:00:00 AM,10/29/2021 02:00:00 AM,10/22/2021 09:48:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between KENT AVENUE and BEDFORD AVENUE, BEDFORD AVE between BROADWAY and S. 8TH ST, KENT AVENUE between BROADWAY and SOUTH 5 STREET, SOUTH 8 STREET between DRIGGS AVENUE and BEDFORD AVENUE, DRIGGS AVENUE between BROADWAY and SOUTH 8 STREET, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, WYTHE AVENUE between SOUTH 6 STREET and BROADWAY, SOUTH 6 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,"11211, 11249"
+608101,Shooting Permit,10/27/2021 06:00:00 AM,10/27/2021 12:00:00 PM,10/22/2021 07:00:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 6 AVENUE and 7 AVENUE, WEST 47 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,10036
+608089,Theater Load in and Load Outs,11/06/2021 12:01:00 AM,11/06/2021 11:59:00 PM,10/22/2021 04:59:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608080,Theater Load in and Load Outs,11/04/2021 12:01:00 AM,11/05/2021 06:00:00 AM,10/22/2021 04:24:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+608075,Theater Load in and Load Outs,11/13/2021 12:01:00 AM,11/13/2021 11:59:00 PM,10/22/2021 03:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+608074,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/22/2021 03:51:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, MADISON AVENUE between EAST 54 STREET and EAST 53 STREET, EAST 54 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE between EAST 54 STREET and EAST 51 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 40 STREET between PARK AVENUE and MADISON AVENUE, EAST 40 STREET between MADISON AVENUE and 5 AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 39 STREET and EAST 37 STREET",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10022, 10152"
+608061,Shooting Permit,11/01/2021 01:00:00 PM,11/02/2021 01:00:00 AM,10/22/2021 03:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORFOLK STREET between DELANCY STREET and RIVINGTON STREET,Manhattan,3,7,Film,Feature,United States of America,10002
+608054,Theater Load in and Load Outs,11/12/2021 12:01:00 AM,11/12/2021 11:59:00 PM,10/22/2021 03:08:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+608053,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 11:00:00 PM,10/22/2021 03:05:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 44 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+608050,Shooting Permit,10/27/2021 11:00:00 AM,10/27/2021 07:00:00 PM,10/22/2021 02:56:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between THOMAS STREET and LEONARD STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, THOMAS STREET between HUDSON STREET and WEST BROADWAY, CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WEST BROADWAY between DUANE STREET and READE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, CENTRE STREET between CANAL STREET and HESTER STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,"1, 2","1, 5",Television,Episodic series,United States of America,"10007, 10013"
+608047,Shooting Permit,11/01/2021 07:00:00 AM,11/01/2021 09:00:00 PM,10/22/2021 02:48:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608046,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/22/2021 02:45:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRUCKNER BLVD between REVERE AVENUE and EAST TREMONT AVENUE, EAST TREMONT AVENUE between BRUCKNER BOULEVARD and BARKLEY AVENUE, EAST TREMONT AVENUE between PHILIP AVENUE and RANDALL AVENUE, EAST TREMONT AVENUE between RANDALL AVENUE and SCHLEY AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, SCHLEY AVENUE between EAST TREMONT AVENUE and CROSS BRONX EXPRESSWAY, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, E Tremont Ave between SCHLEY AVENUE and Cross Bronx Expy, Cross Bronx Expy between REVERE AVENUE and E Tremont Ave",Bronx,10,45,Television,Cable-episodic,United States of America,10465
+608043,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 11:00:00 PM,10/22/2021 02:39:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between TEN EYCK STREET and STAGG STREET, TEN EYCK STREET between WATERBURY STREET and BOGART STREET, SCHOLES STREET between BOGART STREET and WATERBURY STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, BOGART STREET between TEN EYCK STREET and STAGG STREET, MEADOW STREET between WATERBURY STREET and MORGAN AVENUE",Brooklyn,1,90,Television,Not Applicable,United States of America,11206
+608041,Shooting Permit,11/03/2021 07:00:00 AM,11/03/2021 09:00:00 PM,10/22/2021 02:30:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+608026,Shooting Permit,10/29/2021 09:00:00 AM,10/30/2021 01:00:00 AM,10/22/2021 02:02:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+608021,Shooting Permit,10/27/2021 10:00:00 AM,10/27/2021 11:59:00 PM,10/22/2021 01:34:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 105 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between MADISON AVENUE and PARK AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"11, 64","22, 23",Television,Cable-episodic,United States of America,10029
+608020,DCAS Prep/Shoot/Wrap Permit,10/27/2021 05:00:00 PM,10/27/2021 11:00:00 PM,10/22/2021 01:34:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between WORTH STREET and DUANE STREET,Manhattan,1,5,Television,Episodic series,United States of America,10007
+608019,Theater Load in and Load Outs,11/10/2021 12:01:00 AM,11/11/2021 11:59:00 PM,10/22/2021 01:32:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+608016,Theater Load in and Load Outs,11/08/2021 12:01:00 AM,11/09/2021 11:59:00 PM,10/22/2021 01:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+608010,Theater Load in and Load Outs,11/07/2021 12:01:00 AM,11/07/2021 11:59:00 PM,10/22/2021 01:06:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607997,Theater Load in and Load Outs,11/06/2021 12:01:00 AM,11/06/2021 11:59:00 PM,10/22/2021 12:46:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607994,Theater Load in and Load Outs,11/12/2021 12:01:00 AM,11/14/2021 06:00:00 AM,10/22/2021 12:29:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+607986,Theater Load in and Load Outs,11/05/2021 12:01:00 AM,11/06/2021 06:00:00 AM,10/22/2021 11:54:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 33 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+607984,Shooting Permit,10/27/2021 06:00:00 AM,10/27/2021 11:00:00 PM,10/22/2021 11:42:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+607983,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 09:00:00 PM,10/22/2021 11:40:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between NORTH 12 STREET and NASSAU AVENUE, NORTH 12 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,94,Film,Feature,United States of America,"11211, 11222, 11249"
+607980,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 11:00:00 PM,10/22/2021 11:34:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+607968,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:00:00 PM,10/22/2021 09:55:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODWARD AVENUE between STARR STREET and STANHOPE STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, STANHOPE STREET between WOODWARD AVENUE and FAIRVIEW AVENUE, STANHOPE STREET between FAIRVIEW AVENUE and GRANDVIEW AVENUE, GREENE AVENUE between SENECA AVENUE and CYPRESS AVENUE, BLEECKER STREET between SENECA AVENUE and CYPRESS AVENUE, CYPRESS AVENUE between GREENE AVENUE and BLEECKER STREET, MENAHAN STREET between SENECA AVENUE and CYPRESS AVENUE, SENECA AVENUE between BLEECKER STREET and GREENE AVENUE, ONDERDONK AVENUE between STOCKHOLM STREET and STANHOPE STREET",Queens,"4, 5","104, 83",Television,Cable-episodic,United States of America,"11237, 11385"
+607958,Shooting Permit,10/27/2021 09:00:00 AM,10/27/2021 11:00:00 PM,10/22/2021 08:59:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+607940,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 11:00:00 PM,10/21/2021 10:51:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607937,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:00:00 PM,10/21/2021 08:24:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 63 STREET and EAST 64 STREET, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, CATHERINE SLIP between CHERRY STREET and SOUTH STREET",Manhattan,"3, 8","19, 5, 9",Film,Feature,United States of America,"10002, 10038, 10065"
+607936,Shooting Permit,10/25/2021 03:00:00 AM,10/25/2021 08:00:00 PM,10/21/2021 07:14:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOYT AVENUE NORTH between 28 STREET and 29 STREET, 29 STREET between HOYT AVENUE and 24 AVENUE, HOYT AVENUE between 29 STREET and 31 STREET, ASTORIA BOULEVARD between 29 STREET and 32 STREET",Queens,"1, 3, 4","110, 114, 115",Film,Feature,United States of America,"11102, 11103, 11105, 11369, 11370, 11372"
+607934,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:00:00 PM,10/21/2021 06:56:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between JOHNSON AVENUE and BOERUM STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, JOHNSON AVENUE between WHITE STREET and BUSHWICK PLACE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+607932,Theater Load in and Load Outs,10/27/2021 12:01:00 AM,11/01/2021 11:59:00 PM,10/21/2021 06:41:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Theater,Theater,United States of America,10001
+607927,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 06:00:00 PM,10/21/2021 06:06:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 76 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023, 10075"
+607919,Theater Load in and Load Outs,11/05/2021 12:01:00 AM,11/05/2021 11:59:00 PM,10/21/2021 04:51:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607906,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 09:00:00 PM,10/21/2021 03:30:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, RUSSELL STREET between MESEROLE AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607903,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 11:00:00 PM,10/21/2021 03:12:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607892,Shooting Permit,10/27/2021 06:30:00 AM,10/27/2021 10:00:00 PM,10/21/2021 02:50:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+607890,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 11:00:00 PM,10/21/2021 02:46:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607888,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 11:00:00 PM,10/21/2021 02:42:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607882,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 10:00:00 PM,10/21/2021 02:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607879,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 09:00:00 PM,10/21/2021 02:27:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607878,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/21/2021 02:24:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607875,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 09:00:00 PM,10/21/2021 02:18:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607873,Shooting Permit,10/25/2021 09:00:00 AM,10/25/2021 09:00:00 PM,10/21/2021 02:11:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between EAST 158 STREET and EAST 151 STREET, GRAND CONCOURSE between MCCLELLAN STREET and EAST 166 STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET",Bronx,4,44,Television,Episodic series,United States of America,"10451, 10452, 10456"
+607872,Theater Load in and Load Outs,11/04/2021 12:01:00 AM,11/04/2021 11:59:00 PM,10/21/2021 02:07:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607870,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/21/2021 02:06:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607856,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/21/2021 01:25:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 62 STREET, PARK AVENUE between EAST 59 STREET and EAST 61 STREET, EAST 60 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 58 STREET and EAST 53 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065"
+607852,Theater Load in and Load Outs,11/03/2021 12:01:00 AM,11/03/2021 11:59:00 PM,10/21/2021 01:17:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607850,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 11:00:00 PM,10/21/2021 01:11:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, EAST HOUSTON STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between EAST HOUSTON STREET and PRINCE STREET, LEONARD STREET between HUDSON STREET and WEST BROADWAY, Varick St between Leonard St and Franklin St, HUDSON STREET between LEONARD STREET and WORTH STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE",Manhattan,"1, 2","1, 5, 9",Film,Short,United States of America,"10012, 10013"
+607849,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 10:00:00 PM,10/21/2021 01:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+607845,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/21/2021 12:51:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEIGEL STREET between BOGART STREET and WHITE STREET, BOGART STREET between JOHNSON AVENUE and DEAD END, WHITE STREET between JOHNSON AVENUE and BOERUM STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+607844,Theater Load in and Load Outs,11/02/2021 12:01:00 AM,11/02/2021 11:59:00 PM,10/21/2021 12:49:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607843,Shooting Permit,10/25/2021 06:00:00 AM,10/26/2021 01:00:00 AM,10/21/2021 12:49:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607839,Theater Load in and Load Outs,11/07/2021 12:01:00 AM,11/09/2021 06:00:00 AM,10/21/2021 12:33:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 65 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Theater,Theater,United States of America,10023
+607832,Theater Load in and Load Outs,11/14/2021 12:01:00 AM,11/15/2021 06:00:00 AM,10/21/2021 12:17:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607829,Theater Load in and Load Outs,11/01/2021 12:01:00 AM,11/01/2021 11:59:00 PM,10/21/2021 12:05:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+607828,Theater Load in and Load Outs,10/27/2021 06:00:00 AM,10/29/2021 05:00:00 AM,10/21/2021 12:04:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+607824,Theater Load in and Load Outs,10/26/2021 06:00:00 AM,10/27/2021 05:00:00 AM,10/21/2021 11:56:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+607823,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 09:00:00 PM,10/21/2021 11:55:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between KENMARE STREET and BROOME STREET, BROOME STREET between LAFAYETTE STREET and MERCER STREET, BROADWAY between BROOME STREET and SPRING STREET, CROSBY STREET between BROOME STREET and SPRING STREET, CROSBY STREET between BROOME STREET and GRAND STREET, CLEVELAND PLACE between KENMARE STREET and GRAND STREET, GRAND STREET between LAFAYETTE STREET and CENTRE STREET, BROOME STREET between LAFAYETTE STREET and CLEVELAND PLACE, KENMARE STREET between MULBERRY STREET and CLEVELAND PLACE",Manhattan,2,"1, 5",Television,Not Applicable,United States of America,"10012, 10013"
+607820,Rigging Permit,10/26/2021 02:00:00 PM,10/27/2021 01:00:00 PM,10/21/2021 11:43:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET,Manhattan,2,6,Television,Episodic series,United States of America,10014
+607819,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 10:00:00 PM,10/21/2021 11:42:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET, WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between WEST 11 STREET and WEST 12 STREET, BANK STREET between WASHINGTON STREET and GREENWICH STREET, BANK STREET between WEST STREET and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+607816,Theater Load in and Load Outs,10/25/2021 05:30:00 AM,10/26/2021 05:00:00 AM,10/21/2021 11:25:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+607814,Theater Load in and Load Outs,11/14/2021 12:01:00 AM,11/14/2021 11:59:00 PM,10/21/2021 11:15:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+607813,Theater Load in and Load Outs,10/24/2021 05:00:00 AM,10/25/2021 05:00:00 AM,10/21/2021 11:14:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+607812,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 10:00:00 PM,10/21/2021 11:13:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+607808,Theater Load in and Load Outs,10/22/2021 06:00:00 AM,10/23/2021 11:00:00 PM,10/21/2021 11:01:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+607807,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 07:00:00 PM,10/21/2021 10:55:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and FIFTH AVENUE, BROADWAY between EAST 19 STREET and EAST 18 STREET",Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+607803,Shooting Permit,10/25/2021 06:30:00 AM,10/25/2021 08:30:00 PM,10/21/2021 10:46:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between CORTELYOU ROAD and BEVERLEY ROAD, ARGYLE ROAD between CORTELYOU ROAD and DORCHESTER ROAD, CORTELYOU ROAD between ARGYLE ROAD and WESTMINSTER ROAD",Brooklyn,14,70,Film,Feature,United States of America,11218
+607800,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 09:00:00 PM,10/21/2021 10:19:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+607796,Shooting Permit,10/24/2021 05:00:00 AM,10/24/2021 12:00:00 PM,10/21/2021 09:59:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+607794,Shooting Permit,10/23/2021 05:00:00 AM,10/23/2021 12:00:00 PM,10/21/2021 09:55:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+607793,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 09:00:00 PM,10/21/2021 09:48:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607786,Shooting Permit,10/22/2021 01:00:00 PM,10/23/2021 01:00:00 PM,10/21/2021 09:08:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","32 STREET between 23 AVENUE and 23 ROAD, 23 AVENUE between 29 STREET and 31 STREET, 23 AVENUE between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and DITMARS BOULEVARD, 23 ROAD between 31 STREET and 33 STREET",Queens,1,114,Film,Feature,United States of America,11105
+607771,Shooting Permit,10/27/2021 08:00:00 PM,10/28/2021 05:00:00 AM,10/21/2021 01:50:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 43 STREET between VANDERBILT AVENUE and MADISON AVENUE",Manhattan,5,14,WEB,Not Applicable,United States of America,10017
+607766,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 11:59:00 PM,10/20/2021 10:33:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between WEST 131 STREET and WEST 134 STREET, 12 AVENUE between WEST 134 STREET and WEST 135 STREET, W. 134TH STREET between 12 AVENUE and DEAD END, 12 AVENUE between WEST 135 STREET and WEST 138 STREET, WEST 133 STREET between 12 AVENUE and BROADWAY, BROADWAY between WEST 135 STREET and WEST 142 STREET, WEST 139 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 137 STREET and WEST 138 STREET, RIVERSIDE DRIVE between WEST 138 STREET and WEST 139 STREET, RIVERSIDE DR between WEST 139 STREET and WEST 140 STREET, RIVERSIDE DRIVE between WEST 135 STREET and WEST 136 STREET, WEST 135 STREET between BROADWAY and RIVERSIDE DRIVE, WEST 137 STREET between BROADWAY and RIVERSIDE DRIVE",Manhattan,9,"20, 26, 30",Television,Episodic series,United States of America,"10024, 10027, 10031"
+607748,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,10/24/2021 06:00:00 AM,10/20/2021 06:34:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+607735,Shooting Permit,10/22/2021 09:00:00 AM,10/22/2021 11:00:00 PM,10/20/2021 04:46:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 50 STREET and WEST 54 STREET, WEST 53 STREET between 10 AVENUE and 9 AVENUE, WEST 51 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,18,Film,Feature,United States of America,10019
+607734,Shooting Permit,10/29/2021 11:00:00 AM,10/30/2021 01:00:00 AM,10/20/2021 04:44:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 88 STREET and METROPOLITAN AVENUE, 88 STREET between COOPER AVENUE and DORAN AVENUE, 84 STREET between COOPER AVENUE and DORAN AVENUE, WOODHAVEN BOULEVARD between 67 AVENUE and YELLOWSTONE BOULEVARD",Queens,"5, 6","104, 112",Television,Episodic series,United States of America,"11374, 11385"
+607729,Shooting Permit,10/26/2021 10:00:00 AM,10/27/2021 02:00:00 AM,10/20/2021 04:27:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 26 STREET, EAST 26 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 26 STREET between MADISON AVENUE and 5 AVENUE, EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 26 STREET and EAST 27 STREET, 5 AVENUE between EAST 27 STREET and EAST 28 STREET, WEST 27 STREET between 5 AVENUE and 6 AVENUE, WEST 23 STREET between 6 AVENUE and 7 AVENUE, WEST 23 STREET between 7 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE, EAST 24 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,"10001, 10010, 10011, 10016"
+607719,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/20/2021 03:58:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","116 AVENUE between BARRON STREET and 160 STREET, 116 AVENUE between 158 STREET and 159 STREET, 157 STREET between 115 DRIVE and FOCH BOULEVARD, BARRON STREET between 116 AVENUE and 116 ROAD, BAISLEY BOULEVARD between 155 STREET and LAKEVIEW LANE, 158 STREET between 116 AVENUE and 115 ROAD, LIBERTY AVENUE between 130 STREET and 131 STREET",Queens,"10, 12","106, 113",Television,Cable-episodic,United States of America,"11419, 11434"
+607713,Shooting Permit,10/22/2021 12:00:00 PM,10/23/2021 02:30:00 AM,10/20/2021 03:44:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between COOK STREET and VARET STREET, WHITE STREET between VARET STREET and MOORE STREET, CENTRAL AVENUE between FORREST STREET and FLUSHING AVENUE, EVERGREEN AVENUE between NOLL STREET and FLUSHING AVENUE, FLUSHING AVENUE between BOGART STREET and BUSHWICK AVENUE, COOK STREET between WHITE STREET and BUSHWICK AVENUE, COOK STREET between WHITE STREET and BOGART STREET, VARET STREET between BUSHWICK AVENUE and WHITE STREET, VARET STREET between WHITE STREET and BOGART STREET, EVERGREEN AVENUE between FLUSHING AVENUE and COOK STREET, INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE, GARDNER AVENUE between INGRAHAM STREET and HARRISON PLACE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, JOHNSON AVENUE between VARICK STREET and GARDNER AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11206, 11237"
+607698,Shooting Permit,10/25/2021 04:00:00 PM,10/25/2021 08:00:00 PM,10/20/2021 02:58:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",TUDOR CITY PLACE between EAST 41 STREET and EAST 42 STREET,Manhattan,6,17,Television,Cable-episodic,United States of America,10017
+607695,Shooting Permit,11/02/2021 03:00:00 AM,11/08/2021 01:00:00 PM,10/20/2021 02:43:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 67 STREET and WEST 69 STREET,Manhattan,"64, 7","20, 22",Television,Not Applicable,United States of America,10023
+607694,Shooting Permit,11/06/2021 12:01:00 AM,11/07/2021 07:00:00 PM,10/20/2021 02:43:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE, HANSON PLACE between ASHLAND PLACE and ST FELIX STREET, FLATBUSH AVENUE between 4 AVENUE and LAFAYETTE AVENUE, EAST 62 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 61 STREET between 1 AVENUE and YORK AVENUE, EAST 135 STREET between ALEXANDER AVENUE and LINCOLN AVENUE",Brooklyn,"1, 2, 8","19, 40, 78, 84, 88",Television,Not Applicable,United States of America,"10065, 10454, 11217"
+607688,Shooting Permit,10/23/2021 08:00:00 AM,10/23/2021 10:00:00 PM,10/20/2021 02:10:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 23 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Film,Feature,United States of America,10011
+607684,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 07:00:00 PM,10/20/2021 01:44:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 2 AVENUE and 3 AVENUE, WEST BROADWAY between BROOME STREET and GRAND STREET, GRAND STREET between WEST BROADWAY and WOOSTER STREET",Brooklyn,"2, 7","1, 72",Still Photography,Not Applicable,United States of America,"10013, 11220, 11232"
+607683,Shooting Permit,10/31/2021 07:00:00 AM,10/31/2021 07:00:00 PM,10/20/2021 01:43:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 28 STREET and EAST 27 STREET, EAST 27 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,13,Still Photography,Not Applicable,United States of America,"10001, 10016"
+607679,Shooting Permit,10/27/2021 06:00:00 AM,10/27/2021 11:00:00 PM,10/20/2021 01:36:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 25 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United Kingdom,10001
+607678,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:30:00 PM,10/20/2021 01:36:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 10 AVENUE and 11 AVENUE, WAVERLY PLACE between 6 AVENUE and GAY STREET",Manhattan,"2, 4","10, 6",Commercial,Commercial,United Kingdom,"10001, 10014"
+607675,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/20/2021 01:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WALKER STREET between BROADWAY and CORTLANDT ALLEY,Manhattan,1,5,WEB,Not Applicable,United States of America,10013
+607670,Shooting Permit,10/23/2021 07:00:00 AM,10/23/2021 10:00:00 PM,10/20/2021 12:59:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARET STREET between BOGART STREET and WHITE STREET, VARET STREET between WHITE STREET and BUSHWICK AVENUE, BOGART STREET between VARET STREET and COOK STREET",Brooklyn,1,90,Commercial,Commercial,United States of America,11206
+607668,Shooting Permit,10/29/2021 07:00:00 AM,10/29/2021 11:00:00 PM,10/20/2021 12:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, PARK AVENUE between EAST 57 STREET and EAST 60 STREET, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, EAST 58 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 8","18, 19",Film,Feature,United States of America,10022
+607667,Shooting Permit,10/28/2021 07:00:00 AM,10/28/2021 11:00:00 PM,10/20/2021 12:53:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, PARK AVENUE between EAST 57 STREET and EAST 60 STREET, EAST 58 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 8","18, 19",Film,Feature,United States of America,10022
+607661,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 08:00:00 PM,10/20/2021 12:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 6 AVENUE and 5 AVENUE, BROADWAY between WEST 57 STREET and WEST 56 STREET, WEST 56 STREET between BROADWAY and 8 AVENUE, 8 AVENUE between WEST 57 STREET and WEST 55 STREET, WEST 56 STREET between 8 AVENUE and 9 AVENUE, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Episodic series,United States of America,10019
+607655,Shooting Permit,10/25/2021 06:30:00 AM,10/25/2021 09:00:00 PM,10/20/2021 11:46:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between BEACH STREET and BROADWAY, CHURCH STREET between WHITE STREET and WALKER STREET, WHITE STREET between CHURCH STREET and BROADWAY, WHITE STREET between BROADWAY and CHURCH STREET, BROADWAY between WHITE STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and LEONARD STREET, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET, NORTH MOORE STREET between HUDSON STREET and VARICK STREET",Manhattan,1,"1, 5",Television,Not Applicable,United States of America,10013
+607650,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 07:00:00 PM,10/20/2021 11:38:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between HUDSON STREET and WEST BROADWAY, Varick St between Leonard St and Franklin St, HUDSON STREET between LEONARD STREET and FRANKLIN STREET, FRANKLIN STREET between HUDSON STREET and VARICK STREET",Manhattan,1,1,Film,Short,United States of America,10013
+607652,Shooting Permit,10/24/2021 07:00:00 AM,10/24/2021 09:00:00 PM,10/20/2021 11:38:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between HUDSON STREET and WEST BROADWAY, Varick St between Leonard St and Franklin St, HUDSON STREET between LEONARD STREET and WORTH STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, FRANKLIN STREET between HUDSON STREET and VARICK STREET",Manhattan,1,1,Film,Short,United States of America,10013
+607651,Shooting Permit,10/23/2021 07:00:00 AM,10/23/2021 10:00:00 PM,10/20/2021 11:38:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between HUDSON STREET and WEST BROADWAY, VARICK STREET between Leonard St and FRANKLIN STREET, HUDSON STREET between LEONARD STREET and WORTH STREET, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, FRANKLIN STREET between HUDSON STREET and VARICK STREET",Manhattan,1,1,Film,Short,United States of America,10013
+607649,Shooting Permit,10/27/2021 07:00:00 AM,10/27/2021 09:00:00 PM,10/20/2021 11:21:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607648,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 08:00:00 PM,10/20/2021 11:19:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607647,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 08:00:00 PM,10/20/2021 11:17:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607640,DCAS Prep/Shoot/Wrap Permit,10/23/2021 07:00:00 AM,10/24/2021 12:00:00 AM,10/20/2021 10:23:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","88 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 89 AVENUE between SUTPHIN BOULEVARD and 148 STREET, 88 AVENUE between 146 STREET and SUTPHIN BOULEVARD, 148 STREET between 88 AVENUE and 89 AVENUE, HILLSIDE AVENUE between SUTPHIN BOULEVARD and 150 STREET, HILLSIDE AVENUE between 150 STREET and PARSONS BOULEVARD",Queens,"12, 8","103, 107",Television,Episodic series,United States of America,"11432, 11435"
+607636,Shooting Permit,10/22/2021 03:00:00 PM,10/23/2021 05:00:00 AM,10/20/2021 09:54:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+607630,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/20/2021 09:25:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+607626,Shooting Permit,10/22/2021 08:30:00 AM,10/22/2021 11:00:00 PM,10/20/2021 08:52:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","DITMARS BOULEVARD between SHORE BOULEVARD and 19 STREET, SHORE BOULEVARD between DITMARS BOULEVARD and 21 DRIVE, 19 STREET between 23 TERRACE and DITMARS BOULEVARD, 19 STREET between 23 ROAD and 23 DRIVE, 21 STREET between 23 AVENUE and 23 DRIVE, 23 ROAD between 19 STREET and 21 STREET, 23 AVENUE between 19 STREET and 21 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+607625,Shooting Permit,10/23/2021 06:00:00 AM,10/23/2021 08:00:00 PM,10/20/2021 08:42:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 34 STREET and 36 STREET, 2 AVENUE between 32 STREET and 34 STREET",Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+607612,Shooting Permit,10/24/2021 09:00:00 AM,10/24/2021 08:00:00 PM,10/19/2021 10:05:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","38 STREET between DITMARS BOULEVARD and 21 AVENUE, 72 DRIVE between MAIN STREET and 141 STREET",Queens,"1, 8","107, 114",Film,Feature,United States of America,"11105, 11367"
+607610,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 08:00:00 PM,10/19/2021 09:29:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORMAN AVENUE between RUSSELL STREET and HUMBOLDT STREET,Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+607600,Shooting Permit,10/23/2021 02:00:00 AM,10/23/2021 08:00:00 PM,10/19/2021 06:16:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY ST SOUTH between COLUMBIA STREET and LEWIS STREET, DELANCEY ST NORTH between LEWIS STREET and PITT STREET, GRAND STREET between PITT STREET and WILLETT STREET, DELANCEY STREET between FORSYTH STREET and CHRYSTIE STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between DELANCEY STREET and BROOME STREET, BROOME STREET between ELIZABETH STREET and CHRYSTIE STREET, ELIZABETH STREET between BROOME STREET and GRAND STREET",Manhattan,"2, 3","5, 7, 9",Commercial,Commercial,United States of America,"10002, 10012, 10013"
+607599,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 09:00:00 PM,10/19/2021 06:07:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",NASSAU AVENUE between HUMBOLDT STREET and KINGSLAND AVENUE,Brooklyn,"1, 2","108, 94",Television,Children,United States of America,"11222, 11378"
+607597,Shooting Permit,10/22/2021 07:00:00 AM,10/23/2021 02:00:00 AM,10/19/2021 06:03:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607596,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 11:00:00 PM,10/19/2021 06:01:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 9 STREET and WAVERLY PLACE, BROADWAY between WANAMAKER PLACE and EAST 10 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, BROADWAY between EAST 12 STREET and EAST 10 STREET, 4 AVENUE between EAST 11 STREET and EAST 10 STREET, 4 AVENUE between EAST 11 STREET and EAST 13 STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between BROADWAY and 4 AVENUE, EAST 12 STREET between 4 AVENUE and 3 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+607588,Theater Load in and Load Outs,10/25/2021 12:01:00 AM,10/27/2021 11:59:00 PM,10/19/2021 04:33:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+607583,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 11:59:00 PM,10/19/2021 04:02:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 67 STREET and EAST 70 STREET, EAST 69 STREET between 1 AVENUE and YORK AVENUE, EAST 68 STREET between 1 AVENUE and YORK AVENUE",Manhattan,8,19,Commercial,Commercial,United States of America,"10021, 10065"
+607581,Shooting Permit,10/22/2021 10:00:00 AM,10/22/2021 11:00:00 PM,10/19/2021 03:52:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between COVERT STREET and ELDERT ST, IRVING AVE between DECATUR STREET and SCHAEFER ST, HALSEY ST between IRVING AVE and WYCKOFF AVE, DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+607575,Shooting Permit,10/22/2021 06:00:00 AM,10/23/2021 02:00:00 AM,10/19/2021 03:22:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between CROSS BRONX EXPRESSWAY and WATSON AVENUE, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, ZEREGA AVENUE between HAVILAND AVENUE and WATSON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, HAVILAND AVENUE between HAVEMEYER AVENUE and CROSS BRONX SERVICE ROAD NORTH",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+607566,Shooting Permit,10/25/2021 07:00:00 AM,10/25/2021 09:00:00 PM,10/19/2021 02:42:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 9 STREET and NORTH 10 STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, NORTH 10 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 11 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 11 STREET between WYTHE AVENUE and BERRY STREET, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+607562,Shooting Permit,10/21/2021 04:00:00 AM,10/21/2021 08:00:00 PM,10/19/2021 02:22:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, NEVINS STREET between DEGRAW STREET and SACKETT STREET, NEVINS STREET between SACKETT STREET and UNION STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE, DEGRAW STREET between NEVINS STREET and DEAD END",Brooklyn,6,78,Film,Feature,United States of America,11217
+607545,Shooting Permit,10/21/2021 04:30:00 PM,10/22/2021 01:00:00 AM,10/19/2021 12:59:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between BROADWAY and CHURCH STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY, ELK STREET between READE STREET and CHAMBERS STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET, ST JAMES PLACE between JAMES STREET and MADISON STREET, CHATHAM SQUARE between MOTT STREET and EAST BROADWAY, OLIVER STREET between HENRY STREET and ST JAMES PLACE, JAMES STREET between ST JAMES PLACE and MADISON STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10007, 10013, 10038"
+607534,Shooting Permit,10/22/2021 06:00:00 AM,10/23/2021 03:00:00 AM,10/19/2021 12:22:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","114 STREET between BESSEMER STREET and MYRTLE AVENUE, 85 AVENUE between MYRTLE AVENUE and 114 STREET, 85 AVENUE between 114 STREET and 115 STREET, 113 STREET between 84 AVENUE and 85 AVENUE, MYRTLE AVENUE between 113 STREET and 115 STREET, 84 AVENUE between MYRTLE AVENUE and 113 STREET, BABBAGE STREET between 84 AVENUE and 115 STREET, BESSEMER STREET between 84 AVENUE and 115 STREET, 84 AVENUE between BABBAGE STREET and 115 STREET",Queens,9,102,Television,Episodic series,United States of America,"11415, 11418"
+607533,Shooting Permit,10/22/2021 04:00:00 PM,10/23/2021 06:00:00 AM,10/19/2021 12:22:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 10 AVENUE and 9 AVENUE, WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 15 STREET between 10 AVENUE and 9 AVENUE, W 14TH ST between 9 AVE and 8 AVE, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+607529,Shooting Permit,10/22/2021 11:00:00 AM,10/23/2021 01:00:00 AM,10/19/2021 12:07:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+607518,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 09:00:00 PM,10/19/2021 11:35:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 99 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 97 STREET and EAST 101 STREET, EAST 99 STREET between 2 AVENUE and 3 AVENUE, EAST 101 STREET between 1 AVENUE and 2 AVENUE, 1 AVENUE between EAST 97 STREET and EAST 99 STREET, EAST 100 STREET between 1 AVENUE and 2 AVENUE, EAST 23 STREET between 2 AVENUE and 3 AVENUE, EAST 22 STREET between 2 AVENUE and 3 AVENUE, EAST 22 STREET between 3 AVENUE and LEXINGTON AVENUE, GRAMERCY PARK NORTH between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 21 STREET and EAST 22 STREET, EAST 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 23 STREET and EAST 26 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"11, 5, 6","13, 23",Television,Cable-episodic,United States of America,"10003, 10010, 10029"
+607506,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 09:00:00 PM,10/19/2021 10:16:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST GUN HILL ROAD between DEKALB AVENUE and WAYNE AVENUE, SEMINOLE AVENUE between MORRIS PARK AVENUE and NEILL AVENUE, MORRIS PARK AVENUE between SEMINOLE AVENUE and EASTCHESTER ROAD",Bronx,"11, 7","49, 52",Commercial,Commercial,United States of America,"10461, 10467"
+607504,Shooting Permit,10/22/2021 11:30:00 AM,10/23/2021 01:30:00 AM,10/19/2021 10:14:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+607501,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 11:00:00 PM,10/19/2021 09:51:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",54 STREET between FLUSHING AVENUE and GRAND AVENUE,Queens,5,104,Television,Episodic series,United States of America,11378
+607495,Shooting Permit,10/22/2021 11:00:00 AM,10/23/2021 01:00:00 AM,10/19/2021 09:37:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",GOULDEN AVENUE between BEDFORD PARK BLVD WEST and WEST 197 STREET,Bronx,"7, 8","50, 52",Film,Feature,United States of America,10468
+607491,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 10:00:00 PM,10/19/2021 09:01:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",STORER AVENUE between ARTHUR KILL ROAD and CARLIN STREET,Staten Island,3,123,Television,Episodic series,United States of America,10309
+607489,Shooting Permit,10/21/2021 01:30:00 PM,10/22/2021 02:30:00 AM,10/19/2021 08:50:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","23 AVENUE between 29 STREET and 31 STREET, 23 AVENUE between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and DITMARS BOULEVARD, 32 STREET between 23 AVENUE and 23 ROAD, 23 ROAD between 31 STREET and 33 STREET",Queens,1,114,Film,Feature,United States of America,11105
+607484,Shooting Permit,10/21/2021 08:00:00 AM,10/21/2021 11:59:00 PM,10/19/2021 06:08:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","ESSEX STREET between CANAL STREET and GRAND STREET, EAST BROADWAY between JEFFERSON STREET and RUTGERS STREET, 8 AVENUE between 9 STREET and 10 STREET, 8 AVENUE between 14 STREET and 10 STREET, 10 STREET between 8 AVENUE and PROSPECT PARK WEST, 11 STREET between 8 AVENUE and 7 AVENUE",Manhattan,"3, 6","7, 78",Commercial,Commercial,United States of America,"10002, 11215"
+607472,Shooting Permit,10/21/2021 08:00:00 AM,10/22/2021 01:00:00 AM,10/18/2021 09:36:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","HARBOR VIEW TERRACE between 82 STREET and HARBOR LANE, 82 STREET between HARBOR VIEW TERRACE and SHORE ROAD, 82 STREET between HARBOR VIEW TERRACE and NARROWS AVENUE, NARROWS AVENUE between 83 STREET and 81 STREET, 82 STREET between NARROWS AVENUE and COLONIAL ROAD, SHORE ROAD between 79 STREET and 83 STREET, 93RD ST between 3RD AVE and 4TH AVE, 92ND ST between 3RD AVE and 4TH AVE, THIRD AVE between 92ND ST and 93RD ST, 3RD AVE between 93RD ST and 94TH ST, 93RD ST between RIDGE BOULEVARD and 3RD AVE, 92ND ST between THIRD AVE and RIDGE BLVD",Brooklyn,10,68,Television,Episodic series,United States of America,11209
+607468,Shooting Permit,10/31/2021 06:00:00 AM,10/31/2021 11:00:00 PM,10/18/2021 07:40:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607467,Shooting Permit,10/30/2021 06:00:00 AM,10/30/2021 11:00:00 PM,10/18/2021 07:38:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607466,Shooting Permit,10/29/2021 06:00:00 AM,10/29/2021 11:00:00 PM,10/18/2021 07:35:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607465,Shooting Permit,10/28/2021 06:00:00 AM,10/29/2021 11:00:00 PM,10/18/2021 07:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607462,Shooting Permit,10/27/2021 06:00:00 AM,10/27/2021 11:00:00 PM,10/18/2021 07:21:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607461,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 11:00:00 PM,10/18/2021 07:18:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607460,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 11:00:00 PM,10/18/2021 07:15:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607456,Shooting Permit,10/24/2021 06:00:00 AM,10/24/2021 11:00:00 PM,10/18/2021 07:12:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607454,Shooting Permit,10/23/2021 06:00:00 AM,10/23/2021 11:00:00 PM,10/18/2021 07:09:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607449,Shooting Permit,10/25/2021 06:30:00 AM,10/25/2021 08:30:00 PM,10/18/2021 06:52:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITEHALL STREET between BRIDGE STREET and PEARL STREET, PEARL STREET between STATE STREET and BROAD STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET, BRIDGE STREET between BROAD STREET and WHITEHALL STREET, BEAVER STREET between BROADWAY and NEW STREET, BEAVER STREET between NEW STREET and BROAD STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, WATER STREET between WALL STREET and OLD SLIP, WALL ST between WATER STREET and SOUTH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005"
+607448,Shooting Permit,10/21/2021 03:00:00 PM,10/22/2021 04:00:00 AM,10/18/2021 06:49:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between GOLD STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, MAIDEN LANE between GOLD STREET and PEARL STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10038, 10045"
+607443,Shooting Permit,10/24/2021 07:00:00 AM,10/24/2021 07:00:00 PM,10/18/2021 06:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 STREET between 4 AVENUE and 3 AVENUE,Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11215
+607442,Shooting Permit,10/23/2021 06:30:00 AM,10/23/2021 07:00:00 PM,10/18/2021 06:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 STREET between 2 AVENUE and 3 AVENUE, SOUTH 1 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,"1, 6","78, 90",Still Photography,Not Applicable,United States of America,"11215, 11249"
+607444,Shooting Permit,10/26/2021 07:00:00 AM,10/26/2021 07:00:00 PM,10/18/2021 06:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MENAHAN STREET between SENECA AVENUE and ONDERDONK AVENUE, MOORE STREET between HUMBOLDT STREET and GRAHAM AVENUE",Queens,"1, 5","104, 90",Still Photography,Not Applicable,United States of America,"11206, 11385"
+607441,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 08:00:00 PM,10/18/2021 06:01:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, 7 AVENUE between WEST 16 STREET and WEST 15 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"2, 4","10, 108, 13",Television,Children,United States of America,"10011, 11378"
+607435,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 09:00:00 PM,10/18/2021 05:26:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+607424,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 09:00:00 PM,10/18/2021 04:20:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between VERNON BOULEVARD and 5 STREET, 47 AVENUE between VERNON BOULEVARD and 5 STREET, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, 47 ROAD between VERNON BOULEVARD and 5 STREET, 48 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, VERNON BOULEVARD between 48 AVENUE and 49 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+607423,Shooting Permit,10/21/2021 07:00:00 AM,10/21/2021 09:00:00 PM,10/18/2021 04:15:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 153 STREET and WEST 155 STREET, WEST 138 STREET between 12 AVENUE and BROADWAY, 12 AVENUE between WEST 135 STREET and WEST 138 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 146 STREET and WEST 145 STREET, BROADWAY between WEST 145 STREET and WEST 144 STREET, BROADWAY between WEST 144 STREET and WEST 143 STREET, WEST 145 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 146 STREET and WEST 145 STREET, AMSTERDAM AVENUE between WEST 145 STREET and WEST 144 STREET",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+607422,Shooting Permit,11/04/2021 12:00:00 PM,11/04/2021 09:30:00 PM,10/18/2021 04:01:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47TH ST between BROADWAY and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,10036
+607421,Theater Load in and Load Outs,11/12/2021 12:01:00 AM,11/13/2021 11:59:00 PM,10/18/2021 03:47:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+607413,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 07:00:00 PM,10/18/2021 03:06:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between PITT STREET and WILLETT STREET,Manhattan,3,"5, 7",Still Photography,Not Applicable,United States of America,10002
+607411,Theater Load in and Load Outs,11/10/2021 12:01:00 AM,11/11/2021 06:00:00 AM,10/18/2021 03:04:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+607410,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 08:00:00 PM,10/18/2021 03:03:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 11 STREET between WEST 4 STREET and 7 AVENUE, WAVERLY PLACE between WEST 11 STREET and PERRY STREET, 7TH AVE between WEST 11 STREET and PERRY ST, GREENWICH AVENUE between BANK STREET and 7 AVENUE",Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10011, 10014"
+607408,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 09:00:00 PM,10/18/2021 02:43:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA and 40 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 10 STREET, 10 STREET between QUEENS PLAZA and 43 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+607407,Theater Load in and Load Outs,11/05/2021 12:01:00 AM,11/07/2021 06:00:00 AM,10/18/2021 02:37:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+607406,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 08:00:00 PM,10/18/2021 02:36:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, NEVINS STREET between DEGRAW STREET and SACKETT STREET, NEVINS STREET between SACKETT STREET and UNION STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE, DEGRAW STREET between NEVINS STREET and NONE",Brooklyn,6,78,Film,Feature,United States of America,11217
+607404,Shooting Permit,10/20/2021 02:00:00 AM,10/20/2021 12:00:00 PM,10/18/2021 02:26:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 AVENUE between 29 STREET and 31 STREET, 23 AVENUE between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and DITMARS BOULEVARD, 32 STREET between 23 AVENUE and 23 ROAD, 23 ROAD between 31 STREET and 33 STREET",Queens,1,114,Film,Feature,United States of America,11105
+607403,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 09:00:00 PM,10/18/2021 02:23:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between 70 AVENUE and CONTINENTAL AVENUE, 70 AVENUE between OLCOTT STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between 72 AVENUE and CONTINENTAL AVENUE",Queens,"2, 6","108, 112",Television,Children,United States of America,"11375, 11378"
+607400,Theater Load in and Load Outs,11/02/2021 12:01:00 AM,11/04/2021 11:59:00 PM,10/18/2021 02:06:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+607399,Shooting Permit,10/21/2021 09:00:00 AM,10/21/2021 11:59:00 PM,10/18/2021 02:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+607398,Shooting Permit,10/21/2021 07:30:00 AM,10/21/2021 10:15:00 PM,10/18/2021 02:00:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, NEWEL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607397,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 09:00:00 PM,10/18/2021 01:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607394,Shooting Permit,10/28/2021 08:00:00 AM,10/29/2021 05:00:00 PM,10/18/2021 01:42:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","26 STREET between DEADEND and 3 AVENUE, 3 AVENUE between 25 STREET and 26 STREET, 3 AVENUE between 25 STREET and 24 STREET",Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+607393,Shooting Permit,10/27/2021 10:00:00 AM,10/28/2021 02:00:00 AM,10/18/2021 01:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STILLWELL AVENUE between AVENUE S and AVENUE T, GRAVESEND NECK ROAD between MCDONALD AVENUE and VAN SICKLEN STREET, MCDONALD AVENUE between VILLAGE ROAD NORTH and GRAVESEND NECK ROAD",Brooklyn,"11, 15","61, 62",WEB,Not Applicable,United States of America,11223
+607391,Shooting Permit,10/27/2021 12:00:00 PM,10/28/2021 12:00:00 AM,10/18/2021 01:35:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between MAIDEN LANE and JOHN STREET, SOUTH STREET between JOHN STREET and FULTON STREET, SOUTH STREET between FULTON STREET and BEEKMAN STREET, SOUTH STREET between BEEKMAN STREET and PECK SLIP, JOHN STREET between SOUTH STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, MAIDEN LANE between FRONT STREET and WATER STREET, WATER STREET between MAIDEN LANE and WALL STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between WATER STREET and PEARL STREET, VARICK STREET between BROOME STREET and WATTS STREET, VARICK STREET between WATTS STREET and GRAND STREET, GRAND STREET between VARICK STREET and 6TH AVENUE, 6 AVENUE between WATTS STREET and GRAND STREET, WEST BROADWAY between BROOME STREET and SPRING STREET, BROOME STREET between WEST BROADWAY and WOOSTER STREET, BROOME STREET between WOOSTER STREET and GREENE STREET, BROOME STREET between GREENE STREET and MERCER STREET",Manhattan,"1, 2",1,Film,Feature,United States of America,"10005, 10012, 10013, 10038"
+607388,Shooting Permit,10/21/2021 10:00:00 AM,10/22/2021 12:30:00 AM,10/18/2021 01:27:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 21 STREET between PARK AVENUE SOUTH and 3 AVENUE, LEXINGTON AVENUE between EAST 21 STREET and EAST 23 STREET, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23RD STREET and EAST 24TH STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 20 STREET, GRAMERCY PARK E between E 20 ST and E 21 ST",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+607372,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 11:00:00 PM,10/18/2021 12:39:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+607356,Shooting Permit,10/21/2021 07:00:00 AM,10/21/2021 09:00:00 PM,10/18/2021 11:42:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607353,Shooting Permit,10/20/2021 10:00:00 AM,10/20/2021 11:59:00 PM,10/18/2021 11:25:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, READE STREET between BROADWAY and CHURCH STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+607348,Shooting Permit,10/20/2021 05:00:00 AM,10/20/2021 11:59:00 PM,10/18/2021 10:32:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between 1 AVENUE and FDR DRIVE, PARK AVENUE SOUTH between EAST 27 STREET and EAST 28 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 28 STREET between 2 AVENUE and 3 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+607345,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 08:00:00 PM,10/18/2021 10:00:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 11 STREET between 5 AVENUE and 6 AVENUE, WEST 12 STREET between 6 AVENUE and 5 AVENUE, 5 AVENUE between WEST 11 STREET and WEST 12 STREET, 5 AVENUE between WEST 12 STREET and WEST 14 STREET, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, MERCER STREET between GRAND STREET and HOWARD STREET, MERCER STREET between GRAND STREET and HOWARD STREET, MERCER STREET between GRAND STREET and BROOME STREET, MERCER STREET between HOWARD STREET and CANAL STREET, GREENE STREET between BROOME STREET and CANAL STREET, GRAND STREET between WOOSTER STREET and GREENE STREET, GRAND STREET between MERCER STREET and GREENE STREET",Manhattan,2,"1, 6",Commercial,Commercial,United States of America,"10003, 10011, 10013"
+607344,Shooting Permit,10/20/2021 08:00:00 AM,10/20/2021 10:00:00 PM,10/18/2021 09:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between RICHARDS STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+607313,Theater Load in and Load Outs,10/19/2021 06:00:00 AM,10/20/2021 03:00:00 AM,10/17/2021 01:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between IRVING PLACE and UNION SQUARE EAST",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+607268,Shooting Permit,10/20/2021 12:00:00 PM,10/21/2021 01:00:00 AM,10/15/2021 05:37:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","PERRY STREET between WEST 4 STREET and BLEECKER STREET, PERRY STREET between WEST 4 STREET and WAVERLY PLACE, CHARLES STREET between WEST 4 STREET and 7 AVENUE SOUTH, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, 7 AVENUE SOUTH between WEST 10 STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, 7 AVENUE SOUTH between GROVE STREET and BARROW STREET, W 14TH ST between 9 AVE and 8 AVE, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+607266,Shooting Permit,10/21/2021 12:30:00 PM,10/22/2021 02:30:00 AM,10/15/2021 05:33:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+607257,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 11:00:00 PM,10/15/2021 04:45:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between RUTHERFORD PLACE and 2 AVENUE, RUTHERFORD PLACE between EAST 17 STREET and EAST 16 STREET, EAST 15 STREET between RUTHERFORD PLACE and 2 AVENUE, 2 AVENUE between EAST 19 STREET and EAST 18 STREET, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 16 STREET and EAST 15 STREET, EAST 15 STREET between 3 AVENUE and RUTHERFORD PLACE, 2 AVENUE between EAST 15 STREET and EAST 14 STREET, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 22 STREET and EAST 21 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, 2 AVENUE between EAST 22 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+607246,Shooting Permit,10/20/2021 03:00:00 PM,10/20/2021 11:00:00 PM,10/15/2021 03:59:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE O between WEST 5 STREET and WEST 4 STREET, WEST 5 STREET between 65 STREET and AVENUE O",Brooklyn,11,62,WEB,Not Applicable,United States of America,11204
+607241,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 08:00:00 PM,10/15/2021 03:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between THOMPSON STREET and WAVE STREET, MURRAY HULBERT AVE between WAVE ST and HANNAH ST, MURRAY HULBERT AVENUE between HANNAH STREET and VICTORY BOULEVARD",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10304"
+607231,Shooting Permit,10/20/2021 01:30:00 PM,10/21/2021 03:30:00 AM,10/15/2021 02:51:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+607223,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 09:00:00 PM,10/15/2021 02:28:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEWEL STREET between GREENPOINT AVENUE and CALYER STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+607218,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 11:00:00 PM,10/15/2021 02:11:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+607210,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 12:00:00 PM,10/15/2021 01:22:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+607199,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 07:00:00 PM,10/15/2021 12:57:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between DOCK STREET and MAIN STREET, PEARL STREET between YORK STREET and FRONT STREET",Brooklyn,"1, 2, 3","1, 5, 84",Still Photography,Not Applicable,United States of America,"10002, 10038, 11201"
+607198,Shooting Permit,10/21/2021 07:00:00 AM,10/21/2021 10:00:00 PM,10/15/2021 12:56:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+607195,Theater Load in and Load Outs,11/03/2021 12:01:00 AM,11/03/2021 11:59:00 PM,10/15/2021 12:50:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+607194,Shooting Permit,10/25/2021 06:00:00 AM,10/25/2021 10:00:00 PM,10/15/2021 12:48:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between CONOVER STREET and DEAD END, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between COFFEY STREET and VAN DYKE STREET, CONOVER STREET between VAN DYKE STREET and BEARD STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+607192,Shooting Permit,10/22/2021 10:30:00 AM,10/22/2021 10:30:00 PM,10/15/2021 12:40:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between EAST 158 STREET and EAST 151 STREET, GRAND CONCOURSE between MCCLELLAN STREET and EAST 166 STREET, WALTON AVENUE between MCCLELLAN STREET and EAST 167 STREET",Bronx,4,44,Television,Episodic series,United States of America,"10451, 10452, 10456"
+607189,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 10:00:00 PM,10/15/2021 12:34:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+607188,Theater Load in and Load Outs,11/02/2021 12:01:00 AM,11/02/2021 11:59:00 PM,10/15/2021 12:28:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+607185,Shooting Permit,10/20/2021 07:00:00 AM,10/21/2021 01:00:00 AM,10/15/2021 12:17:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, 3 AVENUE between EAST 104 STREET and EAST 110 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Manhattan,"11, 2, 64","108, 22, 23",Film,Feature,United States of America,"10029, 11101"
+607183,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 10:00:00 PM,10/15/2021 12:08:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+607182,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 11:00:00 PM,10/15/2021 12:07:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607180,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 08:00:00 PM,10/15/2021 12:00:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT STREET between JAY STREET and BRIDGE STREET, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+607179,Theater Load in and Load Outs,10/24/2021 12:01:00 AM,10/25/2021 06:00:00 AM,10/15/2021 11:59:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Theater,Theater,United States of America,10036
+607174,Shooting Permit,10/19/2021 03:00:00 PM,10/20/2021 04:00:00 AM,10/15/2021 11:38:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","23 AVENUE between 29 STREET and 31 STREET, 23 AVENUE between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and DITMARS BOULEVARD, 32 STREET between 23 AVENUE and 23 ROAD, 23 ROAD between 31 STREET and 33 STREET",Queens,1,114,Film,Feature,United States of America,11105
+607172,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 11:00:00 PM,10/15/2021 11:35:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between BREVOORT PLACE and HANCOCK STREET, FULTON STREET between CLASSON AVENUE and NOSTRAND AVENUE, SPENCER PLACE between HANCOCK STREET and FULTON STREET, FULTON STREET between FRANKLIN AVENUE and BEDFORD AVENUE",Brooklyn,3,79,Commercial,Commercial,United States of America,"11216, 11238"
+607165,Shooting Permit,10/22/2021 07:00:00 AM,10/22/2021 09:00:00 PM,10/15/2021 10:42:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607154,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 09:00:00 PM,10/15/2021 10:07:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, VAN DYKE STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between VAN DYKE STREET and BEARD STREET, COMMERCE STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+607145,Shooting Permit,10/16/2021 07:00:00 AM,10/16/2021 10:00:00 PM,10/15/2021 09:14:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+607138,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 10:00:00 PM,10/15/2021 08:31:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+607137,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 09:00:00 PM,10/15/2021 08:01:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+607128,Shooting Permit,10/19/2021 08:00:00 AM,10/19/2021 07:00:00 PM,10/14/2021 11:01:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",REDDING STREET between PITKIN AVENUE and ALBERT ROAD,Queens,10,106,Film,Feature,United States of America,11417
+607126,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 10:00:00 PM,10/14/2021 10:37:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607125,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 10:00:00 PM,10/14/2021 10:28:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607124,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 09:00:00 PM,10/14/2021 10:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+607123,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 10:00:00 PM,10/14/2021 10:17:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607121,Shooting Permit,10/17/2021 08:30:00 AM,10/17/2021 11:30:00 PM,10/14/2021 10:03:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607119,Shooting Permit,10/16/2021 08:30:00 AM,10/16/2021 11:30:00 PM,10/14/2021 09:40:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607118,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 11:00:00 PM,10/14/2021 09:16:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,News,United States of America,"10020, 10112"
+607116,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 11:00:00 PM,10/14/2021 08:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607113,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 11:00:00 PM,10/14/2021 08:12:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607111,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 11:00:00 PM,10/14/2021 08:06:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607110,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 06:30:00 PM,10/14/2021 08:03:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607108,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 06:30:00 PM,10/14/2021 07:58:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607107,Shooting Permit,10/17/2021 06:00:00 AM,10/17/2021 11:00:00 PM,10/14/2021 07:55:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607103,Shooting Permit,10/16/2021 06:00:00 AM,10/16/2021 11:00:00 PM,10/14/2021 07:51:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+607092,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 09:00:00 PM,10/14/2021 05:15:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,Commercial,United States of America,10011
+607090,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 06:00:00 PM,10/14/2021 05:09:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 21 STREET and EAST 22 STREET, 10 AVENUE between WEST 21 STREET and WEST 22 STREET",Manhattan,"4, 5","10, 13",Commercial,Commercial,United States of America,"10010, 10011"
+607062,Shooting Permit,10/19/2021 06:30:00 AM,10/19/2021 09:00:00 PM,10/14/2021 03:47:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MINNA STREET between DAHILL ROAD and MICIELI PLACE, DAHILL ROAD between CATON AVENUE and ALBERMARLE ROAD, MCDONALD AVENUE between 20 STREET and FORT HAMILTON PARKWAY, DAHILL ROAD between 12 AVENUE and TEHAMA STREET, MINNA STREET between MICIELI PLACE and BILLS PLACE, DAHILL ROAD between 12 AVENUE and MINNA STREET",Brooklyn,"12, 7","66, 72",Television,Episodic series,United States of America,11218
+607060,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 11:00:00 PM,10/14/2021 03:43:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+607058,Shooting Permit,10/20/2021 07:00:00 AM,10/21/2021 03:00:00 AM,10/14/2021 03:36:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, BEDFORD AVENUE between NASSAU AVENUE and NORTH 12 STREET",Queens,"1, 7","109, 94",Television,Episodic series,United States of America,"11222, 11249, 11359"
+607055,Shooting Permit,10/21/2021 07:00:00 AM,10/21/2021 11:00:00 PM,10/14/2021 03:33:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+607051,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 11:00:00 PM,10/14/2021 03:05:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","21ST AVE between 76 STREET and 78 STREET, 21 AVENUE between 76 STREET and 78 STREET, 20 AVENUE between 76 STREET and 21 AVENUE, 76 STREET between 20 AVENUE and 21 AVENUE, 77 STREET between 19 ROAD and 21 AVENUE, 43 STREET between 20 ROAD and 21 AVENUE, 21 AVENUE between 42 STREET and 43 STREET, 20 ROAD between 42 STREET and 43 STREET, STEINWAY STREET between DITMARS BOULEVARD and ASTORIA BOULEVARD, STEINWAY STREET between DITMARS BOULEVARD and 21 AVENUE, DITMARS BOULEVARD between 37 STREET and STEINWAY STREET, 42 STREET between 21 AVENUE and 20 AVENUE, 45 STREET between 21 AVENUE and 20 ROAD, 43 STREET between 20 ROAD and 20 AVENUE, 21 AVENUE between 42 STREET and 43 STREET",Queens,1,114,Television,Episodic series,United States of America,"11105, 11370"
+607041,Shooting Permit,10/22/2021 08:00:00 AM,10/22/2021 10:00:00 PM,10/14/2021 02:29:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+607040,Shooting Permit,10/21/2021 08:00:00 AM,10/21/2021 10:00:00 PM,10/14/2021 02:29:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHMOND TERRACE between BUSH AVENUE and VAN NAME AVENUE, VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE",Staten Island,1,"120, 121",Television,Cable-episodic,United States of America,"10303, 10304"
+607034,Shooting Permit,10/20/2021 07:00:00 AM,10/20/2021 09:00:00 PM,10/14/2021 01:58:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between PRINCE STREET and EAST HOUSTON STREET, MULBERRY STREET between JERSEY STREET and EAST HOUSTON STREET",Manhattan,2,5,Television,Children,United States of America,10012
+607030,Shooting Permit,10/19/2021 06:30:00 AM,10/19/2021 08:00:00 PM,10/14/2021 01:48:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON AVENUE between THROOP AVENUE and LEWIS AVENUE, HANCOCK STREET between THROOP AVENUE and MARCUS GARVEY BOULEVARD, MARCUS GARVEY BOULEVARD between HANCOCK STREET and HALSEY STREET, MARCUS GARVEY BOULEVARD between JEFFERSON AVENUE and HANCOCK STREET, HANCOCK STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE, MACDONOUGH STREET between THROOP AVENUE and MARCUS GARVEY BOULEVARD",Brooklyn,3,"79, 81",Film,Feature,United States of America,"11216, 11221, 11233"
+607017,Shooting Permit,10/18/2021 03:00:00 PM,10/18/2021 06:00:00 PM,10/14/2021 01:19:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 33 ROAD and 34 AVENUE, VERNON BOULEVARD between 34 AVENUE and 36 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET",Manhattan,"1, 2, 8","108, 114",Television,Episodic series,United States of America,"10044, 11101, 11106"
+607016,Shooting Permit,10/19/2021 07:30:00 AM,10/19/2021 08:00:00 PM,10/14/2021 01:19:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between EASTERN PARKWAY and MONTGOMERY STREET, EASTERN PARKWAY between CLASSON AVENUE and FRANKLIN AVENUE, CLASSON AVENUE between EASTERN PARKWAY and LINCOLN PLACE, WASHINGTON AVENUE between EASTERN PARKWAY and ST JOHNS PLACE",Brooklyn,"55, 8, 9","71, 77, 78",Television,Episodic series,United States of America,"11225, 11238"
+607014,Theater Load in and Load Outs,10/16/2021 06:00:00 AM,10/18/2021 07:00:00 AM,10/14/2021 01:11:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+607013,Theater Load in and Load Outs,10/15/2021 05:00:00 AM,10/16/2021 05:00:00 AM,10/14/2021 01:02:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+607011,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 10:00:00 PM,10/14/2021 01:00:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 103 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 104 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, 3 AVENUE between EAST 104 STREET and EAST 110 STREET",Manhattan,"11, 64","22, 23",Film,Feature,United States of America,10029
+606999,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 09:00:00 PM,10/14/2021 12:19:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606995,Shooting Permit,10/16/2021 05:00:00 AM,10/16/2021 12:00:00 PM,10/14/2021 12:12:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",47TH STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606992,Shooting Permit,10/15/2021 05:00:00 PM,10/15/2021 11:59:00 PM,10/14/2021 12:09:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",47TH STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606987,Shooting Permit,10/26/2021 06:00:00 AM,10/26/2021 09:00:00 PM,10/14/2021 11:17:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10036
+606983,Shooting Permit,10/15/2021 08:00:00 AM,10/15/2021 10:00:00 PM,10/14/2021 11:12:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between ADELPHI STREET and CARLTON AVENUE, ADELPHI between MYRTLE AVENUE and PARK AVENUE, ADELPHI STREET between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11205
+606978,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 05:00:00 PM,10/14/2021 10:52:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 106 STREET and EAST 107 STREET,Manhattan,11,23,Television,Talk Show,United States of America,10029
+606973,Shooting Permit,10/20/2021 01:00:00 PM,10/20/2021 08:00:00 PM,10/14/2021 10:43:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between COLIN PLACE and AVENUE S, MCDONALD AVENUE between AVENUE S and AVENUE T",Brooklyn,"11, 15","61, 62",WEB,Not Applicable,United States of America,11223
+606966,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 09:00:00 PM,10/14/2021 10:30:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, 36 AVENUE between 36 STREET and 37 STREET, 36 STREET between 37 AVENUE and 36 AVENUE, 36 STREET between 37 AVENUE and 36 AVENUE, 37 STREET between 37 AVENUE and 36 AVENUE, 37 AVENUE between 37 STREET and 35 STREET, QUEENS BOULEVARD between 43 STREET and 48 STREET, BLISS STREET between QUEENS BOULEVARD and 43 AVENUE, 43 AVENUE between BLISS STREET and 44 STREET, 45 STREET between QUEENS BOULEVARD and 43 AVENUE, NEWTOWN ROAD between BROADWAY and NORTHERN BOULEVARD, 50 STREET between NEWTOWN ROAD and NORTHERN BOULEVARD, 49 STREET between NEWTOWN ROAD and NORTHERN BOULEVARD",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11103, 11104, 11106, 11222, 11377"
+606963,Shooting Permit,10/18/2021 05:00:00 AM,10/18/2021 02:00:00 PM,10/14/2021 10:23:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606962,Shooting Permit,10/17/2021 12:00:00 AM,10/17/2021 12:00:00 PM,10/14/2021 10:20:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606936,Shooting Permit,10/18/2021 02:30:00 AM,10/18/2021 01:00:00 PM,10/13/2021 09:55:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 AVENUE between 29 STREET and 31 STREET, 23 AVENUE between 31 STREET and 33 STREET, 33 STREET between 23 AVENUE and DITMARS BOULEVARD, 32 STREET between 23 AVENUE and 23 ROAD, 23 ROAD between 31 STREET and 33 STREET",Queens,1,114,Film,Feature,United States of America,11105
+606920,Shooting Permit,10/18/2021 05:00:00 AM,10/18/2021 10:00:00 PM,10/13/2021 07:14:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between FDR DRIVE and 1 AVENUE, PARK AVENUE SOUTH between EAST 28 STREET and EAST 27 STREET, PARK AVENUE SOUTH between EAST 26 STREET and EAST 25 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 28 STREET between 2 AVENUE and 3 AVENUE, MT CARMEL PLACE between EAST 27 STREET and EAST 28 STREET, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+606917,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 06:00:00 PM,10/13/2021 05:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between ELDRIDGE STREET and ALLEN STREET,Manhattan,3,5,Film,Short,United States of America,10002
+606907,Theater Load in and Load Outs,11/12/2021 12:01:00 AM,11/13/2021 06:00:00 AM,10/13/2021 04:15:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+606878,Shooting Permit,10/20/2021 09:00:00 AM,10/20/2021 11:59:00 PM,10/13/2021 03:06:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","27 STREET between 4 AVENUE and 5 AVENUE, 28 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 26 STREET and 29 STREET, 5 AVENUE between 24 STREET and 31 STREET, 2 AVENUE between 34 STREET and 35 STREET, 3 AVENUE between 25 STREET and 27 STREET",Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+606874,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 11:00:00 PM,10/13/2021 03:00:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+606873,Shooting Permit,10/19/2021 08:00:00 AM,10/19/2021 11:00:00 PM,10/13/2021 02:50:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","27 STREET between 4 AVENUE and 5 AVENUE, 28 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 26 STREET and 29 STREET, 5 AVENUE between 24 STREET and 31 STREET, 2 AVENUE between 34 STREET and 35 STREET, 3 AVENUE between 25 STREET and 27 STREET",Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+606871,Theater Load in and Load Outs,11/10/2021 12:01:00 AM,11/24/2021 11:59:00 PM,10/13/2021 02:44:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 61 STREET and WEST 63 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+606864,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 05:00:00 PM,10/13/2021 02:25:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE A and AVENUE B, EAST 10 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Commercial,Commercial,United States of America,10009
+606863,Shooting Permit,10/18/2021 08:00:00 AM,10/19/2021 02:00:00 AM,10/13/2021 02:24:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","82 AVENUE between 126 STREET and 132 STREET, QUEENS BOULEVARD between VAN WYCK EXPRESSWAY and 83 AVENUE, GRAND CENTRAL PARKWAY SR between EDGERTON ROAD and ABERDEEN ROAD, TUDOR RD between EDGERTON ROAD and GRAND CENTRAL PKWY SR, TUDOR RD between EDGERTON ROAD and GRAND CENTRAL PKWY SR",Queens,"8, 9","102, 107",Television,Episodic series,United States of America,"11415, 11432"
+606857,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 08:00:00 PM,10/13/2021 02:13:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET, EAST 55 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 55 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 53 STREET, EAST 54 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10022, 10152"
+606855,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 07:00:00 PM,10/13/2021 02:08:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 19 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, 9 AVENUE between WEST 20 STREET and WEST 21 STREET, 9 AVENUE between WEST 21 STREET and WEST 22 STREET, 9 AVENUE between WEST 22 STREET and WEST 23 STREET",Manhattan,4,10,Film,Feature,United States of America,10011
+606850,Shooting Permit,10/15/2021 09:30:00 AM,10/15/2021 11:30:00 PM,10/13/2021 01:50:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between GREEN STREET and INDIA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+606845,Shooting Permit,10/15/2021 07:00:00 AM,10/16/2021 12:30:00 AM,10/13/2021 01:33:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 118 STREET between PLEASANT AVENUE and 1 AVENUE, EAST 119 STREET between DEAD END and 2 AVENUE, EAST 120 STREET between 1 AVENUE and 2 AVENUE, EAST 120 STREET between PLEASANT AVENUE and 1 AVENUE, PLEASANT AVENUE between EAST 119 STREET and EAST 120 STREET, EAST 116 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 117 STREET between 3 AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 116 STREET and EAST 117 STREET",Manhattan,11,25,Television,Episodic series,United States of America,"10029, 10035"
+606837,Shooting Permit,10/15/2021 04:00:00 PM,10/16/2021 04:00:00 AM,10/13/2021 01:00:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 95 STREET between BROADWAY and WEST END AVENUE, WEST 95 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 96 STREET and WEST 97 STREET",Manhattan,7,24,Film,Feature,United States of America,10025
+606834,Shooting Permit,10/16/2021 08:00:00 AM,10/16/2021 09:00:00 PM,10/13/2021 12:45:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",BERGEN STREET between HOYT STREET and BOND STREET,Brooklyn,2,84,WEB,Not Applicable,United States of America,11217
+606830,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 08:00:00 PM,10/13/2021 12:39:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAISLEY BOULEVARD SOUTH between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD,Queens,"12, 83",113,Film,Feature,United States of America,"11430, 11434"
+606829,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 10:00:00 PM,10/13/2021 12:39:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+606827,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 10:00:00 PM,10/13/2021 12:30:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","73 STREET between 35 AVENUE and BROADWAY, 37 AVENUE between 72 STREET and 75 STREET, 37 AVENUE between 73 STREET and 76 STREET, 74 STREET between 37 ROAD and 37 AVENUE, 74 STREET between ROOSEVELT AVENUE and 37 ROAD",Queens,3,115,Television,Episodic series,United States of America,11372
+606825,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 09:00:00 PM,10/13/2021 12:19:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","27 STREET between 4 AVENUE and 5 AVENUE, 27 STREET between 4 AVENUE and 5 AVENUE, 28 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 26 STREET and 29 STREET, 5 AVENUE between 24 STREET and 31 STREET, 2 AVENUE between 34 STREET and 35 STREET, 3 AVENUE between 25 STREET and 27 STREET",Brooklyn,7,72,Television,Cable-episodic,United States of America,11232
+606823,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 11:00:00 PM,10/13/2021 12:15:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 5 STREET and CENTER BOULEVARD, 49 AVENUE between VERNON BOULEVARD and 5 STREET, 5 STREET between 49 AVENUE and 50 AVENUE, 5 STREET between 49 AVENUE and 48 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and CENTER BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, CENTER BOULEVARD between 47 ROAD and 48 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+606817,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 11:00:00 PM,10/13/2021 12:01:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+606816,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 08:00:00 PM,10/13/2021 11:55:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH FOURTH STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH FOURTH STREET and NORTH THIRD STREET, WYTHE AVENUE between NORTH THIRD STREET and METROPOLITAN AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH FIRST STREET, METROPOLITAN AVENUE between KENT AVENUE and BERRY STREET, METROPOLITAN AVENUE between UNION AVENUE and LORIMER STREET, UNION AVENUE between METROPOLITAN AVENUE and MEEKER AVENUE, MEEKER AVENUE between UNION AVENUE and METROPOLITAN AVENUE, METROPOLITAN AVENUE between MEEKER AVENUE and UNION AVENUE, NORTH THIRD STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, NORTH THIRD STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+606809,Shooting Permit,10/15/2021 09:00:00 AM,10/16/2021 04:00:00 AM,10/13/2021 11:14:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+606808,Shooting Permit,10/17/2021 07:00:00 AM,10/17/2021 11:00:00 PM,10/13/2021 11:07:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between MERCER STREET and BROADWAY, MERCER STREET between GRAND STREET and HOWARD STREET",Manhattan,2,1,Commercial,Commercial,United States of America,10013
+606806,Shooting Permit,10/16/2021 07:00:00 AM,10/16/2021 10:00:00 PM,10/13/2021 11:00:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between GRAND STREET and HOWARD STREET, GRAND STREET between MERCER STREET and BROADWAY",Manhattan,2,1,Commercial,Commercial,United States of America,10013
+606798,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 07:00:00 PM,10/13/2021 10:19:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROTONA PARK NORTH between PROSPECT AVENUE and MARMION AVENUE,Bronx,"3, 6","42, 48",Commercial,Commercial,United States of America,"10457, 10460"
+606791,Shooting Permit,10/17/2021 06:00:00 AM,10/17/2021 09:00:00 PM,10/13/2021 09:37:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between SACKETT STREET and DEGRAW STREET, NEVINS STREET between SACKETT STREET and UNION STREET, Degraw St between NEVINS STREET and Dead End, DEGRAW STREET between NEVINS STREET and 3 AVENUE, NEVINS STREET between DEGRAW STREET and DOUGLASS STREET",Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11217
+606790,Shooting Permit,10/16/2021 06:00:00 AM,10/16/2021 08:00:00 PM,10/13/2021 09:37:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between SACKETT STREET and DEGRAW STREET, NEVINS STREET between SACKETT STREET and UNION STREET, DEGRAW STREET between NEVINS STREET and DEAD END",Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11217
+606786,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 04:00:00 PM,10/13/2021 09:18:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST WASHINGTON PLACE between 6 AVENUE and BARROW STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+606779,Theater Load in and Load Outs,10/20/2021 12:01:00 AM,10/20/2021 11:59:00 PM,10/13/2021 07:38:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE between WEST 57 STREET and WEST 56 STREET,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+606743,Shooting Permit,10/14/2021 10:30:00 AM,10/14/2021 11:00:00 PM,10/12/2021 05:05:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between WYTHE AVENUE and NASSAU AVENUE, NORTH 14 STREET between WYTHE AVENUE and NASSAU AVENUE, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, BERRY ST between NORTH 12 STREET and BANKER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222, 11249"
+606720,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 08:00:00 PM,10/12/2021 04:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK ROW between BEEKMAN STREET and ANN STREET, FULTON STREET between BROADWAY and NASSAU STREET, NASSAU STREET between JOHN STREET and FULTON STREET, JOHN STREET between BROADWAY and NASSAU STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY, BROADWAY between SPRING STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,"1, 2","1, 5",Television,Cable-episodic,United States of America,"10006, 10007, 10012, 10013, 10038"
+606713,Shooting Permit,10/20/2021 08:00:00 AM,10/20/2021 11:00:00 PM,10/12/2021 03:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between LIBERTY STREET and CEDAR STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, MAIDEN LANE between GOLD STREET and WATER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between FULTON STREET and JOHN STREET, SKILLMAN AVENUE between MEEKER AVENUE and LORIMER STREET, MEEKER AVENUE between UNION AVENUE and SKILLMAN AVENUE, LORIMER STREET between SKILLMAN AVENUE and CONSELYEA STREET, LORIMER STREET between JACKSON STREET and SKILLMAN AVENUE, JACKSON STREET between MEEKER AVENUE and LORIMER STREET, MEEKER AVENUE between SKILLMAN AVENUE and WITHERS STREET, WITHERS STREET between MEEKER AVENUE and LEONARD STREET, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Manhattan,1,"1, 94",Television,Cable-episodic,United States of America,"10005, 10038, 10045, 11211, 11222"
+606712,Shooting Permit,10/15/2021 03:00:00 PM,10/16/2021 05:00:00 AM,10/12/2021 03:46:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PINE STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between GOLD STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+606709,Shooting Permit,10/14/2021 12:00:00 PM,10/15/2021 11:59:00 PM,10/12/2021 03:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 9 AVENUE and 8 AVENUE,Manhattan,4,14,Still Photography,Not Applicable,United States of America,10018
+606708,Shooting Permit,10/14/2021 01:00:00 PM,10/15/2021 01:00:00 AM,10/12/2021 03:21:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 207 STREET between POST AVENUE and SHERMAN AVENUE,Manhattan,12,34,Film,Feature,United States of America,10034
+606700,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 11:00:00 PM,10/12/2021 02:41:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 80 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 79 STREET, EAST 80 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 81 STREET between PARK AVENUE and 3 AVENUE, EAST 82 STREET between PARK AVENUE and 3 AVENUE, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Manhattan,"1, 8","19, 94",Television,Cable-episodic,United States of America,"10028, 10075, 11222"
+606697,Shooting Permit,10/13/2021 04:00:00 AM,10/13/2021 10:00:00 AM,10/12/2021 02:30:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606686,Shooting Permit,10/14/2021 10:30:00 AM,10/14/2021 11:30:00 PM,10/12/2021 01:47:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIKEMAN STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between DIKEMAN STREET and WOLCOTT STREET, WOLCOTT STREET between FERRIS STREET and DEAD END, FERRIS STREET between WOLCOTT STREET and SULLIVAN STREET, WOLCOTT STREET between FERRIS STREET and CONOVER STREET, SULLIVAN STREET between FERRIS STREET and DEAD END, SULLIVAN STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and DEAD END, FERRIS STREET between COFFEY STREET and VAN DYKE STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+606685,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 11:00:00 PM,10/12/2021 01:43:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+606669,Shooting Permit,10/15/2021 09:00:00 AM,10/16/2021 12:00:00 AM,10/12/2021 12:30:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 49 STREET between ROCKEFELLER PLAZA and 7 AVENUE, 6 AVENUE between WEST 48 STREET and WEST 49 STREET, WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 44 STREET, W 43 STREET between MADISON AVE and 6 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 47 STREET between BROADWAY and 8 AVENUE",Manhattan,5,"14, 18",Film,Feature,United States of America,"10017, 10019, 10020, 10036, 10105, 10112, 10173"
+606668,Shooting Permit,10/15/2021 08:00:00 AM,10/15/2021 02:00:00 PM,10/12/2021 12:29:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET, WEST HOUSTON STREET between THOMPSON STREET and LAGUARDIA PLACE, WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,10012
+606664,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 11:00:00 PM,10/12/2021 12:16:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+606655,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 07:30:00 PM,10/12/2021 11:32:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WINTHROP STREET between FLATBUSH AVENUE and BEDFORD AVENUE,Brooklyn,9,71,Film,Short,United States of America,11225
+606651,Shooting Permit,10/16/2021 07:00:00 AM,10/16/2021 09:00:00 PM,10/12/2021 11:20:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606648,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 09:00:00 PM,10/12/2021 11:07:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606647,Shooting Permit,10/20/2021 09:00:00 AM,10/20/2021 09:00:00 PM,10/12/2021 11:06:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and KINGSLAND AVENUE EXTENSION, KINGSLAND AVENUE EXTENSION between KINGSLAND AVENUE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606646,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 07:30:00 PM,10/12/2021 11:05:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WINTHROP STREET between FLATBUSH AVENUE and BEDFORD AVENUE,Brooklyn,9,71,Film,Short,United States of America,11225
+606645,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 02:00:00 PM,10/12/2021 11:03:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTER BOULEVARD between 47 AVENUE and 47 ROAD,Queens,2,108,Television,Episodic series,United States of America,11109
+606620,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 09:00:00 PM,10/12/2021 10:00:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606611,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 10:00:00 PM,10/12/2021 09:16:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 57 STREET between SUTTON PLACE and 2 AVENUE, EAST 56 STREET between 1 AVENUE and 2 AVENUE, EAST 56 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 55 STREET and EAST 56 STREET",Manhattan,6,17,Television,Episodic series,United States of America,10022
+606598,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 09:00:00 PM,10/11/2021 09:53:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE, LAFAYETTE AVENUE between TIFFANY STREET and BARRETTO STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+606564,DCAS Prep/Shoot/Wrap Permit,10/18/2021 09:00:00 AM,10/18/2021 05:00:00 PM,10/11/2021 01:31:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHAMBERS STREET between BROADWAY and CENTRE STREET,Manhattan,1,"1, 5",Still Photography,Not Applicable,United States of America,10007
+606561,Shooting Permit,10/14/2021 12:00:00 PM,10/14/2021 11:59:00 PM,10/11/2021 01:14:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODS PLACE between ERASMUS STREET and CHURCH AVENUE, FLATBUSH AVENUE between MIDWOOD STREET and LENOX ROAD, FLATBUSH AVENUE between LENOX ROAD and LINDEN BOULEVARD, CHURCH AVENUE between VERONICA PLACE and BEDFORD AVENUE, CATON AVENUE between BEDFORD AVENUE and FLATBUSH AVENUE",Brooklyn,"14, 17, 9","67, 70, 71",Television,Episodic series,United States of America,"11225, 11226"
+606544,Theater Load in and Load Outs,10/17/2021 12:01:00 AM,10/18/2021 08:00:00 AM,10/11/2021 10:19:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+606542,Theater Load in and Load Outs,10/16/2021 12:01:00 AM,10/16/2021 11:59:00 PM,10/11/2021 10:14:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+606543,Theater Load in and Load Outs,10/30/2021 12:01:00 AM,11/01/2021 08:00:00 AM,10/11/2021 10:14:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+606540,Theater Load in and Load Outs,10/15/2021 12:01:00 AM,10/15/2021 11:59:00 PM,10/11/2021 10:05:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+606532,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 11:00:00 PM,10/11/2021 08:44:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",13 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Commercial,Commercial,United States of America,11215
+606533,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 09:00:00 PM,10/11/2021 08:44:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",13 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Commercial,Commercial,United States of America,11215
+606534,Shooting Permit,10/16/2021 07:00:00 AM,10/16/2021 09:00:00 PM,10/11/2021 08:44:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",13 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Commercial,Commercial,United States of America,11215
+606451,Shooting Permit,10/16/2021 06:00:00 AM,10/16/2021 11:59:00 PM,10/08/2021 05:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+606439,Shooting Permit,10/13/2021 08:30:00 AM,10/13/2021 10:30:00 PM,10/08/2021 04:40:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","SULLIVAN STREET between FERRIS STREET and CONOVER STREET, SULLIVAN STREET between FERRIS STREET and DEAD END, FERRIS STREET between WOLCOTT STREET and SULLIVAN STREET, WOLCOTT STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between WOLCOTT STREET and DIKEMAN STREET, WOLCOTT STREET between FERRIS STREET and DEAD END, DIKEMAN STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+606419,Shooting Permit,10/13/2021 12:00:00 PM,10/13/2021 11:59:00 PM,10/08/2021 04:00:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between LISPENARD STREET and WHITE STREET,Manhattan,1,"1, 5",Still Photography,Not Applicable,United States of America,10013
+606418,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 09:00:00 PM,10/08/2021 03:58:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE",Brooklyn,"1, 2","108, 94",Television,Children,United States of America,"11222, 11378"
+606414,Shooting Permit,10/14/2021 03:00:00 PM,10/15/2021 05:00:00 AM,10/08/2021 03:51:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between GOLD STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+606413,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 10:00:00 PM,10/08/2021 03:43:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+606410,Shooting Permit,10/18/2021 07:00:00 AM,10/18/2021 10:00:00 PM,10/08/2021 03:37:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+606398,Shooting Permit,10/31/2021 06:00:00 AM,10/31/2021 11:59:00 PM,10/08/2021 02:39:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 6 AVENUE and GREENWICH AVENUE, GREENWICH AVENUE between WEST 10 STREET and WEST 11 STREET",Manhattan,2,6,Television,News,United States of America,"10011, 10014"
+606397,Shooting Permit,10/14/2021 02:00:00 PM,10/15/2021 04:00:00 AM,10/08/2021 02:35:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 135 STREET and WEST 141 STREET, WEST 138 STREET between FREDRICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 136 STREET and WEST 138 STREET, WEST 137 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 136 STREET and WEST 138 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET, LENOX AVENUE between WEST 119 STREET and WEST 121 STREET, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, EAST 120 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"10, 11, 9","25, 26, 28, 32",Television,Cable-episodic,United States of America,"10026, 10027, 10030, 10035"
+606392,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 11:00:00 PM,10/08/2021 02:10:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 44 STREET and 43 STREET, 44 STREET between SKILLMAN AVENUE and 43 AVENUE, 44 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 AVENUE between 42 STREET and 43 STREET, 43 STREET between QUEENS BOULEVARD and 43 AVENUE, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 43 STREET and 42 STREET, QUEENS BOULEVARD between 43 STREET and 44 STREET, GREENPOINT AVENUE between 41 STREET and 45 STREET, 43 STREET between 47 AVENUE and GREENPOINT AVENUE, 47 AVENUE between 44 STREET and 42 STREET",Queens,2,108,Television,Episodic series,United States of America,"11104, 11377"
+606391,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 11:59:00 PM,10/08/2021 01:56:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+606379,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 09:00:00 PM,10/08/2021 01:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 28 STREET and EAST 29 STREET, PARK AVENUE SOUTH between EAST 29 STREET and EAST 30 STREET, WEST 19 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"13, 14",WEB,Not Applicable,United States of America,"10011, 10016"
+606380,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 09:00:00 PM,10/08/2021 01:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 8 STREET and WEST 9 STREET, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, BROADWAY between WEST HOUSTON STREET and PRINCE STREET",Manhattan,2,"1, 5, 6",WEB,Not Applicable,United States of America,"10011, 10012"
+606381,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 09:00:00 PM,10/08/2021 01:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between WATTS STREET and GRAND STREET, VARICK STREET between GRAND STREET and CANAL STREET",Manhattan,2,1,WEB,Not Applicable,United States of America,10013
+606382,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 09:00:00 PM,10/08/2021 01:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 30 STREET between 5 AVENUE and BROADWAY, WEST 22 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","13, 14",WEB,Not Applicable,United States of America,"10001, 10011"
+606383,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 09:00:00 PM,10/08/2021 01:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,WEB,Not Applicable,United States of America,10011
+606373,Shooting Permit,10/14/2021 07:00:00 AM,10/14/2021 10:00:00 PM,10/08/2021 01:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 46 AVENUE and 47 AVENUE, 47 AVENUE between 5 STREET and CENTER BOULEVARD, 47 ROAD between CENTER BOULEVARD and 5 STREET, 5 STREET between 47 AVENUE and 47 ROAD, 5 STREET between 48 AVENUE and 47 ROAD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, CENTER BOULEVARD between 47 ROAD and 47 AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11109, 11222"
+606366,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 10:00:00 PM,10/08/2021 12:52:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+606365,Shooting Permit,10/09/2021 06:00:00 AM,10/09/2021 07:00:00 PM,10/08/2021 12:49:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 53 STREET between MADISON AVENUE and LEXINGTON AVENUE,Manhattan,5,18,Still Photography,Not Applicable,United States of America,"10022, 10152"
+606361,Theater Load in and Load Outs,10/13/2021 05:00:00 AM,10/23/2021 11:00:00 PM,10/08/2021 12:40:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+606352,Shooting Permit,10/15/2021 09:00:00 AM,10/15/2021 10:30:00 PM,10/08/2021 12:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, 10 STREET between 41 AVENUE and 41 ROAD, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, 10 STREET between 40 AVENUE and 41 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+606350,Theater Load in and Load Outs,10/11/2021 05:00:00 AM,10/12/2021 11:00:00 PM,10/08/2021 12:26:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+606347,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 09:00:00 PM,10/08/2021 12:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 AVENUE between 60 STREET and 61 STREET, 60 STREET between 37 AVENUE and 38 AVENUE",Queens,"2, 5","108, 14",WEB,Not Applicable,United States of America,"10001, 10120, 11377"
+606333,Shooting Permit,10/18/2021 06:30:00 AM,10/18/2021 10:30:00 PM,10/08/2021 12:00:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606331,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 07:00:00 PM,10/08/2021 11:52:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",GOLD STREET between PLYMOUTH STREET and JOHN STREET,Brooklyn,"2, 6","76, 84",Film,Short,United States of America,"11201, 11231"
+606329,Shooting Permit,10/12/2021 12:00:00 PM,10/12/2021 11:00:00 PM,10/08/2021 11:41:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between WASHINGTON STREET and WEST STREET, HORATIO STREET between WEST STREET and WASHINGTON STREET",Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+606321,Shooting Permit,10/12/2021 08:00:00 AM,10/12/2021 08:00:00 PM,10/08/2021 11:27:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between 44 STREET and 42 STREET, 44 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between 42 STREET and 44 STREET",Brooklyn,7,72,Commercial,Commercial,United States of America,"11220, 11232"
+606313,Shooting Permit,10/13/2021 01:00:00 AM,10/13/2021 01:00:00 PM,10/08/2021 10:59:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE A and AVENUE B, EAST 10 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Commercial,Commercial,United States of America,10009
+606309,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 08:00:00 PM,10/08/2021 10:41:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",FORSYTH STREET between GRAND STREET and HESTER STREET,Manhattan,"2, 3","5, 7",Still Photography,Not Applicable,United States of America,"10002, 10012, 10013"
+606307,Shooting Permit,10/13/2021 04:00:00 PM,10/14/2021 05:00:00 AM,10/08/2021 10:37:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between BEVERLY ROAD and CORTELYOU ROAD, CORTELYOU ROAD between ARGYLE ROAD and MARLBOROUGH ROAD, BAYARD STREET between ELIZABETH STREET and BOWERY, BOWERY between BAYARD STREET and DOYERS STREET, MOTT STREET between GRAND STREET and HESTER STREET, MOTT STREET between HESTER STREET and CANAL STREET, HESTER STREET between MOTT STREET and BOWERY, ELIZABETH STREET between CANAL STREET and HESTER STREET",Brooklyn,"14, 2, 3","5, 70",Commercial,Commercial,United States of America,"10002, 10013, 11218, 11226"
+606301,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 11:00:00 PM,10/08/2021 10:10:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+606300,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 11:00:00 PM,10/08/2021 10:09:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+606289,Shooting Permit,10/14/2021 10:00:00 AM,10/15/2021 02:00:00 AM,10/08/2021 09:11:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, GEORGE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, HALSEY STREET between IRVING AVENUE and WYCKOFF AVENUE, CENTRE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, STEPHEN STREET between WYCKOFF AVENUE and CYPRESS AVENUE, STEPHEN STREET between WYCKOFF AVENUE and CYPRESS AVENUE, WYCKOFF AVENUE between GEORGE STREET and CENTRE STREET, WYCKOFF AVENUE between GEORGE STREET and STEPHEN STREET",Brooklyn,"1, 4, 5","104, 83, 94",Television,Episodic series,United States of America,"11222, 11237, 11385"
+606287,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 09:00:00 PM,10/08/2021 09:04:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","JACKSON STREET between CHERRY STREET and FDR DRIVE, WATER STREET between GOUVERNEUR STREET and JACKSON STREET, GRAND STREET between PITT STREET and COLUMBIA STREET",Manhattan,3,7,Television,Children,United States of America,10002
+606266,Shooting Permit,10/09/2021 04:00:00 AM,10/09/2021 11:00:00 AM,10/07/2021 08:37:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+606257,Theater Load in and Load Outs,10/29/2021 12:01:00 AM,10/30/2021 06:00:00 AM,10/07/2021 06:04:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+606256,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,10/24/2021 06:00:00 AM,10/07/2021 05:58:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+606240,Shooting Permit,10/10/2021 07:00:00 AM,10/10/2021 02:00:00 PM,10/07/2021 04:46:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 71 STREET and WEST 70 STREET, WEST 70 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 72 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Pilot,United States of America,10023
+606229,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 08:00:00 PM,10/07/2021 03:58:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WINTHROP STREET between FLATBUSH AVENUE and BEDFORD AVENUE,Brooklyn,9,71,Film,Short,United States of America,11225
+606221,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 09:00:00 PM,10/07/2021 03:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606218,Shooting Permit,10/14/2021 07:00:00 AM,10/14/2021 11:00:00 PM,10/07/2021 03:05:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+606212,Shooting Permit,10/15/2021 10:00:00 AM,10/16/2021 02:00:00 AM,10/07/2021 02:44:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 62 STREET, PARK AVENUE between EAST 63 STREET and EAST 65 STREET, EAST 64 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 65 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+606204,Shooting Permit,10/14/2021 07:00:00 AM,10/14/2021 11:00:00 PM,10/07/2021 02:29:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 62 STREET, PARK AVENUE between EAST 63 STREET and EAST 65 STREET, EAST 64 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 65 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+606198,Shooting Permit,10/13/2021 08:00:00 AM,10/13/2021 10:00:00 PM,10/07/2021 02:03:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+606182,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 09:00:00 PM,10/07/2021 01:34:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","86 STREET between WEST 11 STREET and WEST 10 STREET, WEST 11 STREET between 86 STREET and AVENUE U, WEST 15 STREET between NEPTUNE AVENUE and HART PLACE",Brooklyn,"13, 15","60, 61",WEB,Not Applicable,United States of America,"11223, 11224"
+606177,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 10:00:00 PM,10/07/2021 01:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606159,Shooting Permit,10/13/2021 10:30:00 AM,10/13/2021 10:30:00 PM,10/07/2021 01:04:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between KINGSLAND AVENUE and DEAD END, NASSAU AVENUE between RUSSELL STREET and MONITOR STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606145,Shooting Permit,10/22/2021 06:00:00 AM,10/22/2021 09:00:00 PM,10/07/2021 12:47:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","VOORHIES AVENUE between KNAPP STREET and DEADEND, KNAPP STREET between VOORHIES AVENUE and AVENUE Z",Brooklyn,15,61,WEB,Not Applicable,United States of America,11235
+606135,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 09:00:00 PM,10/07/2021 12:15:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606129,Shooting Permit,10/13/2021 09:30:00 AM,10/13/2021 11:30:00 PM,10/07/2021 12:02:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 56 STREET and EAST 53 STREET",Manhattan,5,18,Television,Cable-episodic,United States of America,10022
+606120,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 10:00:00 PM,10/07/2021 11:35:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+606119,Shooting Permit,10/15/2021 04:00:00 PM,10/16/2021 06:00:00 AM,10/07/2021 11:34:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 58 STREET and EAST 59 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 43 STREET and EAST 44 STREET, LEXINGTON AVENUE between EAST 44 STREET and EAST 45 STREET, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 45 STREET between LEXINGTON AVENUE and 3 AVENUE, TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE",Manhattan,"5, 6, 64","14, 17, 18, 22",Television,Episodic series,United States of America,"10017, 10018, 10019, 10022, 10036, 10170"
+606103,Shooting Permit,10/14/2021 02:00:00 PM,10/14/2021 11:00:00 PM,10/07/2021 11:13:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, MONROE PLACE between CLARK STREET and PIERREPONT STREET, CLINTON STREET between PIERREPONT STREET and LIVINGSTON STREET, JORALEMON STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+606099,Shooting Permit,10/14/2021 12:00:00 PM,10/15/2021 02:00:00 AM,10/07/2021 11:10:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT ALLEY between WALKER STREET and WHITE STREET, WHITE STREET between LAFAYETTE STREET and BROADWAY, WHITE STREET between LAFAYETTE STREET and CORTLANDT ALLEY, WALKER STREET between LAFAYETTE STREET and CORTLANDT ALLEY, WALKER STREET between CORTLANDT ALLEY and BROADWAY, WALKER STREET between BROADWAY and CHURCH STREET, BROADWAY between WHITE STREET and WALKER STREET, BROADWAY between WALKER STREET and CANAL STREET, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, BROADWAY between SPRING STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between CROSBY STREET and BROADWAY, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,"1, 2","1, 5",Television,Cable-episodic,United States of America,"10012, 10013"
+606097,DCAS Prep/Shoot/Wrap Permit,10/14/2021 09:00:00 AM,10/14/2021 03:00:00 PM,10/07/2021 11:02:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, COURT STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+606092,Shooting Permit,10/14/2021 07:00:00 AM,10/14/2021 09:00:00 PM,10/07/2021 10:54:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606088,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 09:00:00 PM,10/07/2021 10:46:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+606035,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 10:00:00 PM,10/07/2021 08:38:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","E HOUSTON STREET between COLUMBIA STREET and BARUCH DRIVE, E HOUSTON STREET between SHERIFF STREET and CLINTON STREET, ATTORNEY STREET between EAST HOUSTON STREET and STANTON STREET, NORFOLK STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,"3, 4","10, 7",Television,Episodic series,United States of America,"10002, 10011"
+606025,Shooting Permit,10/11/2021 06:00:00 AM,10/11/2021 08:00:00 PM,10/07/2021 01:23:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","SULLIVAN STREET between 6 AVENUE and BROOME STREET, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5",Still Photography,Not Applicable,United States of America,"10012, 10013"
+606017,Shooting Permit,10/17/2021 06:00:00 PM,10/18/2021 02:00:00 AM,10/06/2021 10:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between SPRING STREET and PRINCE STREET,Manhattan,2,1,Film,Short,United States of America,10012
+606012,Shooting Permit,10/11/2021 09:00:00 AM,10/11/2021 09:00:00 PM,10/06/2021 09:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between CLERMONT AVENUE and ADELPHI STREET,Brooklyn,2,88,Film,Feature,United States of America,11205
+606008,Shooting Permit,10/12/2021 09:30:00 AM,10/12/2021 07:30:00 PM,10/06/2021 07:43:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+606006,Shooting Permit,10/12/2021 09:00:00 AM,10/13/2021 01:00:00 AM,10/06/2021 07:15:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between GARFIELD PLACE and PRESIDENT STREET, 8 AVENUE between UNION STREET and PRESIDENT STREET, UNION STREET between 8 AVENUE and 7 AVENUE, UNION STREET between 8 AVENUE and PLAZA ST WEST, FLATBUSH AVENUE between 8 AVENUE and ST MARKS AVENUE, STERLING PLACE between VANDERBILT AVENUE and FLATBUSH AVENUE, PRESIDENT STREET between 8 AVENUE and 7 AVENUE, PLAZA ST W between LINCOLN PLACE and FLATBUSH AVE, FLATBUSH AVENUE between STERLING PLACE and PARK PLACE, PARK PLACE between VANDERBILT AVENUE and CARLTON AVENUE, CARLTON AVENUE between ST MARKS AVENUE and PARK PLACE",Brooklyn,"55, 6, 8",78,Television,Episodic series,United States of America,"11215, 11217, 11238"
+605994,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 11:59:00 PM,10/06/2021 05:21:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 11 AVENUE and 12 AVENUE,Manhattan,4,10,Television,Cable-other,United States of America,10018
+605985,Shooting Permit,10/14/2021 07:00:00 AM,10/14/2021 10:00:00 PM,10/06/2021 04:50:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605984,Shooting Permit,10/13/2021 05:00:00 AM,10/14/2021 02:00:00 AM,10/06/2021 04:49:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, ROOSEVELT AVENUE between 60 STREET and 61 STREET, ROOSEVELT AVENUE between WOODSIDE AVENUE and 61 STREET, ROOSEVELT AVENUE between 61 STREET and 62 STREET, WOODSIDE AVENUE between ROOSEVELT AVENUE and 61 STREET, 60 STREET between ROOSEVELT AVENUE and DEAD END, 61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between ROOSEVELT AVENUE and WOODSIDE AVENUE, WOODSIDE AVENUE between 61 STREET and 62 STREET, 61 STREET between WOODSIDE AVENUE and 43 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11222, 11377"
+605974,Shooting Permit,10/19/2021 06:00:00 AM,10/19/2021 11:59:00 PM,10/06/2021 04:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605973,Shooting Permit,10/18/2021 06:00:00 AM,10/18/2021 11:59:00 PM,10/06/2021 04:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605975,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 11:59:00 PM,10/06/2021 04:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605976,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 11:59:00 PM,10/06/2021 04:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605970,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 11:59:00 PM,10/06/2021 04:35:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605971,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 11:59:00 PM,10/06/2021 04:35:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605972,Shooting Permit,10/17/2021 06:00:00 AM,10/17/2021 11:59:00 PM,10/06/2021 04:35:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,4,10,WEB,Not Applicable,United States of America,"10001, 10018"
+605966,Shooting Permit,10/14/2021 08:30:00 AM,10/14/2021 01:00:00 PM,10/06/2021 04:24:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 61 STREET and WEST 62 STREET, BROADWAY between WEST 62 STREET and WEST 63 STREET, WEST 62 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 61 STREET and WEST 62 STREET, COLUMBUS AVENUE between WEST 62 STREET and WEST 63 STREET, WEST 63 STREET between BROADWAY and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 72 STREET and WEST 73 STREET, WEST 72 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 72 STREET and WEST 73 STREET, WEST 65 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"4, 64, 7","18, 20, 22",Television,Episodic series,United States of America,10023
+605962,Shooting Permit,10/12/2021 10:00:00 AM,10/13/2021 01:00:00 AM,10/06/2021 04:00:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMAS STREET between WEST BROADWAY and HUDSON STREET, HUDSON STREET between THOMAS STREET and JAY STREET, WEST BROADWAY between WORTH STREET and DUANE STREET, WEST BROADWAY between DUANE STREET and READE STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, DUANE STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,10013
+605958,Shooting Permit,10/11/2021 07:00:00 AM,10/11/2021 09:00:00 PM,10/06/2021 03:41:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between 37 AVENUE and 39 AVENUE, 39 AVENUE between 61 STREET and 63 STREET, 63 STREET between ROOSEVELT AVENUE and 39 AVENUE, ROOSEVELT AVENUE between 60 STREET and 62 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, BROADWAY between 60 STREET and 62 STREET, BROADWAY between 62 STREET and 64 STREET, BROADWAY between 64 STREET and 65 STREET, 64 STREET between 35 AVENUE and BROADWAY, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,"11101, 11377"
+605953,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 11:00:00 PM,10/06/2021 03:29:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+605949,Shooting Permit,10/19/2021 07:00:00 AM,10/19/2021 09:00:00 PM,10/06/2021 03:16:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605941,Shooting Permit,10/12/2021 07:00:00 AM,10/13/2021 12:00:00 AM,10/06/2021 02:54:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, 35 STREET between VAN DAM STREET and REVIEW AVENUE, GREENPOINT AVENUE between REVIEW AVENUE and RAILROAD AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+605940,Shooting Permit,10/13/2021 06:30:00 AM,10/13/2021 10:00:00 PM,10/06/2021 02:51:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+605938,Shooting Permit,10/13/2021 07:00:00 AM,10/13/2021 11:00:00 PM,10/06/2021 02:42:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605937,Shooting Permit,10/12/2021 06:30:00 AM,10/12/2021 09:00:00 PM,10/06/2021 02:38:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 2 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 3 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 1 STREET and SOUTH 5 STREET, SOUTH 6 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, SOUTH 4 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 3 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 1 STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between SOUTH 3 STREET and SOUTH 4 STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11249
+605926,Shooting Permit,10/12/2021 02:00:00 PM,10/13/2021 06:00:00 AM,10/06/2021 01:55:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",LITTLE NECK PARKWAY between 72 AVENUE and ELKMONT AVENUE,Queens,13,105,Commercial,Commercial,United States of America,11004
+605907,Theater Load in and Load Outs,10/21/2021 12:01:00 AM,10/22/2021 06:00:00 AM,10/06/2021 12:53:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+605902,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 10:00:00 PM,10/06/2021 12:17:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+605897,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 10:00:00 PM,10/06/2021 12:02:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+605892,Shooting Permit,10/07/2021 06:00:00 AM,10/07/2021 01:00:00 PM,10/06/2021 11:32:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+605885,Shooting Permit,10/12/2021 10:00:00 AM,10/13/2021 02:00:00 AM,10/06/2021 11:20:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, 39 AVENUE between 29 STREET and 31 STREET, 29 STREET between 38 AVENUE and 39 AVENUE, 29 STREET between 39 AVENUE and 40 AVENUE, 39 AVENUE between 28 STREET and 29 STREET, 31 STREET between 38 AVENUE and 39 AVENUE, 30 STREET between 39 AVENUE and 40 AVENUE",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11101, 11222"
+605873,Shooting Permit,10/16/2021 06:00:00 AM,10/16/2021 10:00:00 PM,10/06/2021 11:02:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+605868,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 10:00:00 PM,10/06/2021 10:50:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+605866,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 10:00:00 PM,10/06/2021 10:46:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+605863,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 10:00:00 PM,10/06/2021 10:41:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+605855,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 08:00:00 PM,10/06/2021 10:29:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",OVERLOOK AVENUE between CHAPIN AVENUE and DELAWARE STREET,Staten Island,2,122,Commercial,Industrial/Corporate,United States of America,10304
+605842,DCAS Prep/Shoot/Wrap Permit,10/13/2021 04:00:00 PM,10/13/2021 08:00:00 PM,10/06/2021 09:57:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between WORTH STREET and PEARL STREET,Manhattan,1,5,Television,Episodic series,United States of America,10007
+605841,Shooting Permit,10/13/2021 08:00:00 AM,10/14/2021 12:00:00 AM,10/06/2021 09:57:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","LA GUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, CHAMBERS STREET between ELK STREET and BROADWAY, BROADWAY between CHAMBERS STREET and READE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, ST JAMES PLACE between JAMES STREET and OLIVER STREET, WARREN STREET between BROADWAY and CHURCH STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, CENTER BOULEVARD between 47 ROAD and 50 AVENUE",Manhattan,"1, 2, 3","1, 108, 5, 6",Television,Episodic series,United States of America,"10007, 10011, 10012, 10038, 11101, 11109"
+605829,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 09:00:00 PM,10/06/2021 09:12:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+605828,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 09:00:00 PM,10/06/2021 09:12:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+605823,Shooting Permit,10/21/2021 06:00:00 AM,10/21/2021 09:00:00 PM,10/06/2021 08:18:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","VOORHIES AVENUE between KNAPP STREET and DEADEND, KNAPP STREET between VOORHIES AVENUE and AVENUE Z",Brooklyn,15,61,WEB,Not Applicable,United States of America,11235
+605820,Shooting Permit,10/20/2021 06:00:00 AM,10/20/2021 09:00:00 PM,10/06/2021 08:05:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","VOORHIES AVENUE between DEADEND and KNAPP STREET, KNAPP STREET between AVENUE Z and VOORHIES AVENUE",Brooklyn,15,61,WEB,Not Applicable,United States of America,11235
+605809,Shooting Permit,10/08/2021 09:00:00 AM,10/09/2021 01:00:00 AM,10/05/2021 11:16:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between TAYLOR AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, Sound view Ave between Beach Ave and Taylor Ave, Soundview Ave between Leland Ave and Underhill Ave",Bronx,"28, 9","43, 45",Television,Cable-episodic,United States of America,"10464, 10473"
+605806,Shooting Permit,10/08/2021 06:00:00 AM,10/08/2021 07:00:00 PM,10/05/2021 10:32:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON AVENUE between JACKSON AVENUE and 44 DRIVE, 19 STREET between 24 AVENUE and 23 DRIVE",Queens,"1, 2","108, 114",Commercial,Commercial,United States of America,"11101, 11105"
+605804,Shooting Permit,10/10/2021 07:00:00 AM,10/10/2021 07:00:00 PM,10/05/2021 10:30:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between LIBERTY STREET and PINE STREET, PINE STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Still Photography,Not Applicable,United States of America,"10004, 10005, 10006"
+605803,Shooting Permit,10/10/2021 09:00:00 AM,10/10/2021 09:00:00 PM,10/05/2021 10:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",160 STREET between FRANCIS LEWIS BOULEVARD and 18 AVENUE,Queens,7,109,Film,Feature,United States of America,11357
+605794,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 08:00:00 PM,10/05/2021 09:17:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","67 DRIVE between 108 STREET and YELLOWSTONE BOULEVARD, YELLOWSTONE BOULEVARD between 67 DRIVE and 68 AVENUE, YELLOWSTONE BOULEVARD between 68 AVENUE and 68 ROAD",Queens,6,112,Commercial,Commercial,United States of America,11375
+605771,Shooting Permit,10/11/2021 08:00:00 AM,10/12/2021 03:00:00 AM,10/05/2021 05:18:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between CROSS BRONX EXPRESSWAY and WATSON AVENUE, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+605760,Shooting Permit,10/16/2021 03:00:00 PM,10/16/2021 10:00:00 PM,10/05/2021 04:50:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Documentary,Not Applicable,United States of America,10012
+605759,Shooting Permit,10/15/2021 03:00:00 PM,10/15/2021 10:00:00 PM,10/05/2021 04:50:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Documentary,Not Applicable,United States of America,10012
+605758,Shooting Permit,10/14/2021 03:00:00 PM,10/14/2021 10:00:00 PM,10/05/2021 04:49:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Documentary,Not Applicable,United States of America,10012
+605757,Shooting Permit,10/13/2021 03:00:00 PM,10/13/2021 10:00:00 PM,10/05/2021 04:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Documentary,Not Applicable,United States of America,10012
+605754,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 11:59:00 PM,10/05/2021 04:34:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, 5 STREET between 46 ROAD and 46 AVENUE, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 47 AVENUE between VERNON BOULEVARD and 11 STREET, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, 46 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+605752,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 09:00:00 PM,10/05/2021 04:31:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 19 STREET and EAST 18 STREET, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, 2 AVENUE between EAST 15 STREET and EAST 14 STREET, EAST 17 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 15 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 15 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 16 STREET and EAST 15 STREET, PARK AVENUE SOUTH between EAST 21 STREET and EAST 20 STREET, GRAMERCY PARK WEST between EAST 21 STREET and EAST 20 STREET, GRAMERCY PARK NORTH between GRAMERCY PARK WEST and GRAMERCY PARK EAST, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, IRVING PLACE between EAST 16 STREET and EAST 15 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+605746,Shooting Permit,10/11/2021 07:00:00 AM,10/11/2021 09:00:00 PM,10/05/2021 03:49:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 19 STREET and EAST 18 STREET, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, 2 AVENUE between EAST 15 STREET and EAST 14 STREET, PARK AVENUE SOUTH between EAST 21 STREET and EAST 20 STREET, GRAMERCY PARK WEST between EAST 21 STREET and EAST 20 STREET, GRAMERCY PARK NORTH between GRAMERCY PARK WEST and GRAMERCY PARK EAST, EAST 20 STREET between PARK AVENUE SOUTH and IRVING PLACE, EAST 17 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 15 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 15 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 16 STREET and EAST 15 STREET, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, IRVING PLACE between EAST 16 STREET and EAST 15 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 21 STREET",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+605742,Shooting Permit,10/12/2021 08:00:00 AM,10/13/2021 01:00:00 AM,10/05/2021 03:42:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+605740,Theater Load in and Load Outs,10/11/2021 12:01:00 AM,10/12/2021 06:00:00 AM,10/05/2021 03:37:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605718,Shooting Permit,10/08/2021 02:00:00 PM,10/09/2021 05:00:00 AM,10/05/2021 02:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between 37 AVENUE and 39 AVENUE, 39 AVENUE between 61 STREET and 63 STREET, 63 STREET between ROOSEVELT AVENUE and 39 AVENUE, ROOSEVELT AVENUE between 60 STREET and 62 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, BROADWAY between 60 STREET and 62 STREET, BROADWAY between 62 STREET and 64 STREET, BROADWAY between 64 STREET and 65 STREET, 64 STREET between 35 AVENUE and BROADWAY",Queens,2,108,Film,Feature,United States of America,11377
+605711,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 10:00:00 PM,10/05/2021 01:58:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 AVENUE and 43 ROAD, 10 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 ROAD and 44 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+605700,Shooting Permit,10/08/2021 12:00:00 PM,10/09/2021 01:00:00 AM,10/05/2021 01:11:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BIALYSTOKER PLACE and COLUMBIA STREET, BIALYSTOKER PLACE between GRAND STREET and DELANCY STREET, GRAND STREET between BIALYSTOKER PLACE and PITT STREET, GRAND STREET between ATTORNEY STREET and PITT STREET",Manhattan,3,7,Television,Cable-episodic,United States of America,10002
+605699,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 09:00:00 PM,10/05/2021 01:07:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+605688,Shooting Permit,10/08/2021 03:00:00 PM,10/09/2021 09:00:00 PM,10/05/2021 12:10:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between GOLD STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+605682,Shooting Permit,10/11/2021 07:00:00 AM,10/11/2021 09:00:00 PM,10/05/2021 11:49:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 36 STREET between MADISON AVENUE and 5 AVENUE, WEST 36 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 34 STREET and EAST 35 STREET, PARK AVENUE between EAST 35 STREET and EAST 39 STREET, EAST 35 STREET between PARK AVENUE and MADISON AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10018"
+605676,Theater Load in and Load Outs,10/11/2021 12:01:00 AM,10/17/2021 11:59:00 PM,10/05/2021 11:04:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+605674,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 07:00:00 PM,10/05/2021 11:00:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTIN STREET between 70 ROAD and 71 ROAD, 71 AVENUE between BURNS STREET and AUSTIN STREET",Queens,"5, 6","104, 112",Film,Feature,United States of America,"11375, 11379, 11385"
+605656,Shooting Permit,10/10/2021 08:00:00 AM,10/10/2021 11:00:00 PM,10/05/2021 09:44:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Film,Short,United States of America,11230
+605655,Shooting Permit,10/08/2021 11:00:00 AM,10/08/2021 05:30:00 PM,10/05/2021 09:41:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between GRAND STREET and BROOME STREET,Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+605651,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 09:00:00 PM,10/05/2021 09:21:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between BARRETTO STREET and TIFFANY STREET",Bronx,2,41,Commercial,Commercial,United States of America,10474
+605649,Shooting Permit,10/08/2021 06:00:00 AM,10/08/2021 08:00:00 PM,10/05/2021 09:09:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE, WESTMINSTER ROAD between DITMAS AVENUE and NEWKIRK AVENUE, WESTMINSTER ROAD between DITMAS AVENUE and DORCHESTER ROAD",Brooklyn,"1, 14","70, 94",Still Photography,Not Applicable,United States of America,"11218, 11230, 11249"
+605610,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 06:00:00 PM,10/04/2021 07:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+605607,Shooting Permit,10/14/2021 06:00:00 AM,10/14/2021 11:00:00 PM,10/04/2021 07:04:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+605606,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 11:00:00 PM,10/04/2021 07:01:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+605605,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 11:00:00 PM,10/04/2021 06:57:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+605604,Shooting Permit,10/11/2021 06:00:00 AM,10/11/2021 10:00:00 PM,10/04/2021 06:53:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+605601,Shooting Permit,10/07/2021 06:00:00 AM,10/07/2021 10:00:00 PM,10/04/2021 06:10:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","FILLMORE STREET between LAFAYETTE AVENUE and FRANKLIN AVENUE, FRANKLIN AVENUE between FILLMORE STREET and WEST BUCHANAN STREET, CASSIDY PLACE between FRANKLIN AVENUE and HENDERSON AVENUE, KISSEL AVENUE between SNUG HARBOR ROAD and LINDEN STREET",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10310"
+605592,Theater Load in and Load Outs,10/15/2021 12:01:00 AM,10/17/2021 06:00:00 AM,10/04/2021 05:28:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, WADSWORTH AVENUE between WEST 175 STREET and WEST 176 STREET",Manhattan,12,33,Theater,Theater,United States of America,10033
+605584,Theater Load in and Load Outs,10/16/2021 12:01:00 AM,10/20/2021 06:00:00 AM,10/04/2021 05:09:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD, WEST 125 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD",Manhattan,10,28,Theater,Theater,United States of America,10027
+605583,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 10:00:00 PM,10/04/2021 04:59:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+605578,Shooting Permit,10/07/2021 07:00:00 AM,10/07/2021 06:00:00 PM,10/04/2021 04:45:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 76 STREET and EAST 79 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 44 STREET between EIGHTH AVENUE and NINTH AVENUE, EIGHTH AVENUE between WEST 44 STREET and WEST 45 STREET",Manhattan,"4, 5, 64, 8","14, 18, 19, 22",Film,Feature,United States of America,"10023, 10036, 10075"
+605576,Shooting Permit,10/08/2021 11:00:00 AM,10/09/2021 01:00:00 AM,10/04/2021 04:31:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH ST, COURT STREET between MONTAGUE STREET and LIVINGSTON STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, TILLARY STREET between CADMAN PLAZA EAST and ADAMS STREET, JOHNSON STREET between CADMAN PLAZA EAST and ADAMS STREET",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205"
+605573,Shooting Permit,10/09/2021 08:00:00 AM,10/09/2021 11:00:00 PM,10/04/2021 04:12:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Film,Short,United States of America,11230
+605564,Shooting Permit,10/08/2021 08:00:00 AM,10/08/2021 10:00:00 PM,10/04/2021 03:45:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 66 STREET and EAST 63 STREET, EAST 66 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 67 STREET and EAST 66 STREET, MADISON AVENUE between EAST 65 STREET and EAST 64 STREET, EAST 64 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 65 STREET between MADISON AVENUE and PARK AVENUE, EAST 60 STREET between MADISON AVENUE and PARK AVENUE, EAST 64 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10022, 10065"
+605563,Shooting Permit,10/11/2021 08:00:00 AM,10/11/2021 11:00:00 PM,10/04/2021 03:44:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between MIDWOOD STREET and RUTLAND ROAD, ROGERS AVENUE between WINTHROP STREET and PARKSIDE AVENUE, MARTENSE STREET between ROGERS AVENUE and BEDFORD AVENUE",Brooklyn,"17, 9","67, 71",Film,Feature,United States of America,"11225, 11226"
+605559,Shooting Permit,10/07/2021 08:00:00 AM,10/07/2021 10:00:00 PM,10/04/2021 03:31:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+605557,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 11:00:00 PM,10/04/2021 03:28:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 10 STREET between BEDFORD AVENUE and BERRY STREET,Brooklyn,1,94,Film,Feature,United States of America,11249
+605556,Shooting Permit,10/06/2021 06:00:00 AM,10/06/2021 09:00:00 PM,10/04/2021 03:27:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","Eagle Street between PROVOST STREET and McGuiness Blvd, Mcguiness blvd between eagle st and dupont st, PROVOST STREET between DUPONT STREET and INDIA STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605554,Shooting Permit,10/08/2021 10:00:00 AM,10/09/2021 03:00:00 AM,10/04/2021 03:18:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","FREEDOM PLACE SOUTH between WEST 62 STREET and WEST 59 STREET, WEST 60 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 60 STREET and WEST 59 STREET, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 64 STREET, W 63RD ST between RIVERSIDE BOULEVARD and THELONIOUS MONK CIRCLE, WEST 59 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023, 10069"
+605547,Shooting Permit,10/06/2021 09:30:00 AM,10/06/2021 10:00:00 PM,10/04/2021 03:01:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 42 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 42 STREET and EAST 41 STREET, 3 AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 41 STREET between 2 AVENUE and 3 AVENUE, EAST 35 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 35 STREET and EAST 39 STREET, EAST 36 STREET between PARK AVENUE and MADISON AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 34 STREET and EAST 35 STREET, EAST 42 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 38 STREET and EAST 40 STREET",Manhattan,6,17,Television,Episodic series,United States of America,"10016, 10017, 10158"
+605543,Shooting Permit,10/07/2021 08:00:00 AM,10/07/2021 11:30:00 PM,10/04/2021 02:47:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between HUMBOLDT STREET and MONITOR STREET, RUSSELL STREET between NASSAU AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605532,Shooting Permit,10/07/2021 07:00:00 AM,10/07/2021 09:00:00 PM,10/04/2021 02:24:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","116 AVENUE between BARRON STREET and 159 STREET, 157 STREET between 115 DRIVE and 116 AVENUE, 157 STREET between 116 AVENUE and FOCH BOULEVARD, BAISLEY BOULEVARD between LAKEVIEW LANE and 154 STREET, 160 STREET between JAMAICA AVENUE and 90 AVENUE, 90 AVENUE between PARSONS BOULEVARD and 161 STREET, PARSONS BOULEVARD between 88 AVENUE and 90 AVENUE, PARSONS BOULEVARD between 90 AVENUE and JAMAICA AVENUE, 162 STREET between JAMAICA AVENUE and 89 AVENUE, HILLSIDE AVENUE between 161 STREET and 162 STREET, HILLSIDE AVENUE between 162 STREET and 165 STREET, 163 STREET between JAMAICA AVENUE and 89 AVENUE",Queens,"12, 8","103, 107, 113",Television,Cable-episodic,United States of America,"11432, 11434"
+605531,Shooting Permit,10/07/2021 08:30:00 AM,10/07/2021 10:00:00 PM,10/04/2021 02:23:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, 10 STREET between 40 AVENUE and 41 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between VERNON BOULEVARD and 11 STREET, 9 STREET between 43 AVENUE and 43 ROAD",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+605526,Theater Load in and Load Outs,10/26/2021 12:01:00 AM,11/09/2021 11:59:00 PM,10/04/2021 02:10:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVE. between WEST 61 STREET and WEST 63 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+605516,Shooting Permit,10/06/2021 11:00:00 AM,10/07/2021 01:00:00 AM,10/04/2021 01:28:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIVONIA AVENUE between CLEVELAND STREET and ASHFORD STREET, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, ELTON STREET between HEGEMAN AVENUE and NEW LOTS AVENUE, NEW LOTS AVENUE between CLEVELAND STREET and LINWOOD STREET, CLEVELAND STREET between NEW LOTS AVENUE and HEGEMAN AVENUE",Staten Island,"3, 5","123, 75",Television,Episodic series,United States of America,"10309, 11207, 11208"
+605507,Shooting Permit,10/08/2021 10:00:00 AM,10/09/2021 02:00:00 AM,10/04/2021 01:13:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 15 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 14 STREET and EAST 15 STREET, 3 AVENUE between EAST 15 STREET and EAST 16 STREET, 3 AVENUE between EAST 16 STREET and EAST 17 STREET, 3 AVENUE between EAST 17 STREET and EAST 18 STREET, 3 AVENUE between EAST 18 STREET and EAST 19 STREET, 3 AVENUE between EAST 19 STREET and EAST 20 STREET, EAST 18 STREET between 3 AVENUE and 2 AVENUE, EAST 18 STREET between 2 AVENUE and 1 AVENUE, EAST 17 STREET between RUTHERFORD PLACE and 2 AVENUE, EAST 19 STREET between 3 AVENUE and 2 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 22 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6","13, 14, 18",Television,Cable-episodic,United States of America,"10003, 10010, 10017, 10022, 10036, 10152, 10171"
+605491,Shooting Permit,10/07/2021 06:30:00 AM,10/07/2021 06:00:00 PM,10/04/2021 11:56:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CHURCH STREET and GREENWICH STREET, 6 AVENUE between WALKER STREET and WHITE STREET",Manhattan,1,1,Film,Feature,United States of America,"10007, 10013"
+605490,Shooting Permit,10/06/2021 06:00:00 AM,10/06/2021 11:00:00 PM,10/04/2021 11:54:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BERRY STREET and BEDFORD AVENUE, FROST STREET between UNION AVENUE and LORIMER STREET",Brooklyn,1,94,Film,Feature,United States of America,"11211, 11249"
+605484,Shooting Permit,10/07/2021 07:00:00 AM,10/07/2021 10:00:00 PM,10/04/2021 11:39:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+605477,Shooting Permit,10/08/2021 09:00:00 AM,10/08/2021 10:00:00 PM,10/04/2021 11:28:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 27 STREET and EAST 28 STREET, MADISON AVENUE between EAST 27 STREET and EAST 26 STREET, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 25 STREET between 2 AVENUE and 1 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 31 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 31 STREET and EAST 32 STREET, EAST 32 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6","13, 14",Television,Episodic series,United States of America,"10010, 10016"
+605470,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 11:00:00 PM,10/04/2021 11:13:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605468,Shooting Permit,10/06/2021 07:00:00 AM,10/06/2021 10:00:00 PM,10/04/2021 11:10:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+605467,Shooting Permit,10/07/2021 11:00:00 AM,10/08/2021 02:00:00 AM,10/04/2021 11:07:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between 37 AVENUE and 39 AVENUE, 39 AVENUE between 61 STREET and 63 STREET, 63 STREET between ROOSEVELT AVENUE and 39 AVENUE, ROOSEVELT AVENUE between 60 STREET and 62 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, BROADWAY between 60 STREET and 62 STREET, BROADWAY between 62 STREET and 64 STREET, BROADWAY between 64 STREET and 65 STREET, 64 STREET between 35 AVENUE and BROADWAY",Queens,2,108,Film,Feature,United States of America,11377
+605466,Shooting Permit,10/08/2021 04:00:00 AM,10/08/2021 08:00:00 PM,10/04/2021 10:55:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between TROUTMAN STREET and STARR STREET, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE",Brooklyn,4,83,Commercial,Industrial/Corporate,United States of America,11237
+605460,Shooting Permit,10/12/2021 06:00:00 AM,10/12/2021 10:00:00 PM,10/04/2021 10:47:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+605457,Shooting Permit,10/07/2021 06:00:00 AM,10/07/2021 11:59:00 PM,10/04/2021 10:37:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605455,Shooting Permit,10/06/2021 02:00:00 AM,10/06/2021 11:00:00 PM,10/04/2021 10:32:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605433,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 09:00:00 PM,10/04/2021 08:57:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605428,Shooting Permit,10/07/2021 08:00:00 AM,10/07/2021 06:30:00 PM,10/04/2021 08:23:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER MARKET PLACE between BROOME STREET and GRAND STREET, CROSBY STREET between GRAND STREET and BROOME STREET",Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+605415,Shooting Permit,10/09/2021 06:00:00 AM,10/09/2021 03:00:00 PM,10/03/2021 04:54:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between BROADWAY and SOUTH WILLIAM STREET, CEDAR STREET between TRINITY PLACE and NASSAU STREET, BROADWAY between WALL STREET and MORRIS STREET, BROAD STREET between WATER STREET and SOUTH STREET, WATER STREET between WHITEHALL STREET and BROAD STREET, BOWERY between DIVISION STREET and CANAL STREET, 5 AVENUE between EAST 53 STREET and EAST 54 STREET, SOUTH STREET between WHITEHALL STREET and BROAD STREET, EAST BROADWAY between MARKET STREET and BOWERY, WEST 54 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"1, 2, 3, 5","1, 18, 5, 84",WEB,Not Applicable,United States of America,"10002, 10004, 10005, 10006, 10013, 10019, 10022, 10038, 11201"
+605416,Shooting Permit,10/10/2021 06:00:00 AM,10/10/2021 04:00:00 PM,10/03/2021 04:54:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between AVENUE A and 1 AVENUE, BOWERY between EAST HOUSTON STREET and STANTON STREET, EAST 1 STREET between 1 AVENUE and EAST HOUSTON STREET, HESTER STREET between FORSYTH STREET and ALLEN STREET, FORSYTH STREET between GRAND STREET and HESTER STREET, ELDRIDGE STREET between DIVISION STREET and CANAL STREET, GRAND STREET between BAXTER STREET and ELIZABETH STREET, MOTT STREET between GRAND STREET and HESTER STREET",Manhattan,"2, 3","5, 7, 9",WEB,Not Applicable,United States of America,"10002, 10009, 10012, 10013"
+605369,Shooting Permit,10/10/2021 06:00:00 AM,10/10/2021 08:00:00 PM,10/02/2021 03:07:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","YELLOWSTONE BOULEVARD between 67 DRIVE and 68 AVENUE, 67 DRIVE between YELLOWSTONE BOULEVARD and 108 STREET, YELLOWSTONE BOULEVARD between 68 AVENUE and 68 ROAD",Queens,6,112,Commercial,Commercial,United States of America,11375
+605367,Shooting Permit,10/09/2021 06:00:00 AM,10/09/2021 08:00:00 PM,10/02/2021 02:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","YELLOWSTONE BOULEVARD between 67 DRIVE and 68 AVENUE, 67 DRIVE between YELLOWSTONE BOULEVARD and 108 STREET, YELLOWSTONE BOULEVARD between 68 AVENUE and 68 ROAD",Queens,6,112,Commercial,Commercial,United States of America,11375
+605327,Shooting Permit,10/06/2021 12:00:00 PM,10/07/2021 01:00:00 AM,10/01/2021 06:03:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between DOCK STREET and MAIN STREET, CADMAN PLAZA WEST between PROSPECT STREET and CLARK STREET, TILLARY STREET between CADMAN PLAZA WEST and BROOKLYN BRIDGE BOULEVARD, WASHINGTON STREET between FRONT STREET and YORK STREET, COURT STREET between PIERREPONT STREET and JORALEMON STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, FURMAN STREET between CLARK STREET and PIERREPONT STREET, FURMAN STREET between VINE STREET and CRANBERRY STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+605316,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 10:00:00 PM,10/01/2021 04:55:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 11 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,94,Film,Feature,United States of America,11249
+605308,Shooting Permit,10/06/2021 06:30:00 AM,10/06/2021 09:30:00 PM,10/01/2021 04:33:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 TERRACE and 23 AVENUE, 23 ROAD between 19 STREET and 21 STREET, 19 STREET between 23 DRIVE and 23 ROAD, 19 STREET between 23 ROAD and 23 TERRACE, 21 STREET between 23 TERRACE and 23 AVENUE, 23 AVENUE between 19 STREET and 21 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+605306,Shooting Permit,10/06/2021 11:00:00 AM,10/07/2021 02:00:00 AM,10/01/2021 04:29:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 5 STREET and NORTH 4 STREET, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, SOUTH 5 STREET between KENT AVENUE and DEAD END, KENT AVENUE between SOUTH 6 STREET and BROADWAY, WYTHE AVENUE between SOUTH 6 STREET and BROADWAY, KENT AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, SOUTH 6 STREET between KENT AVENUE and DUNHAM PLACE, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 6 STREET between DUNHAM PLACE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 6 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,11249
+605294,Shooting Permit,10/05/2021 09:00:00 AM,10/05/2021 08:00:00 PM,10/01/2021 03:49:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between HOYT AVENUE SOUTH and HOYT AVENUE NORTH, HOYT AVE S between 23RD ST and 24TH ST",Queens,1,114,WEB,Not Applicable,United States of America,11102
+605291,Shooting Permit,10/05/2021 09:00:00 AM,10/05/2021 11:00:00 PM,10/01/2021 03:37:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 12 STREET and EAST 13 STREET, BROADWAY between EAST 9 STREET and EAST 11 STREET, BROADWAY between EAST 11 STREET and EAST 12 STREET, EAST 13 STREET between BROADWAY and 4 AVENUE, GRAMERCY PARK SOUTH between GRAMERCY PARK WEST and GRAMERCY PARK EAST, GRAMERCY PARK NORTH between PARK AVENUE SOUTH and GRAMERCY PARK EAST, GRAMERCY PARK WEST between GRAMERCY PARK NORTH and GRAMERCY PARK SOUTH, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, WEST 51 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 66 STREET between MADISON AVENUE and 5 AVENUE, EAST 63 STREET between LEXINGTON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 66 STREET and EAST 67 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, 5 AVENUE between EAST 64 STREET and EAST 69 STREET, PARK AVENUE between EAST 52 STREET and EAST 57 STREET, MADISON AVENUE between EAST 65 STREET and EAST 66 STREET",Manhattan,"2, 5, 6, 64, 8","13, 18, 19, 22, 6, 9",Film,Feature,United States of America,"10003, 10010, 10019, 10020, 10022, 10065, 10152"
+605288,Shooting Permit,10/06/2021 09:00:00 AM,10/07/2021 02:00:00 AM,10/01/2021 03:33:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, GRAND STREET between BROADWAY and CROSBY STREET, SPRING STREET between CROSBY STREET and LAFAYETTE STREET, GRAND STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between GREENE STREET and LAFAYETTE STREET, BROOME STREET between GREENE STREET and WOOSTER STREET, MERCER STREET between SPRING STREET and GRAND STREET, SPRING STREET between GREENE STREET and MERCER STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between KENMARE STREET and BROOME STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+605287,Shooting Permit,10/06/2021 08:00:00 AM,10/06/2021 10:00:00 PM,10/01/2021 03:31:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+605279,Theater Load in and Load Outs,10/30/2021 12:01:00 AM,10/31/2021 06:00:00 AM,10/01/2021 02:44:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605278,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 11:00:00 PM,10/01/2021 02:43:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE EXT between DEAD END and KINGSLAND AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605275,Theater Load in and Load Outs,10/27/2021 12:01:00 AM,10/27/2021 11:59:00 PM,10/01/2021 02:39:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605274,Theater Load in and Load Outs,10/28/2021 12:01:00 AM,10/28/2021 11:59:00 PM,10/01/2021 02:34:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605273,Theater Load in and Load Outs,10/25/2021 12:01:00 AM,10/26/2021 11:59:00 PM,10/01/2021 02:32:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605271,Shooting Permit,10/06/2021 07:00:00 AM,10/07/2021 02:00:00 AM,10/01/2021 02:27:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between CROSS BRONX EXPRESSWAY and WATSON AVENUE, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, 3 AVENUE between PARSONS BOULEVARD and 147 STREET, WHITESTONE EXPRESSWAY between 3RD AVE and 5TH AVE, WHITESTONE EXPRESSWAY between 3RD AVE and 4TH AVE, POINT CRESCENT between BOULEVARD and 141 STREET, BOULEVARD between NORTH DRIVE and CENTER DRIVE, CENTER DRIVE between BOULEVARD and MALBA DRIVE, SOUTH DRIVE between CENTER DRIVE and MALBA DRIVE, 141 STREET between POINT CRESCENT and 11 AVENUE, 141 STREET between SOUTH DRIVE and 11 AVENUE, 147th st between 3 AVENUE and dead end",Bronx,"10, 7, 9","109, 43, 45",Television,Episodic series,United States of America,"10461, 10462, 11357"
+605270,Theater Load in and Load Outs,10/24/2021 12:01:00 AM,10/24/2021 11:59:00 PM,10/01/2021 02:24:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605267,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,10/23/2021 11:59:00 PM,10/01/2021 02:17:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605266,Theater Load in and Load Outs,10/22/2021 12:01:00 AM,10/22/2021 11:59:00 PM,10/01/2021 02:13:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605264,Shooting Permit,10/05/2021 08:00:00 AM,10/05/2021 11:00:00 PM,10/01/2021 02:10:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between HESTER STREET and GRAND STREET, ELIZABETH STREET between GRAND STREET and HESTER STREET, CHRYSTIE STREET between HESTER STREET and CANAL STREET, HESTER STREET between BOWERY and CHRYSTIE STREET",Manhattan,"2, 3",5,WEB,Not Applicable,United States of America,"10002, 10013"
+605262,Theater Load in and Load Outs,10/20/2021 12:01:00 AM,10/21/2021 11:59:00 PM,10/01/2021 02:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+605259,Shooting Permit,10/06/2021 09:00:00 AM,10/06/2021 11:59:00 PM,10/01/2021 01:51:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between 37 AVENUE and 39 AVENUE, 39 AVENUE between 61 STREET and 63 STREET, 63 STREET between ROOSEVELT AVENUE and 39 AVENUE, ROOSEVELT AVENUE between 60 STREET and 62 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, BROADWAY between 60 STREET and 62 STREET, BROADWAY between 62 STREET and 64 STREET, BROADWAY between 64 STREET and 65 STREET, 64 STREET between 35 AVENUE and BROADWAY",Queens,2,108,Film,Feature,United States of America,11377
+605257,Shooting Permit,10/05/2021 08:00:00 AM,10/06/2021 01:00:00 AM,10/01/2021 01:26:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+605256,Shooting Permit,10/07/2021 07:00:00 AM,10/07/2021 12:00:00 PM,10/01/2021 01:22:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Variety,United States of America,10023
+605250,Shooting Permit,10/07/2021 08:00:00 AM,10/07/2021 11:00:00 PM,10/01/2021 01:05:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+605248,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 08:00:00 PM,10/01/2021 12:52:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",MALCOLM X BOULEVARD between WEST 116 STREET and WEST 115 STREET,Manhattan,"10, 64","22, 28",Commercial,Commercial,United States of America,"10026, 10027"
+605241,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 10:00:00 PM,10/01/2021 12:32:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+605239,Shooting Permit,10/05/2021 06:00:00 AM,10/06/2021 02:00:00 AM,10/01/2021 12:31:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 30 STREET, WEST 25 STREET between 9 AVENUE and 10 AVENUE, WEST 24 STREET between 8 AVENUE and 9 AVENUE, WEST 20 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 15 STREET and WEST 16 STREET, WEST 15 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 15 STREET and WEST 14 STREET, WEST 14 STREET between 10 AVENUE and WASHINGTON STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 13 STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and GANSEVOORT STREET, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10001, 10011, 10014"
+605214,Shooting Permit,10/08/2021 12:00:00 PM,10/09/2021 03:00:00 AM,10/01/2021 11:13:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 64 STREET and WEST 65 STREET, COLUMBUS AVENUE between WEST 66 STREET and WEST 67 STREET, WEST 67 STREET between BROADWAY and COLUMBUS AVENUE, WEST 66 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 66 STREET and WEST 67 STREET, BROADWAY between WEST 66 STREET and WEST 67 STREET, WEST 65 STREET between CENTRAL PARK WEST and BROADWAY, WEST 66 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, BROADWAY between WEST 65 STREET and WEST 66 STREET, WEST 66 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 66 STREET and WEST 67 STREET, AMSTERDAM AVENUE between WEST 67 STREET and WEST 68 STREET, WEST 68 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 68 STREET and WEST 69 STREET, AMSTERDAM AVENUE between WEST 69 STREET and WEST 70 STREET, CENTRAL PARK WEST between WEST 65 STREET and WEST 66 STREET",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10023
+605213,Shooting Permit,10/07/2021 01:00:00 PM,10/08/2021 04:00:00 AM,10/01/2021 11:12:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE, BROADWAY between WEST 57 STREET and COLUMBUS CIRCLE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, 6 AVENUE between WEST 59 STREET and WEST 57 STREET",Manhattan,"2, 5, 64, 8","18, 19, 22, 6",Television,Episodic series,United States of America,"10003, 10019, 10022"
+605211,Shooting Permit,10/05/2021 10:00:00 AM,10/05/2021 08:00:00 PM,10/01/2021 11:08:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between DESBROSSES STREET and CANAL STREET, WATTS STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between CANAL STREET and WATTS STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+605208,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 11:00:00 PM,10/01/2021 11:03:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605206,Shooting Permit,10/05/2021 06:30:00 AM,10/05/2021 10:00:00 PM,10/01/2021 10:52:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+605203,Shooting Permit,10/10/2021 06:00:00 AM,10/11/2021 06:00:00 PM,10/01/2021 10:46:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 68 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 69 STREET and EAST 70 STREET",Manhattan,"64, 8","19, 22",Television,Special/Awards Show,United States of America,"10021, 10065"
+605194,Shooting Permit,10/05/2021 07:30:00 AM,10/05/2021 08:30:00 PM,10/01/2021 09:19:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",NEWEL STREET between GREENPOINT AVENUE and CALYER STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11222
+605175,Shooting Permit,10/09/2021 06:00:00 AM,10/09/2021 11:59:00 PM,09/30/2021 09:05:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+605174,Shooting Permit,10/08/2021 06:00:00 AM,10/08/2021 11:59:00 PM,09/30/2021 09:00:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+605156,Shooting Permit,10/07/2021 09:00:00 AM,10/08/2021 02:00:00 AM,09/30/2021 05:57:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+605154,Shooting Permit,10/06/2021 08:00:00 AM,10/07/2021 12:00:00 AM,09/30/2021 05:41:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+605150,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 11:00:00 PM,09/30/2021 05:18:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Television,Episodic series,United States of America,"11430, 11436"
+605148,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 09:00:00 PM,09/30/2021 05:08:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between TAYLOR AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, Soundview Ave between Beach Ave and Taylor Ave, Soundview Ave between Leland Ave and Underhill Ave, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+605137,Shooting Permit,10/07/2021 09:00:00 AM,10/07/2021 11:59:00 PM,09/30/2021 04:32:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 51 STREET and EAST 52 STREET, MADISON AVENUE between EAST 48 STREET and EAST 50 STREET, EAST 51 STREET between 5 AVENUE and PARK AVENUE, EAST 52 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022"
+605131,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 11:00:00 PM,09/30/2021 04:20:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 29 STREET, REVIEW AVENUE between 29 STREET and 35 STREET, 29 STREET between DEAD END and REVIEW AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+605120,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 11:59:00 PM,09/30/2021 03:59:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+605118,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 09:00:00 PM,09/30/2021 03:52:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+605108,Shooting Permit,10/05/2021 09:00:00 AM,10/05/2021 06:00:00 PM,09/30/2021 03:19:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 138TH ST between BROADWAY and 12 AVENUE, BROADWAY between WEST 137 STREET and WEST 139 STREET, WEST 150 STREET between BRADHURST AVENUE and FREDERICK DOUGLASS BOULEVARD, BRADHURST AVENUE between WEST 150 STREET and WEST 151 STREET, BRADHURST AVENUE between WEST 149 STREET and WEST 150 STREET, 12 AVENUE between WEST 138 STREET and WEST 135 STREET",Manhattan,"10, 9","30, 32",Television,Episodic series,United States of America,"10031, 10039"
+605102,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 09:00:00 PM,09/30/2021 03:06:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+605097,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 11:00:00 PM,09/30/2021 02:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 54 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 7 AVENUE, 6 AVENUE between WEST 52 STREET and WEST 51 STREET, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE, WEST 52 STREET between 7 AVENUE and BROADWAY",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10019, 10020, 10036, 10119"
+605095,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 08:00:00 PM,09/30/2021 02:42:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 48 STREET and EAST 49 STREET, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 48 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 46 STREET and EAST 47 STREET, PARK AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 35 STREET between PARK AVENUE and MADISON AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10016, 10017, 10022"
+605089,Shooting Permit,10/06/2021 08:00:00 AM,10/07/2021 01:00:00 AM,09/30/2021 02:21:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+605086,Shooting Permit,10/04/2021 08:00:00 AM,10/04/2021 08:30:00 PM,09/30/2021 02:12:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, CADMAN PLAZA WEST between PROSPECT STREET and CLARK STREET, COURT STREET between PIERREPONT STREET and JORALEMON STREET, WATER STREET between DOCK STREET and MAIN STREET, WASHINGTON STREET between FRONT STREET and YORK STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, FURMAN STREET between CLARK STREET and PIERREPOINT STREET, FURMAN STREET between VINE STREET and CRANBERRY STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+605078,Shooting Permit,10/06/2021 11:00:00 AM,10/07/2021 03:00:00 AM,09/30/2021 01:52:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between PARK AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, 3 AVENUE between EAST 43 STREET and EAST 46 STREET, EAST 45 STREET between 2 AVENUE and 3 AVENUE, EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between PARK AVENUE and 3 AVENUE, PARK AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10154"
+605042,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/09/2021 06:00:00 AM,09/30/2021 12:18:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+605026,Theater Load in and Load Outs,10/31/2021 12:01:00 AM,11/01/2021 06:00:00 AM,09/30/2021 11:12:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+605025,Theater Load in and Load Outs,10/30/2021 12:01:00 AM,10/30/2021 11:59:00 PM,09/30/2021 11:11:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+605024,Theater Load in and Load Outs,10/29/2021 12:01:00 AM,10/29/2021 11:59:00 PM,09/30/2021 11:10:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+605023,Theater Load in and Load Outs,10/31/2021 12:01:00 AM,11/01/2021 06:00:00 AM,09/30/2021 11:07:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+605022,Theater Load in and Load Outs,10/29/2021 12:01:00 AM,10/30/2021 11:59:00 PM,09/30/2021 11:06:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+605021,Shooting Permit,10/08/2021 07:00:00 AM,10/08/2021 11:00:00 PM,09/30/2021 11:01:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+605018,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 09:00:00 PM,09/30/2021 10:56:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between VESTRY STREET and NORTH MOORE STREET, HUBERT STREET between WEST STREET and GREENWICH STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, WEST STREET between NORTH MOORE STREET and HARRISON STREET, GREENWICH STREET between BEACH STREET and NORTH MOORE STREET, WASHINGTON STREET between LAIGHT STREET and HUBERT STREET, BEACH STREET between VARICK STREET and ST JOHNS LANE, YORK STREET between ST JOHNS LANE and 6 AVENUE, GREENWICH STREET between LAIGHT STREET and HUBERT STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+605017,Shooting Permit,10/07/2021 06:00:00 AM,10/07/2021 10:00:00 PM,09/30/2021 10:56:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+604994,Shooting Permit,10/02/2021 07:00:00 AM,10/02/2021 09:00:00 PM,09/30/2021 09:11:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604993,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 08:00:00 PM,09/30/2021 09:08:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 178 STREET between AMSTERDAM AVENUE and AUDOBON AVENUE,Manhattan,12,33,Still Photography,Not Applicable,United States of America,"10032, 10033"
+604985,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,10/24/2021 06:00:00 AM,09/30/2021 07:46:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between BROADWAY and COLUMBUS AVENUE,Manhattan,"4, 7","18, 20",Theater,Theater,United States of America,"10019, 10023"
+604982,Shooting Permit,10/08/2021 12:00:00 AM,10/08/2021 12:00:00 PM,09/30/2021 05:52:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between BROADWAY and 7 AVENUE,Manhattan,5,18,Television,Morning Show,United States of America,10036
+604967,Shooting Permit,10/02/2021 06:00:00 AM,10/02/2021 10:00:00 PM,09/29/2021 08:37:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between NORTH 1 STREET and GRAND STREET, NORTH 1 STREET between RIVER STREET and KENT AVENUE",Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+604966,Shooting Permit,10/07/2021 08:00:00 AM,10/07/2021 09:00:00 PM,09/29/2021 08:24:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 42 STREET and WEST 44 STREET, WEST 44 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,10036
+604954,Theater Load in and Load Outs,10/02/2021 12:01:00 AM,10/04/2021 06:00:00 AM,09/29/2021 05:41:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between ROCKEFELLER PLAZA and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+604951,Shooting Permit,10/15/2021 06:00:00 AM,10/15/2021 11:00:00 PM,09/29/2021 05:35:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","86 STREET between WEST 11 STREET and WEST 10 STREET, WEST 11 STREET between 86 STREET and AVENUE U, WEST 15 STREET between NEPTUNE AVENUE and HART PLACE",Brooklyn,"13, 15","60, 61",WEB,Not Applicable,United States of America,"11223, 11224"
+604948,Shooting Permit,10/14/2021 01:00:00 AM,10/14/2021 10:00:00 PM,09/29/2021 05:05:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between VILLAGE ROAD NORTH and GRAVESEND NECK ROAD, GRAVESEND NECK ROAD between VILLAGE ROAD EAST and WEST STREET, GRAVESEND NECK ROAD between WEST STREET and EAST FIRST STREET",Brooklyn,15,61,WEB,Not Applicable,United States of America,11223
+604946,Shooting Permit,10/13/2021 06:00:00 AM,10/13/2021 09:00:00 PM,09/29/2021 04:50:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","VILLAGE ROAD EAST between VILLAGE ROAD NORTH and GRAVESEND NECK ROAD, GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD EAST, GRAVESEND NECK ROAD between VILLAGE ROAD EAST and MCDONALD AVENUE, AVENUE U between WEST SEVENTH STREET and WEST SIXTH STREET, WEST SIXTH STREET between AVENUE U and AVENUE T",Brooklyn,"11, 15","61, 62",WEB,Not Applicable,United States of America,11223
+604943,Theater Load in and Load Outs,09/30/2021 06:00:00 AM,10/10/2021 05:00:00 AM,09/29/2021 04:26:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+604929,Shooting Permit,10/08/2021 06:00:00 AM,10/08/2021 09:00:00 PM,09/29/2021 04:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 73 STREET between AVENUE W and AVENUE X,Brooklyn,18,63,WEB,Not Applicable,United States of America,11234
+604925,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 11:00:00 PM,09/29/2021 04:02:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",W. 119TH ST. between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVE,Manhattan,10,28,WEB,Not Applicable,United States of America,10026
+604926,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 11:00:00 PM,09/29/2021 04:02:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 119TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENNOX AVE,Manhattan,10,28,WEB,Not Applicable,United States of America,10026
+604924,Shooting Permit,10/08/2021 09:00:00 AM,10/08/2021 11:00:00 PM,09/29/2021 03:55:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GRAVESEND NECK ROAD and VILLAGE ROAD EAST, GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD EAST, GRAVESEND NECK ROAD between WEST STREET and EAST FIRST STREET, AVENUE W between EAST THIRD STREET and EAST FOURTH STREET, EAST THIRD STREET between AVENUE W and GRAVESEND NECK ROAD",Brooklyn,15,61,WEB,Not Applicable,United States of America,11223
+604910,Shooting Permit,10/07/2021 09:00:00 AM,10/07/2021 11:00:00 PM,09/29/2021 02:56:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between GRAVESEND NECK ROAD and VILLAGE ROAD EAST, GRAVESEND NECK ROAD between WEST STREET and VILLAGE ROAD EAST, GRAVESEND NECK ROAD between WEST STREET and EAST FIRST STREET",Brooklyn,15,61,WEB,Not Applicable,United States of America,11223
+604904,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 09:00:00 PM,09/29/2021 02:40:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+604903,Shooting Permit,10/06/2021 06:00:00 AM,10/06/2021 11:00:00 PM,09/29/2021 02:39:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","VOORHIES AVENUE between DEADEND and KNAPP STREET, KNAPP STREET between VOORHIES AVENUE and AVENUE Z",Brooklyn,15,61,WEB,Not Applicable,United States of America,11235
+604902,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 09:00:00 PM,09/29/2021 02:38:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","17 AVENUE between 83 STREET and 82 STREET, 83 STREET between 17 AVENUE and 16 AVENUE",Brooklyn,11,62,WEB,Not Applicable,United States of America,11214
+604889,Shooting Permit,10/04/2021 06:00:00 AM,10/05/2021 01:00:00 AM,09/29/2021 01:44:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 122 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 121 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 121 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 120 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, MT MORRIS PARK WEST between WEST 122 STREET and WEST 123 STREET, MT MORRIS PARK WEST between WEST 121 STREET and WEST 122 STREET, W 125 ST between LENOX AVENUE and MADISON AVE, 5 AVENUE between WEST 125 STREET and WEST 126 STREET, MADISON AVENUE between EAST 124 STREET and EAST 125 STREET",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10027, 10035"
+604888,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 09:00:00 PM,09/29/2021 01:22:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 73 STREET between AVENUE W and AVENUE X, GERRITSEN AVENUE between CHANNEL AVENUE and DEVON AVENUE, ASTER COURT between DEVON AVENUE and CHANNEL AVENUE, DEVON AVENUE between ASTER COURT and GERRITSEN AVENUE",Brooklyn,"15, 18","61, 63",WEB,Not Applicable,United States of America,"11229, 11234"
+604886,Shooting Permit,10/04/2021 02:00:00 AM,10/04/2021 10:00:00 PM,09/29/2021 01:18:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604883,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 11:00:00 PM,09/29/2021 12:56:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604880,Shooting Permit,10/04/2021 06:30:00 AM,10/04/2021 09:00:00 PM,09/29/2021 12:38:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 46 STREET, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+604855,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 10:00:00 PM,09/29/2021 10:53:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between 5 AVENUE and 6 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 11 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10003, 10011"
+604853,Rigging Permit,10/08/2021 07:00:00 AM,10/08/2021 05:00:00 PM,09/29/2021 10:44:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",FILLMORE STREET between LAFAYETTE AVENUE and FRANKLIN AVENUE,Staten Island,1,120,Television,Episodic series,United States of America,10301
+604852,Rigging Permit,10/07/2021 10:00:00 PM,10/08/2021 07:00:00 AM,09/29/2021 10:43:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",FILLMORE STREET between LAFAYETTE AVENUE and FRANKLIN AVENUE,Staten Island,1,120,Television,Episodic series,United States of America,10301
+604850,Rigging Permit,10/06/2021 05:00:00 PM,10/07/2021 06:00:00 AM,09/29/2021 10:43:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",FILLMORE STREET between LAFAYETTE AVENUE and FRANKLIN AVENUE,Staten Island,1,120,Television,Episodic series,United States of America,10301
+604849,Rigging Permit,10/06/2021 07:00:00 AM,10/06/2021 05:00:00 PM,09/29/2021 10:42:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",FILLMORE STREET between LAFAYETTE AVENUE and FRANKLIN AVENUE,Staten Island,1,120,Television,Episodic series,United States of America,10301
+604837,Shooting Permit,10/04/2021 08:00:00 AM,10/04/2021 10:00:00 PM,09/29/2021 10:04:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+604831,Shooting Permit,10/06/2021 06:00:00 AM,10/06/2021 10:00:00 PM,09/29/2021 09:49:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+604829,Shooting Permit,10/03/2021 12:00:00 AM,10/04/2021 01:00:00 AM,09/29/2021 09:31:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between WEST BROADWAY and CHURCH STREET, WEST BROADWAY between DUANE STREET and READE STREET, DUANE STREET between WEST BROADWAY and BROADWAY, HUDSON STREET between DUANE STREET and READE STREET, PARK AVENUE between EAST 57 STREET and EAST 50 STREET, EAST 54 STREET between MADISON AVENUE and PARK AVENUE, EAST 53 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 53 STREET, EAST 55 STREET between 5 AVENUE and MADISON AVENUE, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"1, 5, 64, 8","1, 18, 19, 22",Television,Episodic series,United States of America,"10007, 10013, 10019, 10020, 10022, 10103, 10152"
+604819,Shooting Permit,10/01/2021 08:00:00 AM,10/02/2021 06:00:00 PM,09/29/2021 08:32:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, ORIENT AVENUE between OLIVE STREET and METROPOLITAN AVENUE, MASPETH AVENUE between CONSELYEA STREET and OLIVE STREET, METROPOLITAN AVENUE between ORIENT AVENUE and OLIVE STREET, OLIVE STREET between MASPETH AVENUE and DEVOE STREET, DEVOE STREET between BUSHWICK AVENUE and OLIVE STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+604795,Shooting Permit,10/03/2021 06:00:00 AM,10/03/2021 09:00:00 PM,09/28/2021 08:42:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between WILLIAM STREET and PEARL STREET, WILLIAM STREET between WALL STREET and LIBERTY STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, NASSAU STREET between WALL STREET and LIBERTY STREET, CEDAR STREET between BROADWAY and NASSAU STREET, HANOVER STREET between WALL STREET and PEARL STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, BEAVER STREET between WILLIAM STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and OLD SLIP, HANOVER SQUARE between PEARL STREET and WATER STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, PINE STREET between BROADWAY and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038, 10045"
+604790,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 07:00:00 PM,09/28/2021 07:18:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, WEST 41 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 42 STREET and WEST 43 STREET, WEST 38 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10018, 10036"
+604784,Theater Load in and Load Outs,10/05/2021 12:01:00 AM,10/06/2021 11:59:00 PM,09/28/2021 06:43:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","SEVENTH AVENUE between WEST 57 STREET and WEST 56 STREET, WEST 56 STREET between 7 AVENUE and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10106"
+604773,Shooting Permit,10/02/2021 10:00:00 AM,10/02/2021 09:00:00 PM,09/28/2021 05:45:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between PIERREPONT STREET and JORALEMON STREET, N PORTLAND AVENUE between FLUSHING AVENUE and MYRTLE AVENUE, PARK AVENUE between ST EDWARDS STREET and CARLTON AVENUE, MONTAGUE STREET between HENRY STREET and HICKS STREET, HENRY STREET between REMSEN STREET and MONTAGUE STREET",Brooklyn,2,"84, 88",Film,Feature,United States of America,"11201, 11205"
+604771,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 10:00:00 PM,09/28/2021 05:32:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 57 STREET and COLUMBUS CIRCLE, WEST 58 STREET between 5 AVENUE and 6 AVENUE, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE, WEST 56 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, 6 AVENUE between WEST 59 STREET and WEST 57 STREET",Manhattan,"2, 5, 64","18, 22, 6",Television,Episodic series,United States of America,"10003, 10019"
+604747,Shooting Permit,09/30/2021 12:00:00 PM,10/01/2021 01:00:00 AM,09/28/2021 04:03:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELTON STREET between DUMONT AVENUE and NEW LOTS AVENUE, DUMONT AVENUE between ASHFORD STREET and CLEVELAND STREET, DUMONT AVENUE between CLEVELAND STREET and ELTON STREET, NEW LOTS AVENUE between LINWOOD STREET and ELTON STREET, ELTON STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LIVONIA AVENUE between ASHFORD STREET and CLEVELAND STREET, LIVONIA AVENUE between CLEVELAND STREET and ASHFORD STREET",Brooklyn,5,75,Television,Episodic series,United States of America,"11207, 11208"
+604732,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 09:00:00 PM,09/28/2021 02:49:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 25 STREET and EAST 21 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 21 STREET, EAST 22 STREET between PARK AVENUE SOUTH and BROADWAY, EAST 22 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Television,Episodic series,United States of America,10010
+604724,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 09:00:00 PM,09/28/2021 02:26:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between BRUCKNER BOULEVARD and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+604711,Theater Load in and Load Outs,10/27/2021 12:01:00 AM,10/27/2021 11:59:00 PM,09/28/2021 01:37:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+604709,Theater Load in and Load Outs,10/26/2021 12:01:00 AM,10/26/2021 11:59:00 PM,09/28/2021 01:36:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+604710,Theater Load in and Load Outs,10/28/2021 12:01:00 AM,10/28/2021 11:59:00 PM,09/28/2021 01:36:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+604707,Theater Load in and Load Outs,10/22/2021 12:01:00 AM,10/23/2021 06:00:00 AM,09/28/2021 01:35:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+604706,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,10/23/2021 11:59:00 PM,09/28/2021 01:34:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+604705,Theater Load in and Load Outs,10/24/2021 12:01:00 AM,10/25/2021 06:00:00 AM,09/28/2021 01:34:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+604687,Theater Load in and Load Outs,10/02/2021 12:01:00 AM,10/03/2021 06:00:00 AM,09/28/2021 12:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+604682,Shooting Permit,10/02/2021 10:00:00 AM,10/02/2021 08:00:00 PM,09/28/2021 12:10:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREAT JONES STREET between BOWERY and LAFAYETTE STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, GREAT JONES STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE",Manhattan,2,9,Television,Episodic series,United States of America,"10003, 10012"
+604672,Shooting Permit,10/01/2021 07:00:00 AM,10/01/2021 10:00:00 PM,09/28/2021 11:49:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604668,Shooting Permit,10/01/2021 07:00:00 AM,10/01/2021 10:00:00 PM,09/28/2021 11:39:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+604666,Shooting Permit,10/01/2021 11:00:00 AM,10/02/2021 02:00:00 AM,09/28/2021 11:33:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","SULLIVAN STREET between PRINCE STREET and SPRING STREET, PRINCE STREET between SULLIVAN STREET and THOMPSON STREET, THOMPSON STREET between PRINCE STREET and SPRING STREET, PRINCE STREET between THOMPSON STREET and WEST BROADWAY, WEST BROADWAY between WEST HOUSTON STREET and SPRING STREET, PRINCE STREET between SULLIVAN STREET and AVENUE OF THE AMERICAS, AVENUE OF THE AMERICAS between KING STREET and PRINCE STREET, WEST HOUSTON STREET between SULLIVAN STREET and THOMPSON STREET, SPRING STREET between HUDSON STREET and VARICK STREET, SULLIVAN STREET between WASHINGTON SQUARE SOUTH and WEST 3 STREET, W 9 ST between 6 AVE and UNIVERSITY PL",Manhattan,2,"1, 6",Film,Feature,United States of America,"10003, 10011, 10012, 10013, 10014"
+604663,Shooting Permit,09/30/2021 11:00:00 AM,10/01/2021 02:00:00 AM,09/28/2021 11:26:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 44 STREET, W 43 STREET between MADISON AVE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Film,Feature,United States of America,"10017, 10019, 10020, 10036, 10105"
+604661,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 10:00:00 PM,09/28/2021 11:12:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between IRVING AVE and WYCKOFF AVE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+604650,Shooting Permit,10/03/2021 06:00:00 AM,10/03/2021 09:00:00 PM,09/28/2021 10:26:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between 152 STREET and 157 STREET, 154 STREET between 11 AVENUE and 12 AVENUE, WHITESTONE EXPRESSWAY SR NB between 14th ave and 20th ave, 15 AVENUE between PARSONS BOULEVARD and 146 STREET, 145 PLACE between 15 AVENUE and 17 AVENUE, 146 STREET between 15 AVENUE and 146 PLACE, 17 AVENUE between PARSONS BOULEVARD and 146 PLACE, CROSS ISLAND PARKWAY S SVC RD between 149th st and 150th st",Queens,7,109,Television,Episodic series,United States of America,11357
+604649,Shooting Permit,09/30/2021 08:00:00 AM,09/30/2021 10:00:00 PM,09/28/2021 10:20:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+604645,Shooting Permit,10/01/2021 10:00:00 AM,10/02/2021 01:00:00 AM,09/28/2021 09:56:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","DRY HARBOR ROAD between 82 PLACE and CALDWELL AVENUE, 83 STREET between 62 AVENUE and DEAD END, CALDWELL AVENUE between 62 AVENUE and DRY HARBOR ROAD, 83 STREET between DRY HARBOR ROAD and 63 AVENUE, JUNIPER BOULEVARD NORTH between DRY HARBOR ROAD and 82 STREET, JUNIPER BOULEVARD NORTH between 82 STREET and 81 STREET, JUNIPER BOULEVARD NORTH between 81 STREET and 80 STREET, JUNIPER BOULEVARD NORTH between 80 STREET and 79 STREET, JUNIPER BOULEVARD NORTH between 79 STREET and 78 STREET, JUNIPER BOULEVARD NORTH between 78 STREET and 77 PLACE, JUNIPER BOULEVARD NORTH between 77 PLACE and 77 STREET, JUNIPER BOULEVARD NORTH between 77 STREET and 76 STREET, DRY HARBOR ROAD between 84 STREET and 84 PLACE, 81 STREET between PENELOPE AVENUE and JUNIPER BOULEVARD SOUTH",Queens,5,104,Television,Cable-episodic,United States of America,11379
+604644,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 09:00:00 PM,09/28/2021 09:53:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between DRIGGS AVENUE and ENGERT AVENUE, HUMBOLDT STREET between DRIGGS AVENUE and ENGERT AVENUE, BROOME STREET between HUMBOLDT STREET and MCGUINNESS BLVD SOUTH, ENGERT AVENUE between MCGUINNESS BLVD SOUTH and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604642,Shooting Permit,10/04/2021 06:00:00 AM,10/04/2021 08:00:00 PM,09/28/2021 09:05:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 53 STREET, 3 AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 48 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10171"
+604641,Shooting Permit,09/30/2021 11:00:00 AM,09/30/2021 11:00:00 PM,09/28/2021 08:56:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between KINGSLAND AVENUE and DEAD END STREET,Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11109, 11222"
+604634,Shooting Permit,09/30/2021 06:00:00 AM,09/30/2021 10:00:00 PM,09/28/2021 06:58:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",PUTNAM AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+604628,Shooting Permit,10/01/2021 01:00:00 PM,10/02/2021 01:00:00 AM,09/27/2021 11:37:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",JAMAICA AVENUE between CYPRESS HILL STREET and HIGHLAND BOULEVARD,Brooklyn,5,75,Television,Episodic series,United States of America,11208
+604611,Shooting Permit,09/30/2021 06:00:00 AM,09/30/2021 11:59:00 PM,09/27/2021 08:39:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVE, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and RUSSELL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604607,Shooting Permit,10/07/2021 06:00:00 AM,10/07/2021 11:59:00 PM,09/27/2021 07:34:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+604606,Shooting Permit,10/05/2021 06:00:00 AM,10/05/2021 11:59:00 PM,09/27/2021 07:34:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+604603,Shooting Permit,10/01/2021 06:00:00 AM,10/01/2021 11:59:00 PM,09/27/2021 07:34:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+604604,Shooting Permit,10/02/2021 06:00:00 AM,10/02/2021 11:59:00 PM,09/27/2021 07:34:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+604598,Shooting Permit,10/02/2021 06:00:00 AM,10/02/2021 09:00:00 PM,09/27/2021 07:08:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 33 STREET, 11 AVENUE between WEST 33 STREET and WEST 34 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, WEST 33 STREET between HUDSON BOULEVARD and 11 AVENUE, WEST 34 STREET between HUDSON BOULEVARD and 11 AVENUE, WEST 34 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 34 STREET and WEST 40 STREET, HUDSON BLVD between WEST 35 STREET and WEST 36 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10018"
+604592,Shooting Permit,09/29/2021 09:00:00 AM,09/29/2021 10:00:00 PM,09/27/2021 06:46:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MT CARMEL PLACE between EAST 26 STREET and EAST 28 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, EAST 28 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 30 STREET between 2 AVENUE and 3 AVENUE, EAST 30 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 28 STREET and EAST 29 STREET, EAST 27 STREET between 2 AVENUE and 3 AVENUE, EAST 27 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 26 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10010, 10016"
+604584,Theater Load in and Load Outs,10/12/2021 12:01:00 AM,10/13/2021 06:00:00 AM,09/27/2021 05:15:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between ROCKEFELLER PLAZA and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+604581,Theater Load in and Load Outs,10/01/2021 12:01:00 AM,10/02/2021 06:00:00 AM,09/27/2021 05:02:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+604578,Shooting Permit,09/30/2021 05:00:00 PM,10/01/2021 01:00:00 AM,09/27/2021 04:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 56 STREET between PARK AVENUE and MADISON AVENUE, EAST 56 STREET between MADISON AVENUE and 5 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, EAST 59 STREET between PARK AVENUE and MADISON AVENUE, EAST 60 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 59 STREET and EAST 60 STREET, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, MADISON AVENUE between EAST 59 STREET and EAST 60 STREET, 5 AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 64, 8","18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10023"
+604568,Shooting Permit,10/04/2021 06:00:00 AM,10/05/2021 03:00:00 AM,09/27/2021 04:25:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 11 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,94,Film,Feature,United States of America,11249
+604555,Shooting Permit,10/03/2021 06:00:00 AM,10/04/2021 03:00:00 AM,09/27/2021 04:04:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 11 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,94,Film,Feature,United States of America,11249
+604554,Shooting Permit,10/01/2021 06:00:00 PM,10/02/2021 03:00:00 AM,09/27/2021 03:54:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 5 AVENUE and 6 AVENUE, WEST 24 STREET between 6 AVENUE and 5 AVENUE, WEST 24 STREET between 6 AVENUE and 7 AVENUE, WEST 21 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 21 STREET and WEST 22 STREET, 5 AVENUE between WEST 21 STREET and WEST 22 STREET, 5 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,"4, 5",13,Television,Cable-episodic,United States of America,"10010, 10011"
+604550,Shooting Permit,09/30/2021 08:00:00 AM,09/30/2021 10:00:00 PM,09/27/2021 03:39:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Film,Feature,United States of America,11101
+604544,Shooting Permit,10/01/2021 05:00:00 PM,10/02/2021 07:00:00 AM,09/27/2021 03:08:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 65 STREET and EAST 63 STREET, EAST 66 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between MADISON AVENUE and PARK AVENUE, EAST 65 STREET between MADISON AVENUE and 5 AVENUE, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+604533,Shooting Permit,09/29/2021 10:00:00 AM,09/29/2021 11:00:00 PM,09/27/2021 02:42:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVENUE between VAN BRUNT STREET and WOODHULL STREET, VAN BRUNT STREET between BOWNE STREET and SUMMIT STREET",Manhattan,"1, 3, 6","1, 123, 76",Television,Pilot,United States of America,"10309, 11038, 11231"
+604525,Shooting Permit,10/12/2021 07:00:00 AM,10/12/2021 09:00:00 PM,09/27/2021 02:25:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604524,Shooting Permit,10/07/2021 07:00:00 AM,10/07/2021 09:00:00 PM,09/27/2021 02:22:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604522,Shooting Permit,10/03/2021 06:00:00 AM,10/03/2021 10:00:00 PM,09/27/2021 02:16:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between CANAL STREET and WATTS STREET, GREENWICH STREET between WATTS STREET and DESBROSSES STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET, WATTS STREET between WASHINGTON STREET and GREENWICH STREET, WATTS STREET between GREENWICH STREET and HUDSON STREET, DESBROSSES STREET between GREENWICH STREET and HUDSON STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+604521,Shooting Permit,10/02/2021 06:00:00 AM,10/02/2021 10:00:00 PM,09/27/2021 02:16:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATTS STREET between WASHINGTON STREET and GREENWICH STREET, WATTS STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between WATTS STREET and DEBROSSES STREET, DEBROSSES STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between CANAL STREET and WATTS STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10013
+604519,Shooting Permit,10/06/2021 07:00:00 AM,10/06/2021 09:00:00 PM,09/27/2021 02:14:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604517,Shooting Permit,10/05/2021 07:00:00 AM,10/05/2021 09:00:00 PM,09/27/2021 02:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604516,Shooting Permit,10/04/2021 07:00:00 AM,10/04/2021 09:00:00 PM,09/27/2021 02:05:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604514,Shooting Permit,10/01/2021 07:00:00 AM,10/01/2021 09:00:00 PM,09/27/2021 02:01:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604513,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 01:00:00 PM,09/27/2021 01:57:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604509,Shooting Permit,10/01/2021 09:00:00 AM,10/02/2021 03:00:00 AM,09/27/2021 01:21:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, HALSEY ST between IRVING AVE and WYCKOFF AVE, CENTRE STREET between WYCKOFF AVENUE and CYPRESS AVENUE, STEPHEN STREET between WYCKOFF AVENUE and CYPRESS AVENUE, HANCOCK STREET between WYCKOFF AVENUE and CYPRESS AVENUE, MYRTLE AVENUE between CORNELIA STREET and HANCOCK STREET, SENECA AVENUE between CATALPA AVENUE and CENTRE STREET, MYRTLE AVENUE between SENECA AVENUE and GEORGE STREET, WYCKOFF AVENUE between GEORGE STREET and STEPHEN STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+604508,Theater Load in and Load Outs,09/28/2021 06:00:00 AM,09/30/2021 05:00:00 AM,09/27/2021 01:17:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+604505,Shooting Permit,09/29/2021 09:00:00 AM,09/29/2021 11:00:00 PM,09/27/2021 01:01:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+604489,Theater Load in and Load Outs,10/05/2021 12:01:00 AM,10/06/2021 11:59:00 PM,09/27/2021 12:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+604476,Shooting Permit,09/30/2021 06:00:00 AM,09/30/2021 11:00:00 PM,09/27/2021 10:47:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+604468,Shooting Permit,10/01/2021 01:00:00 PM,10/02/2021 02:00:00 AM,09/27/2021 10:06:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between ARKANSAS DRIVE and 56 DRIVE, NATIONAL DRIVE between 56 DRIVE and DEAD END, 56 DRIVE between NATIONAL DRIVE and ARKANSAS DRIVE, 56 DRIVE between ARKANSAS DRIVE and WHITMAN DRIVE",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+604467,Shooting Permit,09/30/2021 03:00:00 PM,10/01/2021 03:00:00 AM,09/27/2021 10:05:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between ARKANSAS DRIVE and 56 DRIVE, NATIONAL DRIVE between 56 DRIVE and DEAD END, 56 DRIVE between NATIONAL DRIVE and ARKANSAS DRIVE, 56 DRIVE between ARKANSAS DRIVE and WHITMAN DRIVE",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+604456,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 07:00:00 PM,09/27/2021 09:43:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between FIFTH AVENUE and MADISON AVENUE, FIFTH AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023"
+604452,Shooting Permit,09/29/2021 07:00:00 AM,09/29/2021 10:00:00 PM,09/27/2021 09:11:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+604449,Theater Load in and Load Outs,10/02/2021 07:00:00 AM,10/02/2021 10:00:00 PM,09/27/2021 08:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+604451,Theater Load in and Load Outs,10/04/2021 07:00:00 AM,10/04/2021 07:00:00 PM,09/27/2021 08:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+604450,Theater Load in and Load Outs,10/03/2021 07:00:00 AM,10/03/2021 10:00:00 PM,09/27/2021 08:59:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+604437,Shooting Permit,09/29/2021 08:30:00 AM,09/30/2021 02:00:00 AM,09/26/2021 11:54:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 61 STREET and EAST 63 STREET, MADISON AVENUE between EAST 60 STREET and EAST 64 STREET, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 58 STREET, 6 AVENUE between WEST 58 STREET and CENTRAL PARK SOUTH, EAST 62 STREET between MADISON AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 61 STREET and EAST 63 STREET, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 83 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 86 STREET and WEST 91 STREET, COLUMBUS AVENUE between WEST 85 STREET and WEST 86 STREET, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 84 STREET, BROADWAY between WEST 85 STREET and WEST 87 STREET",Manhattan,"5, 64, 7, 8","18, 19, 20, 22, 24",Film,Feature,United States of America,"10019, 10023, 10024, 10065"
+604409,Shooting Permit,09/30/2021 07:00:00 AM,09/30/2021 08:00:00 PM,09/26/2021 03:35:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between MADISON AVENUE and 5 AVENUE, WEST 36 STREET between HUDSON BOULEVARD EAST and 10 AVENUE",Manhattan,"4, 5","10, 13",Still Photography,Not Applicable,United States of America,"10001, 10003, 10010, 10011, 10016, 10018"
+604398,Shooting Permit,10/12/2021 01:00:00 AM,10/13/2021 03:00:00 AM,09/26/2021 10:21:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between WITHERS STREET and JACKSON STREET, WOODPOINT ROAD between SKILLMAN AVENUE and CONSELYEA STREET",Brooklyn,1,94,Film,Feature,United States of America,11211
+604396,Shooting Permit,10/13/2021 06:00:00 AM,10/14/2021 03:00:00 AM,09/26/2021 09:59:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",BEDFORD AVENUE between NORTH 10 STREET and NORTH 11 STREET,Brooklyn,1,94,Film,Feature,United States of America,"11211, 11249"
+604390,Shooting Permit,09/30/2021 06:00:00 AM,09/30/2021 11:00:00 PM,09/26/2021 08:41:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE,Brooklyn,4,83,Film,Feature,United States of America,11237
+604348,Shooting Permit,09/29/2021 06:00:00 AM,09/30/2021 03:00:00 AM,09/25/2021 09:58:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLARKSON AVENUE between BEDFORD AVENUE and ROGERS AVENUE, ROGERS AVENUE between MARTENSE STREET and LINDEN BOULEVARD",Brooklyn,"17, 9","67, 71",Film,Feature,United States of America,11226
+604347,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 11:00:00 PM,09/25/2021 09:43:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLARKSON AVENUE between BEDFORD AVENUE and ROGERS AVENUE, ROGERS AVENUE between MARTENSE STREET and LINDEN BOULEVARD",Brooklyn,"17, 9","67, 71",Film,Feature,United States of America,11226
+604346,Theater Load in and Load Outs,10/03/2021 12:01:00 AM,10/04/2021 06:00:00 AM,09/25/2021 09:41:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 8 AVENUE and 9 AVENUE, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,10001
+604345,Theater Load in and Load Outs,10/03/2021 12:01:00 AM,10/05/2021 06:00:00 AM,09/25/2021 09:29:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+604292,Shooting Permit,09/29/2021 10:00:00 AM,09/30/2021 12:00:00 AM,09/24/2021 03:05:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTER AVENUE between HINSDALE STREET and VERMONT STREET, SHEFFIELD AVENUE between BLAKE AVENUE and SUTTER AVENUE, NEW JERSEY AVENUE between SUTTER AVENUE and BELMONT AVENUE, GEORGIA AVENUE between SUTTER AVENUE and BLAKE AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+604285,Shooting Permit,09/30/2021 06:00:00 AM,09/30/2021 11:59:00 PM,09/24/2021 02:53:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, CENTER BOULEVARD between 46 AVENUE and 5 STREET, 5 STREET between CENTER BOULEVARD and 46 ROAD, VERNON BOULEVARD between 45 AVENUE and 45 ROAD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between CENTER BOULEVARD and VERNON BOULEVARD, 46 ROAD between 5 STREET and VERNON BOULEVARD, BORDEN AVENUE between 27 STREET and REVIEW AVENUE, BORDEN AVENUE between REVIEW AVENUE and 29 STREET, REVIEW AVENUE between BORDEN AVENUE and 30 STREET, 29 STREET between REVIEW AVENUE and BORDEN AVENUE, BORDEN AVENUE between 29 STREET and 30 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11109, 11222"
+604283,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 11:59:00 PM,09/24/2021 02:50:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+604267,Shooting Permit,10/01/2021 07:00:00 AM,10/01/2021 11:00:00 PM,09/24/2021 02:19:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604265,Shooting Permit,09/30/2021 08:00:00 AM,09/30/2021 10:00:00 PM,09/24/2021 02:19:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604263,Shooting Permit,09/29/2021 10:30:00 AM,09/30/2021 01:00:00 AM,09/24/2021 02:16:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between NEWEL STREET and DIAMOND STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604259,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 10:00:00 PM,09/24/2021 02:08:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 7 AVENUE and 10 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 42 STREET and WEST 46 STREET, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 83 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 86 STREET and WEST 91 STREET, COLUMBUS AVENUE between WEST 85 STREET and WEST 86 STREET, AMSTERDAM AVENUE between WEST 83 STREET and WEST 88 STREET, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 84 STREET, BROADWAY between WEST 85 STREET and WEST 87 STREET",Manhattan,"4, 5, 64, 7","14, 18, 20, 22, 24",Film,Feature,United States of America,"10024, 10036"
+604256,Shooting Permit,09/29/2021 07:00:00 AM,09/29/2021 09:00:00 PM,09/24/2021 02:00:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+604245,Shooting Permit,10/07/2021 05:00:00 AM,10/07/2021 11:00:00 PM,09/24/2021 01:26:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",BORDEN AVENUE between 2 STREET and 5th Street,Queens,2,108,Television,Game show,United States of America,11101
+604244,Shooting Permit,10/06/2021 05:00:00 AM,10/06/2021 11:00:00 PM,09/24/2021 01:20:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",BORDEN AVENUE between 2 STREET and 5th Street,Queens,2,108,Television,Game show,United States of America,11101
+604243,Shooting Permit,09/28/2021 10:00:00 AM,09/28/2021 10:00:00 PM,09/24/2021 01:16:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELTON STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, NEW LOTS AVENUE between ELTON STREET and LINWOOD STREET",Brooklyn,5,75,Television,Episodic series,United States of America,11208
+604241,Shooting Permit,10/05/2021 05:00:00 AM,10/05/2021 11:00:00 PM,09/24/2021 01:13:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",BORDEN AVENUE between 2 STREET and 5th Street,Queens,2,108,Television,Game show,United States of America,11101
+604240,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 10:00:00 PM,09/24/2021 01:10:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between HESTER STREET and BROOME STREET, GRAND STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between GRAND STREET and BROOME STREET, BOWERY between RIVINGTON STREET and PRINCE STREET, BOWERY between PRINCE STREET and EAST HOUSTON STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, CENTRE STREET between WALKER STREET and WHITE STREET, EAST HOUSTON STREET between MOTT STREET and CHRYSTIE STREET, BOWERY between SPRING STREET and RIVINGTON STREET, BAXTER STREET between WALKER STREET and WHITE STREET",Manhattan,"1, 2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+604238,Shooting Permit,10/04/2021 04:00:00 AM,10/04/2021 11:00:00 PM,09/24/2021 01:06:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",BORDEN AVENUE between 2 STREET and 5 STREET,Queens,2,108,Television,Game show,United States of America,11101
+604228,Shooting Permit,09/27/2021 10:00:00 AM,09/27/2021 10:00:00 PM,09/24/2021 12:40:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELTON STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, LINWOOD STREET between NEW LOTS AVENUE and HEGEMAN AVENUE, NEW LOTS AVENUE between ASHFORD STREET and ELTON STREET, DUMONT AVENUE between ASHFORD STREET and CLEVELAND STREET, ELTON STREET between DUMONT AVENUE and NEW LOTS AVENUE, NEW LOTS AVENUE between ELTON STREET and LINWOOD STREET",Brooklyn,5,75,Television,Episodic series,United States of America,"11207, 11208"
+604219,Shooting Permit,09/28/2021 07:00:00 AM,09/28/2021 09:00:00 PM,09/24/2021 12:15:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between DEAD END and NEVINS STREET, NEVINS STREET between UNION STREET and DEGRAW STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DEGRAW STREET and DOUGLASS STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Pilot,United States of America,11217
+604218,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 09:00:00 PM,09/24/2021 12:15:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between DEAD END and NEVINS STREET, NEVINS STREET between UNION STREET and DEGRAW STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DEGRAW STREET and DOUGLASS STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Pilot,United States of America,11217
+604203,Shooting Permit,09/28/2021 07:00:00 AM,09/28/2021 10:00:00 PM,09/24/2021 11:48:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 60 STREET between 3 AVENUE and 2 AVENUE, EAST 62 STREET between 3 AVENUE and 2 AVENUE, THIRD AVENUE between EAST 60 STREET and EAST 63 STREET, WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 83 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 86 STREET and WEST 91 STREET, COLUMBUS AVENUE between WEST 85 STREET and WEST 86 STREET, AMSTERDAM AVENUE between WEST 83 STREET and WEST 88 STREET, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 84 STREET, BROADWAY between WEST 85 STREET and WEST 87 STREET",Manhattan,"64, 7, 8","19, 20, 22, 24",Film,Feature,United States of America,"10022, 10024, 10065"
+604200,Shooting Permit,09/28/2021 08:00:00 AM,09/28/2021 10:00:00 PM,09/24/2021 11:41:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,11101
+604198,Shooting Permit,09/29/2021 06:30:00 AM,09/29/2021 07:30:00 PM,09/24/2021 11:38:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE AVENUE between MARCY AVENUE and TOMPKINS AVENUE,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+604179,Shooting Permit,10/01/2021 11:00:00 AM,10/02/2021 02:00:00 AM,09/24/2021 09:33:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+604174,Shooting Permit,10/15/2021 07:00:00 AM,10/15/2021 07:00:00 PM,09/24/2021 08:55:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",DEAD ROAD between EAST 72 STREET and West 72nd Street,Manhattan,64,22,WEB,Not Applicable,United States of America,10023
+604170,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 09:00:00 PM,09/24/2021 08:01:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 108 STREET between LEXINGTON AVENUE and THIRD AVENUE,Manhattan,11,23,Film,Feature,United States of America,10029
+604169,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 11:59:00 PM,09/24/2021 07:39:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between PIKE STREET and ESSEX ST, EAST BROADWAY between MARKET STREET and PIKE STREET, MONROE STREET between MARKET STREET and PIKE STREET, PIKE STREET between EAST BROADWAY and HENRY STREET, HENRY STREET between MARKET STREET and PIKE STREET, MARKET STREET between MADISON STREET and MONROE STREET, MARKET STREET between HENRY STREET and MADISON STREET, HENRY STREET between MARKET STREET and CATHERINE STREET, HENRY STREET between MARKET STREET and MECHANICS ALLEY, MARKET STREET between HENRY STREET and EAST BROADWAY, MECHANICS ALLEY between HENRY STREET and MADISON STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+604136,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 10:00:00 PM,09/23/2021 07:05:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET",Brooklyn,1,90,WEB,Not Applicable,United States of America,11237
+604135,Shooting Permit,09/29/2021 06:00:00 AM,09/29/2021 08:00:00 PM,09/23/2021 06:54:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","NATIONAL DRIVE between ARKANSAS DRIVE and 56 DRIVE, NATIONAL DRIVE between 56 DRIVE and DEAD END, 56 DRIVE between NATIONAL DRIVE and ARKANSAS DRIVE, 56 DRIVE between ARKANSAS DRIVE and WHITMAN DRIVE",Brooklyn,18,63,Television,Episodic series,United States of America,11234
+604131,Shooting Permit,09/28/2021 09:00:00 AM,09/28/2021 11:59:00 AM,09/23/2021 06:34:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 ROAD and 44 AVENUE, 44 AVENUE between 10 STREET and 11 STREET, 44 ROAD between 11 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+604117,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 10:00:00 PM,09/23/2021 04:31:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 42 STREET between FARRAGUT ROAD and FOSTER AVENUE, EAST 40 STREET between FARRAGUT ROAD and FOSTER AVENUE, ALBANY AVENUE between FARRAGUT ROAD and GLENWOOD ROAD, EAST 42 STREET between AVENUE D and FOSTER AVENUE, EAST 43 STREET between AVENUE D and FOSTER AVENUE",Brooklyn,17,67,Commercial,Commercial,United States of America,"11203, 11210"
+604116,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 11:00:00 PM,09/23/2021 04:25:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+604096,Shooting Permit,09/28/2021 08:00:00 AM,09/28/2021 11:00:00 PM,09/23/2021 03:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 9 AVENUE and 10 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 9 AVENUE and 10 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+604094,Shooting Permit,09/27/2021 05:00:00 AM,09/27/2021 03:00:00 PM,09/23/2021 03:18:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between CHURCH STREET and BROADWAY, ALLEN STREET between DELANCEY STREET and BROOME STREET, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, PORTER AVENUE between JOHNSON AVENUE and HARRISON PLACE, ALLEN STREET between GRAND STREET and HESTER STREET, ALLEN STREET between HESTER STREET and CANAL STREET, GRAND STREET between ELDRIDGE STREET and ALLEN STREET, GRAND STREET between ALLEN STREET and ORCHARD STREET, ORCHARD STREET between HESTER STREET and CANAL STREET, BEACH 193 STREET between ROCKAWAY POINT BOULEVARD and RANGE ROAD",Manhattan,"1, 2, 3, 84","1, 100, 5, 7, 84, 90",Film,Feature,United States of America,"10002, 10013, 10038, 11201, 11237, 11695"
+604091,Shooting Permit,09/29/2021 07:00:00 AM,09/29/2021 09:00:00 PM,09/23/2021 03:14:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+604083,Shooting Permit,09/25/2021 06:00:00 AM,09/25/2021 09:00:00 PM,09/23/2021 02:51:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",BERGEN STREET between ROCHESTER AVENUE and BUFFALO AVENUE,Brooklyn,8,77,Documentary,Not Applicable,United States of America,"11213, 11233"
+604080,Shooting Permit,09/29/2021 06:00:00 AM,09/29/2021 08:00:00 PM,09/23/2021 02:41:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, 5 AVENUE between WEST 8 STREET and WEST 10 STREET, W 9TH ST between UNIVERSITY PL and 6TH AVE, 5 AVENUE between WEST 11 STREET and WEST 12 STREET",Manhattan,2,6,Film,Feature,United States of America,"10003, 10011, 10012"
+604071,Shooting Permit,09/28/2021 10:00:00 AM,09/29/2021 12:00:00 AM,09/23/2021 02:21:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERVOORT AVENUE between LOMBARDY STREET and BEADEL STREET, FARADAY AVENUE between FIELDSTON ROAD and SYLVAN AVENUE, FIELDSTON ROAD between FARADAY AVENUE and MOSHOLU AVENUE, WEST 249 STREET between INDEPENDENCE AVENUE and ARLINGTON AVENUE, HENRY HUDSON PARKWAY WEST between WEST 252 STREET and WEST 249 STREET, BOWERY between BAYARD STREET and PELL STREET",Brooklyn,"1, 2, 3, 8","5, 50, 7, 84, 90, 94",Film,Feature,United States of America,"10002, 10013, 10463, 10471, 11201, 11211, 11222"
+604047,Shooting Permit,09/26/2021 10:00:00 AM,09/26/2021 07:00:00 PM,09/23/2021 01:03:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",10 AVENUE between WEST 51 STREET and WEST 52 STREET,Manhattan,4,18,Film,Feature,United States of America,10019
+604035,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 07:00:00 PM,09/23/2021 12:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 5 AVENUE and 6 AVENUE, 10 AVENUE between WEST 48 STREET and WEST 47 STREET, WEST 50 STREET between 10 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Commercial,Commercial,United States of America,"10018, 10019, 10036"
+604034,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 11:00:00 PM,09/23/2021 12:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+604022,Shooting Permit,09/28/2021 07:00:00 AM,09/28/2021 09:00:00 PM,09/23/2021 11:45:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","STEINWAY STREET between 19 AVENUE and BERRIAN BOULEVARD, BERRIAN BOULEVARD between STEINWAY STREET and DEAD END, 19 AVENUE between HAZEN STREET and 81 STREET",Queens,"1, 80","114, 115",Television,Cable-episodic,United States of America,"11105, 11370"
+604018,Shooting Permit,09/29/2021 08:00:00 AM,09/29/2021 10:00:00 PM,09/23/2021 11:36:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","ST FELIX STREET between DEKALB AVENUE and FULTON STREET, ASHLAND PLACE between WILLOUGHBY STREET and DEKALB AVENUE, ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and FORT GREENE PLACE, ATLANTIC AVENUE between 3 AVENUE and HOYT STREET, FULTON STREET between LAFAYETTE AVENUE and ASHLAND PLACE, LAFAYETTE AVENUE between FULTON STREET and SOUTH ELLIOTT PLACE, LAFAYETTE AVENUE between ASHLAND PLACE and FORT GREENE PLACE, WAVERLY AVENUE between ATLANTIC AVENUE and FULTON STREET",Brooklyn,2,"78, 84, 88",Film,Feature,United States of America,"11201, 11217, 11238"
+604008,Shooting Permit,09/29/2021 07:00:00 AM,09/30/2021 01:00:00 AM,09/23/2021 11:20:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 6 AVENUE and 5 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 6 AVENUE and 5 AVENUE, WEST 54 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 5 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 46 STREET between 10 AVENUE and 11 AVENUE, WEST 46 STREET between 10 AVENUE and 9 AVENUE, WEST 44 STREET between 10 AVENUE and 9 AVENUE, WEST 43 STREET between 10 AVENUE and 9 AVENUE, WEST 43 STREET between 9 AVENUE and 10 AVENUE, WEST 50 STREET between 9 AVENUE and 11 AVENUE, WEST 42 STREET between 9 AVENUE and 10 AVENUE, WEST 52 STREET between 6 AVENUE and 5 AVENUE, 10 AVENUE between WEST 49 STREET and WEST 50 STREET",Manhattan,"4, 5","10, 18",Television,Episodic series,United States of America,"10019, 10036, 10103"
+603984,Shooting Permit,09/25/2021 05:00:00 AM,09/25/2021 11:00:00 AM,09/23/2021 09:28:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+603966,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 11:59:00 PM,09/23/2021 06:52:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between CATHERINE STREET and PIKE STREET, EAST BROADWAY between PIKE STREET and ESSEX ST, EAST BROADWAY between MARKET STREET and FORSYTH STREET, MONROE STREET between MARKET STREET and PIKE STREET, MARKET STREET between MONROE STREET and CHERRY STREET, MARKET STREET between MADISON STREET and MONROE STREET, PIKE STREET between MADISON STREET and MONROE STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, HENRY STREET between MARKET STREET and PIKE STREET, MARKET STREET between EAST BROADWAY and HENRY STREET, MARKET STREET between HENRY STREET and MADISON STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,"10002, 10038"
+603964,Shooting Permit,09/24/2021 08:00:00 AM,09/24/2021 08:00:00 PM,09/23/2021 06:10:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",PALMETTO STREET between CENTRAL AVENUE and EVERGREEN AVENUE,Brooklyn,4,83,Commercial,Commercial,United States of America,11221
+603941,Shooting Permit,09/26/2021 06:00:00 AM,09/26/2021 06:00:00 PM,09/22/2021 07:54:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between 5 AVENUE and MADISON AVENUE, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 56 STREET, MADISON AVENUE between EAST 55 STREET and EAST 53 STREET, EAST 54 STREET between 5 AVENUE and PARK AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 29 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 28 STREET and WEST 27 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 28 STREET, EAST 55 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"4, 5, 64, 8","10, 18, 19, 22",Television,Episodic series,United States of America,"10001, 10019, 10022, 10152"
+603915,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 04:49:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+603910,Shooting Permit,09/23/2021 06:00:00 AM,09/23/2021 09:00:00 PM,09/22/2021 04:20:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+603909,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 11:00:00 PM,09/22/2021 04:18:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between CROSS BRONX EXPRESSWAY and WATSON AVENUE, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+603908,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 11:00:00 PM,09/22/2021 04:18:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between WATSON AVENUE and CROSS BRONX EXPRESSWAY, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+603903,Shooting Permit,09/24/2021 03:00:00 PM,09/25/2021 09:00:00 AM,09/22/2021 03:51:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between WEST BROADWAY and CHURCH STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY, WEST STREET between CHAMBERS STREET and NORTH MOORE STREET, WEST STREET between HUBERT STREET and LAIGHT STREET, WARREN STREET between WEST STREET and GREENWICH STREET, WEST STREET between VESEY STREET and MURRAY STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10006, 10007, 10013, 10282"
+603901,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 09:00:00 PM,09/22/2021 03:44:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between VERNON BOULEVARD and 5 STREET, QUEENS PLAZA SOUTH between 11 STREET and VERNON BOULEVARD, NINTH STREET between QUEENS PLAZA SOUTH and 43 AVENUE, TENTH STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,"2, 5","104, 108",Television,Episodic series,United States of America,"11101, 11385"
+603900,Shooting Permit,09/28/2021 06:30:00 AM,09/28/2021 01:00:00 PM,09/22/2021 03:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 63 STREET and EAST 62 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, EAST 65 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 65 STREET and EAST 64 STREET, MADISON AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 59 STREET between MADISON AVENUE and PARK AVENUE, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10022, 10065"
+603894,Shooting Permit,10/06/2021 06:00:00 AM,10/06/2021 07:00:00 PM,09/22/2021 03:17:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between VESTRY STREET and CANAL STREET, WATTS STREET between WEST STREET and WASHINGTON STREET, CANAL STREET between WEST STREET and WASHINGTON STREET, SPRING STREET between WEST BROADWAY and WOOSTER STREET, SPRING STREET between WOOSTER STREET and GREENE STREET, EAST 25 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, WOOSTER STREET between SPRING STREET and PRINCE STREET, WEST BROADWAY between PRINCE STREET and SPRING STREET, CLINTON STREET between PACIFIC STREET and ATLANTIC AVENUE, PACIFIC STREET between COURT STREET and CLINTON STREET, PACIFIC STREET between CLINTON STREET and HENRY STREET, CLINTON STREET between AMITY STREET and PACIFIC STREET, AMITY STREET between CLINTON STREET and COURT STREET, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 25 STREET and EAST 24 STREET, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, EAST 23 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"1, 2, 4, 5, 6","1, 10, 13, 76",Film,Feature,United States of America,"10010, 10011, 10012, 10013, 11201"
+603891,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 03:06:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 38 STREET and WEST 40 STREET, WEST 40 STREET between 8 AVENUE and 7 AVENUE, WEST 39 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 37 STREET, WEST 36 STREET between 8 AVENUE and 7 AVENUE, WEST 37 STREET between 8 AVENUE and 7 AVENUE, WASHINGTON STREET between RECTOR STREET and JOSEPH P WARD STREET, GREENWICH STREET between CARLISLE STREET and EDGAR STREET, ALBANY STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between ALBANY STREET and CARLISLE STREET",Manhattan,"1, 4, 5","1, 14",Television,Episodic series,United States of America,"10006, 10018, 10036"
+603884,Shooting Permit,09/24/2021 10:00:00 AM,09/25/2021 01:30:00 AM,09/22/2021 02:46:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 85 STREET, COLUMBUS AVENUE between WEST 83 STREET and WEST 90 STREET, WEST 86 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 83 STREET and WEST 88 STREET, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 84 STREET, BROADWAY between WEST 85 STREET and WEST 87 STREET",Manhattan,"64, 7","20, 22, 24",Film,Feature,United States of America,10024
+603883,DCAS Prep/Shoot/Wrap Permit,09/27/2021 11:00:00 AM,09/27/2021 09:30:00 PM,09/22/2021 02:44:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, CHURCH STREET between CHAMBERS STREET and READE STREET, BROADWAY between WARREN STREET and MURRAY STREET, WARREN STREET between BROADWAY and CHURCH STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+603882,Shooting Permit,09/27/2021 08:00:00 AM,09/27/2021 12:00:00 PM,09/22/2021 02:44:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRE STREET between LEONARD STREET and FRANKLIN STREET,Manhattan,1,5,Television,Episodic series,United States of America,10013
+603877,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 02:34:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, MADISON AVENUE between EAST 27 STREET and EAST 26 STREET, EAST 27 STREET between MADISON AVENUE and FIFTH AVENUE, MADISON AVENUE between EAST 25 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+603876,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 02:31:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, W 116TH ST between LENOX AVENUE and MADISON AVE, 1 AVENUE between EAST 102 STREET and EAST 106 STREET, EAST 103 STREET between 1 AVENUE and 2 AVENUE, EAST 104 STREET between 1 AVENUE and 2 AVENUE, EAST 106 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"10, 11","23, 25, 28",Television,Cable-episodic,United States of America,"10026, 10027, 10029, 10035"
+603871,Shooting Permit,09/28/2021 12:00:00 PM,09/29/2021 12:30:00 AM,09/22/2021 02:17:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between GLENWOOD ROAD and FOSTER AVENUE, OCEAN AVENUE between GLENWOOD ROAD and AVENUE H, EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, OCEAN AVENUE between AVENUE H and AVENUE I, FARRAGUT ROAD between OCEAN AVENUE and EAST 21 STREET, AVENUE H between OCEAN AVENUE and CAMPUS ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,"11210, 11230"
+603868,Shooting Permit,09/25/2021 07:00:00 AM,09/25/2021 07:00:00 PM,09/22/2021 02:00:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",24 AVENUE between 81 STREET and 82 STREET,Queens,3,115,Student,Student Film,United States of America,11370
+603863,Shooting Permit,09/30/2021 11:30:00 AM,10/01/2021 03:00:00 AM,09/22/2021 01:53:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603857,Shooting Permit,09/29/2021 11:00:00 AM,09/30/2021 02:00:00 AM,09/22/2021 01:37:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603855,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 09:00:00 PM,09/22/2021 01:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603853,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 01:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603850,Shooting Permit,09/24/2021 10:00:00 AM,09/25/2021 01:00:00 AM,09/22/2021 01:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603840,Shooting Permit,09/30/2021 07:00:00 PM,10/01/2021 07:00:00 AM,09/22/2021 12:49:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between PIONEER STREET and VISITATION PLACE, VAN BRUNT STREET between VISITATION PLACE and PIONEER STREET, IMLAY STREET between PIONEER STREET and VERONA STREET, PIONEER STREET between IMLAY STREET and VAN BRUNT STREET, RICHARDS STREET between KING STREET and VERONA STREET, VERONA STREET between RICHARDS STREET and DWIGHT STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between PIONEER STREET and KING STREET",Brooklyn,6,76,Television,Pilot,United States of America,11231
+603838,Shooting Permit,09/28/2021 07:00:00 AM,09/28/2021 09:00:00 PM,09/22/2021 12:45:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between 2 AVENUE and 3 AVENUE, EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 69 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, KENMARE STREET between MOTT STREET and BOWERY, DELANCEY STREET between BOWERY and ELDRIDGE STREET, FORSYTH STREET between DELANCEY STREET and BROOME STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROOME STREET between LAFAYETTE STREET and BROADWAY, ELDRIDGE STREET between DELANCEY STREET and RIVINGTON STREET",Manhattan,"2, 3, 8","19, 5",Film,Feature,United States of America,"10002, 10012, 10013, 10021"
+603834,Shooting Permit,09/28/2021 06:30:00 AM,09/28/2021 10:00:00 PM,09/22/2021 12:36:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between GRANDVIEW AVENUE and TROUTMAN STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, 54 STREET between FLUSHING AVENUE and GRAND AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+603826,Shooting Permit,09/24/2021 08:00:00 AM,09/24/2021 10:00:00 PM,09/22/2021 12:02:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROOSEVELT AVENUE between COLLEGE POINT BOULEVARD and PRINCE STREET, ROOSEVELT AVENUE between PRINCE STREET and MAIN STREET, 39 AVENUE between MAIN STREET and 138 STREET, 37 AVENUE between PRINCE STREET and MAIN STREET, MAIN STREET between 37 AVENUE and NORTHERN BOULEVARD, MAIN STREET between 37 AVENUE and 38 AVENUE",Queens,7,109,Film,Feature,United States of America,11354
+603822,Shooting Permit,09/26/2021 06:00:00 AM,09/27/2021 09:00:00 PM,09/22/2021 11:45:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CHURCH AVENUE and ERASMUS STREET, CHURCH AVENUE between BEDFORD AVENUE and JOHNSON PLACE, JOHNSON PLACE between CHURCH AVENUE and ERASMUS STREET",Brooklyn,"14, 17","67, 70",Film,Feature,United States of America,11226
+603810,Shooting Permit,09/25/2021 06:00:00 AM,09/26/2021 12:00:00 AM,09/22/2021 11:27:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between CHURCH AVENUE and ERASMUS STREET, CHURCH AVENUE between BEDFORD AVENUE and JOHNSON PLACE, JOHNSON PLACE between CHURCH AVENUE and ERASMUS STREET",Brooklyn,"14, 17","67, 70",Film,Feature,United States of America,11226
+603806,Shooting Permit,09/28/2021 11:00:00 AM,09/29/2021 01:00:00 AM,09/22/2021 11:10:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+603801,Shooting Permit,09/24/2021 04:00:00 PM,09/25/2021 03:00:00 AM,09/22/2021 11:00:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 74 STREET and WEST 76 STREET, RIVERSIDE DRIVE between WEST 73 STREET and WEST 74 STREET, WEST 76 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 74 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 74 STREET and WEST 76 STREET, WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 78 STREET and WEST 79 STREET, BROADWAY between WEST 77 STREET and WEST 78 STREET, BROADWAY between WEST 77 STREET and WEST 76 STREET, BROADWAY between WEST 75 STREET and WEST 76 STREET, BROADWAY between WEST 73 STREET and WEST 74 STREET, WEST 78 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 77 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 73 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 74 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 73 STREET and WEST 74 STREET",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10024"
+603771,Shooting Permit,09/25/2021 06:00:00 AM,09/25/2021 11:59:00 PM,09/22/2021 08:30:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+603755,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 11:00:00 PM,09/21/2021 08:44:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, GREENPOINT AVENUE between DEAD END and RAILROAD AVE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+603741,Shooting Permit,09/23/2021 09:00:00 AM,09/23/2021 09:00:00 PM,09/21/2021 06:11:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 127 STREET between CONVENT AVENUE and ST NICHOLAS AVENUE,Manhattan,"10, 9","26, 28",WEB,Not Applicable,United States of America,10027
+603735,Shooting Permit,09/27/2021 08:00:00 AM,09/27/2021 08:30:00 PM,09/21/2021 05:39:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between 9 STREET and VERNON BOULEVARD,Manhattan,"2, 8","108, 114",Television,Episodic series,United States of America,"10044, 11101"
+603731,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/25/2021 11:59:00 PM,09/21/2021 05:18:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 60 STREET and WEST 62 STREET, AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+603730,Shooting Permit,09/27/2021 09:00:00 AM,09/28/2021 12:00:00 AM,09/21/2021 05:13:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+603711,Shooting Permit,09/27/2021 04:00:00 AM,09/27/2021 07:00:00 PM,09/21/2021 04:13:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 5 AVENUE and 6 AVENUE, WEST 58 STREET between 5 AVENUE and 6 AVENUE, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, EAST 60 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE between EAST 53 STREET and EAST 57 STREET, EAST 56 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 8","18, 19",Film,Feature,United States of America,"10019, 10022, 10065"
+603701,Shooting Permit,09/28/2021 06:00:00 AM,09/28/2021 11:00:00 PM,09/21/2021 03:41:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",44 STREET between QUEENS BOULEVARD and 47 AVENUE,Queens,2,108,Television,Made for TV/mini-series,United States of America,11104
+603699,Shooting Permit,09/27/2021 06:30:00 AM,09/27/2021 08:30:00 PM,09/21/2021 03:39:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between MYRTLE AVENUE and EVERGREEN AVENUE, MYRTLE AVENUE between BUSHWICK AVENUE and CHARLES PLACE",Brooklyn,4,83,Still Photography,Not Applicable,United States of America,11221
+603695,Theater Load in and Load Outs,09/23/2021 06:00:00 AM,09/25/2021 01:00:00 AM,09/21/2021 03:20:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+603674,Shooting Permit,09/24/2021 02:00:00 PM,09/25/2021 12:00:00 AM,09/21/2021 02:18:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET,Manhattan,2,1,Film,Feature,United States of America,10012
+603672,Shooting Permit,09/24/2021 04:00:00 PM,09/25/2021 06:00:00 AM,09/21/2021 02:14:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between WEST 3 STREET and BLEECKER STREET, WEST 3 STREET between THOMPSON STREET and LAGUARDIA PLACE, WEST 3 STREET between THOMPSON STREET and SULLIVAN STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, SULLIVAN STREET between WASHINGTON SQUARE SOUTH and WEST 3 STREET, W 9TH STREET between UNIVERSITY PL and 6TH AVE, 5 AVENUE between WEST 8 STREET and WEST 10 STREET",Manhattan,2,6,Film,Feature,United States of America,"10003, 10011, 10012"
+603663,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 10:00:00 PM,09/21/2021 01:45:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET, THOMPSON STREET between SPRING STREET and BROOME STREET, WEST BROADWAY between SPRING STREET and BROOME STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, BOND STREET between LAFAYETTE STREET and BROADWAY, WEST BROADWAY between PRINCE STREET and SPRING STREET, BROADWAY between GRAND STREET and BROOME STREET, PRINCE STREET between SULLIVAN STREET and THOMPSON STREET",Manhattan,2,"1, 5, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013"
+603656,Shooting Permit,09/24/2021 08:00:00 AM,09/24/2021 09:00:00 PM,09/21/2021 01:29:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+603653,Shooting Permit,09/23/2021 08:00:00 AM,09/23/2021 09:00:00 PM,09/21/2021 01:27:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+603647,Shooting Permit,09/27/2021 07:00:00 AM,09/27/2021 11:00:00 PM,09/21/2021 01:16:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+603642,Shooting Permit,09/23/2021 09:00:00 AM,09/23/2021 11:59:00 PM,09/21/2021 12:55:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","SUFFOLK STREET between RIVINGTON STREET and DELANCEY STREET, RIVINGTON STREET between SUFFOLK STREET and RIDGE STREET, GRAND STREET between ESSEX STREET and NORFOLK STREET, ESSEX STREET between GRAND STREET and CANAL STREET, EAST BROADWAY between JEFFERSON STREET and CLINTON STREET, DELANCEY STREET between NORFOLK STREET and CLINTON STREET",Manhattan,3,7,Television,Pilot,United States of America,10002
+603636,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 11:00:00 PM,09/21/2021 12:40:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 8 STREET and EAST 10 STREET, 4 AVENUE between EAST 9 STREET and EAST 10 STREET, EAST 9 STREET between BROADWAY and 3 AVENUE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, LAFAYETTE STREET between BLEECKER STREET and EAST 4 STREET, EAST 4 STREET between LAFAYETTE STREET and BOWERY, BOND STREET between BROADWAY and LAFAYETTE STREET, DELANCEY between BOWERY and FORSYTHE STREET, BOWERY between RIVINGTON STREET and BROOME STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,"2, 3","5, 6, 9",Film,Feature,United States of America,"10002, 10003, 10012, 10013"
+603600,Rigging Permit,09/27/2021 07:00:00 AM,09/27/2021 07:00:00 PM,09/21/2021 10:52:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+603599,Rigging Permit,09/24/2021 07:00:00 AM,09/24/2021 07:00:00 PM,09/21/2021 10:51:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+603598,Rigging Permit,09/23/2021 07:00:00 AM,09/23/2021 07:00:00 PM,09/21/2021 10:49:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+603580,Shooting Permit,09/24/2021 06:00:00 AM,09/24/2021 08:00:00 PM,09/21/2021 09:20:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between FREEDOM DRIVE and WOODHAVEN BOULEVARD, 102 STREET between PARK LANE SOUTH and 85 AVENUE, PARK LANE SOUTH between 102 STREET and 101 STREET, PARK LANE SOUTH between 102 STREET and 104 STREET",Queens,"2, 5, 6, 82, 9","102, 104, 108, 75",Television,Children,United States of America,"11375, 11378, 11385, 11415, 11418, 11421"
+603578,Shooting Permit,09/23/2021 06:30:00 AM,09/23/2021 09:30:00 PM,09/21/2021 09:05:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between NEWEL STREET and DIAMOND STREET, NEWEL STREET between CALYER STREET and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+603568,Shooting Permit,09/24/2021 12:00:00 PM,09/24/2021 07:00:00 PM,09/20/2021 11:25:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",JACKSON AVENUE between 47 ROAD and 47 AVENUE,Queens,2,108,Student,Student Film,United States of America,11101
+603534,Shooting Permit,09/23/2021 10:00:00 AM,09/24/2021 01:00:00 AM,09/20/2021 05:12:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 52 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Episodic series,United States of America,10019
+603531,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 10:00:00 AM,09/20/2021 04:59:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 123 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,9,26,Film,Feature,United States of America,10027
+603529,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 06:00:00 PM,09/20/2021 04:54:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 123 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,9,26,Film,Feature,United States of America,10027
+603523,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 09:00:00 PM,09/20/2021 04:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 29 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+603518,Theater Load in and Load Outs,09/21/2021 12:00:00 AM,09/28/2021 11:00:00 PM,09/20/2021 04:35:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between BROADWAY and 7 AVENUE, WEST 51 STREET between BROADWAY and 7 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 50 STREET and WEST 51 STREET, WEST 50 STREET between 8 AVENUE and BROADWAY",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+603511,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 09:00:00 PM,09/20/2021 04:14:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between ZULETTE AVENUE and WELLMAN AVENUE, ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, WELLMAN AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and DUDLEY AVENUE, ERICSON PLACE between MAITLAND AVENUE and ROEBLING AVENUE, HUTCHINSON RIVER PKWY E between E TREMONT AVE and ROEBLING PL, EAST TREMONT AVENUE between LA SALLE AVENUE and MAYFLOWER AVENUE, EAST TREMONT AVENUE between PHILIP AVENUE and RANDALL AVENUE, EAST TREMONT AVENUE between RANDALL AVENUE and SCHLEY AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, E TREMONT AVE between SCHLEY AVENUE and CROSS BRONX EXPY, CROSS BRONX EXPY between REVERE AVE and E TREMONT AVE",Bronx,10,45,Television,Cable-episodic,United States of America,"10461, 10465"
+603507,Shooting Permit,09/21/2021 07:30:00 AM,09/21/2021 08:00:00 PM,09/20/2021 04:08:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between DORCHESTER ROAD and DITMAS AVENUE, FLATBUSH AVENUE between VANDERVEER PLACE and AVENUE D, CLARENDON ROAD between FLATBUSH AVENUE and EAST 22 STREET, DORCHESTER ROAD between FLATBUSH AVENUE and EAST 21 STREET, DORCHESTER ROAD between EAST 21 STREET and OCEAN AVENUE, EAST 21 STREET between CORTELYOU ROAD and DORCHESTER ROAD, E 22 STREET between DITMAS AVENUE and DEAD END STREET, DITMAS AVENUE between FLATBUSH AVENUE and EAST 22 STREET, CLARENDON ROAD between EAST 23 STREET and EAST 22 STREET, CORTELYOU ROAD between EAST 16 STREET and EAST 17 STREET, CORTELYOU ROAD between EAST 17 STREET and EAST 18 STREET, CORTELYOU ROAD between EAST 18 STREET and EAST 19 STREET, CORTELYOU ROAD between EAST 19 STREET and OCEAN AVENUE, CORTELYOU ROAD between OCEAN AVENUE and EAST 21 STREET, EAST 16 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, OCEAN AVENUE between ALBERMARLE ROAD and BEVERLY ROAD, OCEAN AVENUE between BEVERLY ROAD and CORTELYOU ROAD, OCEAN AVENUE between CHURCH AVENUE and ALBERMARLE ROAD, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+603501,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 07:00:00 PM,09/20/2021 03:43:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 89 STREET and EAST 91 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10128
+603498,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 11:00:00 PM,09/20/2021 03:34:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+603482,Shooting Permit,09/23/2021 11:00:00 AM,09/24/2021 02:00:00 AM,09/20/2021 02:50:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","DAVIS COURT between PEARSON PLACE and 49 AVENUE, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, PEARSON PLACE between DAVIS COURT and 27 STREET, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+603477,Shooting Permit,09/21/2021 08:00:00 AM,09/22/2021 06:00:00 AM,09/20/2021 02:40:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,"14, 18",Theater,Theater,United States of America,10036
+603475,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 09:00:00 PM,09/20/2021 02:38:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+603473,Theater Load in and Load Outs,10/18/2021 12:01:00 AM,10/19/2021 06:00:00 AM,09/20/2021 02:32:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+603472,Theater Load in and Load Outs,10/17/2021 12:01:00 AM,10/18/2021 06:00:00 AM,09/20/2021 02:31:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+603471,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 09:00:00 PM,09/20/2021 02:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+603468,Shooting Permit,10/04/2021 08:00:00 AM,10/04/2021 05:00:00 PM,09/20/2021 02:18:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, WEST 42 STREET between 5 AVENUE and 6 AVENUE, LAGUARDIA PLACE between WEST 3 STREET and WASHINGTON SQUARE SOUTH, WEST 55 STREET between BROADWAY and 8 AVENUE",Manhattan,"2, 4, 5, 7","14, 18, 20, 6",Commercial,Industrial/Corporate,United States of America,"10012, 10019, 10023, 10036"
+603461,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 10:00:00 PM,09/20/2021 01:57:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+603459,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 09:00:00 PM,09/20/2021 01:47:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 87 STREET, COLUMBUS AVENUE between WEST 84 STREET and WEST 90 STREET, WEST 86 STREET between CENTRAL PARK WEST and AMSTERDAM AVENUE, WEST 86 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 84 STREET and WEST 88 STREET, WEST 87 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 87 STREET",Manhattan,"64, 7","20, 22, 24",Film,Feature,United States of America,10024
+603452,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 11:00:00 PM,09/20/2021 01:38:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+603449,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 05:00:00 PM,09/20/2021 01:29:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 74 STREET and EAST 79 STREET, EAST 76 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10075"
+603448,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 09:00:00 PM,09/20/2021 01:22:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between RIVINGTON STREET and DELANCEY STREET, DELANCEY STREET between NORFOLK STREET and SUFFOLK STREET, EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD",Manhattan,"14, 3","7, 70",Commercial,Commercial,United States of America,"10002, 11226"
+603447,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 10:00:00 PM,09/20/2021 01:19:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 37 STREET and 35 STREET, 4 AVENUE between 35 STREET and 36 STREET, 36 ST between 4 AVENUE and 5 AVENUE, 4 AVENUE between 50 STREET and 51 STREET, 4 AVENUE between 50 STREET and 51 STREET, 50 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between 46 STREET and 51 STREET",Brooklyn,7,72,Television,Pilot,United States of America,"11220, 11232"
+603440,Shooting Permit,09/23/2021 01:30:00 PM,09/24/2021 04:30:00 AM,09/20/2021 01:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET, THOMPSON STREET between SPRING STREET and PRINCE STREET, WEST BROADWAY between SPRING STREET and WEST HOUSTON STREET, WEST HOUSTON STREET between SULLIVAN STREET and WOOSTER STREET, SULLIVAN STREET between PRINCE STREET and WEST HOUSTON STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, SULLIVAN STREET between WASHINGTON SQUARE SOUTH and WEST 3 STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,10012
+603436,Theater Load in and Load Outs,09/25/2021 06:00:00 AM,09/25/2021 12:00:00 PM,09/20/2021 12:57:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+603434,Shooting Permit,09/23/2021 02:00:00 PM,09/23/2021 11:00:00 PM,09/20/2021 12:55:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+603432,Shooting Permit,09/24/2021 06:00:00 AM,09/24/2021 11:00:00 PM,09/20/2021 12:55:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+603430,Shooting Permit,09/22/2021 07:30:00 PM,09/22/2021 10:00:00 PM,09/20/2021 12:45:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",11 AVENUE between WEST 20 STREET and WEST 21 STREET,Manhattan,4,10,Television,Episodic series,United States of America,10011
+603426,Shooting Permit,09/23/2021 06:00:00 AM,09/23/2021 11:00:00 PM,09/20/2021 12:36:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+603418,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 11:00:00 PM,09/20/2021 12:27:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+603403,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 10:00:00 PM,09/20/2021 11:50:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 87 STREET, COLUMBUS AVENUE between WEST 84 STREET and WEST 90 STREET, WEST 86 STREET between CENTRAL PARK WEST and AMSTERDAM AVENUE, WEST 86 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 85 STREET and WEST 88 STREET, WEST 87 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 79 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 79 STREET and WEST 87 STREET",Manhattan,"64, 7","20, 22, 24",Film,Feature,United States of America,10024
+603400,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 10:00:00 PM,09/20/2021 11:38:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+603395,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 09:00:00 PM,09/20/2021 11:21:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between GRAND STREET and NORTH 1 STREET, WYTHE AVENUE between NORTH 1 STREET and GRAND STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE, NORTH 1 STREET between BERRY STREET and BEDFORD AVENUE, GRAND STREET between WYTHE AVENUE and BERRY STREET, DRIGGS AVENUE between LORIMER STREET and NORTH 12 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222, 11249"
+603388,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 07:00:00 PM,09/20/2021 11:07:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",VARET STREET between WHITE STREET and BOGART STREET,Brooklyn,1,90,Television,Episodic series,United States of America,11206
+603386,Shooting Permit,09/27/2021 06:00:00 AM,09/27/2021 09:00:00 PM,09/20/2021 11:02:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 33 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 31 STREET and WEST 29 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE",Manhattan,5,14,Commercial,Commercial,United States of America,10001
+603372,Shooting Permit,09/23/2021 01:00:00 PM,09/24/2021 03:00:00 AM,09/20/2021 10:05:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+603368,Shooting Permit,09/24/2021 02:00:00 PM,09/25/2021 04:00:00 AM,09/20/2021 09:51:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+603364,Theater Load in and Load Outs,10/20/2021 12:01:00 AM,10/21/2021 06:00:00 AM,09/20/2021 09:11:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603363,Theater Load in and Load Outs,10/19/2021 12:01:00 AM,10/19/2021 11:59:00 PM,09/20/2021 09:06:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603361,Theater Load in and Load Outs,10/18/2021 12:01:00 AM,10/18/2021 11:59:00 PM,09/20/2021 09:02:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603360,Theater Load in and Load Outs,10/18/2021 12:01:00 AM,10/24/2021 06:00:00 AM,09/20/2021 08:57:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+603343,Shooting Permit,09/24/2021 09:00:00 AM,09/24/2021 09:00:00 PM,09/19/2021 09:58:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between GRAND STREET and MAUJER STREET, LORIMER STREET between MAUJER STREET and TEN EYCK STREET",Brooklyn,1,90,WEB,Not Applicable,United States of America,"11206, 11211"
+603338,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 07:00:00 PM,09/19/2021 09:23:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOBBIN STREET between NORMAN AVENUE and MESEROLE AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET",Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+603294,Theater Load in and Load Outs,10/16/2021 12:01:00 AM,10/16/2021 11:59:00 PM,09/18/2021 08:59:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603293,Theater Load in and Load Outs,10/15/2021 12:01:00 AM,10/15/2021 11:59:00 PM,09/18/2021 08:55:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603292,Theater Load in and Load Outs,10/14/2021 12:01:00 AM,10/14/2021 11:59:00 PM,09/18/2021 08:50:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603290,Theater Load in and Load Outs,10/12/2021 12:01:00 AM,10/13/2021 06:00:00 AM,09/18/2021 08:46:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603289,Theater Load in and Load Outs,10/11/2021 12:01:00 AM,10/11/2021 11:59:00 PM,09/18/2021 08:41:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603287,Theater Load in and Load Outs,10/10/2021 12:01:00 AM,10/10/2021 11:59:00 PM,09/18/2021 08:37:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603285,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/09/2021 06:00:00 AM,09/18/2021 08:30:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603282,Theater Load in and Load Outs,10/07/2021 12:01:00 AM,10/07/2021 11:59:00 PM,09/18/2021 08:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603281,Theater Load in and Load Outs,10/03/2021 12:01:00 AM,10/04/2021 06:00:00 AM,09/18/2021 08:11:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+603212,Shooting Permit,09/24/2021 06:00:00 AM,09/25/2021 11:59:00 PM,09/17/2021 08:03:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+603176,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 09:00:00 PM,09/17/2021 04:05:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between LAFAYETTE AVENUE and LEXINGTON AVENUE, NEWTOWN AVENUE between 31 STREET and 32 STREET, NEWTOWN AVENUE between 32 STREET and 30 AVENUE, 30 AVENUE between 32 STREET and 33 STREET, 32 STREET between 30 AVENUE and 31 AVENUE, SPRINGFIELD BLVD between HORACE HARDING EXPRESSWAY and 64TH AVE, HORACE HARDING EXPY between SPRINGFIELD BLVD and 224 ST",Brooklyn,"1, 11, 3, 4","111, 114, 81, 83",Commercial,Commercial,United States of America,"11102, 11221, 11364"
+603174,Shooting Permit,09/22/2021 06:00:00 AM,09/22/2021 10:00:00 PM,09/17/2021 03:58:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+603169,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 09:00:00 PM,09/17/2021 03:48:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, FIRST AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 26 STREET between SECOND AVENUE and THIRD AVENUE, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, EAST 26 STREET between FDR DRIVE and 1 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+603150,Shooting Permit,09/20/2021 08:00:00 AM,09/20/2021 10:00:00 PM,09/17/2021 02:52:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATTS STREET between HUDSON STREET and VARICK STREET, VARICK STREET between WATTS STREET and CANAL STREET, GRAND STREET between VARICK STREET and 6 AVENUE, CANAL STREET between GREENWICH STREET and WASHINGTON STREET, GREENWICH STREET between CANAL STREET and WATTS STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET, GREENWICH STREET between VESTRY STREET and LAIGHT STREET, GREENWICH STREET between LAIGHT STREET and HUBERT STREET, WATTS STREET between CANAL STREET and GREENWICH STREET, DESBROSSES STREET between HUDSON STREET and GREENWICH STREET, VESTRY STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+603142,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 11:00:00 PM,09/17/2021 02:34:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+603130,Shooting Permit,09/22/2021 06:30:00 AM,09/22/2021 10:00:00 PM,09/17/2021 02:04:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+603129,Shooting Permit,09/23/2021 06:00:00 AM,09/23/2021 10:00:00 PM,09/17/2021 02:03:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 11 AVENUE and 10 AVENUE, WEST 37 STREET between 10 AVENUE and DYER AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10018
+603128,Shooting Permit,09/23/2021 06:00:00 AM,09/24/2021 12:30:00 AM,09/17/2021 01:57:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between FRANKLIN STREET and WHITE STREET, WHITE STREET between CHURCH STREET and BROADWAY, WALKER STREET between CHURCH STREET and BROADWAY, WEST STREET between NORTH MOORE STREET and CHAMBERS STREET, WEST STREET between HUBERT STREET and LAIGHT STREET, BATTERY PLACE between WEST THAMES STREET and THIRD PLACE, BATTERY PLACE between THIRD PLACE and FIRST PLACE, BATTERY PLACE between FIRST PLACE and LITTLE WEST STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10013, 10280, 10282"
+603114,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 11:00:00 PM,09/17/2021 01:25:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET, THOMPSON STREET between SPRING STREET and PRINCE STREET, WEST BROADWAY between SPRING STREET and WEST HOUSTON STREET, WEST HOUSTON STREET between SULLIVAN STREET and WOOSTER STREET, SULLIVAN STREET between PRINCE STREET and WEST HOUSTON STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, SULLIVAN STREET between WEST 3 STREET and WASHINGTON SQUARE SOUTH",Manhattan,2,"1, 6",Film,Feature,United States of America,10012
+603110,Shooting Permit,09/21/2021 06:30:00 AM,09/21/2021 09:00:00 PM,09/17/2021 01:12:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","BELMONT AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, PITKIN AVENUE between WILLIAMS AVENUE and GEORGIA AVENUE, WILLIAMS AVENUE between PITKIN AVENUE and BELMONT AVENUE, ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, SHEFFIELD AVENUE between PITKIN AVENUE and BELMONT AVENUE",Brooklyn,5,75,Television,Episodic series,United States of America,11207
+603102,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 10:00:00 PM,09/17/2021 12:36:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+603100,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 06:00:00 PM,09/17/2021 12:26:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 35 STREET and 37 STREET, GREENPOINT AVENUE between HUNTERS POINT AVENUE and 37 STREET",Queens,"1, 2","108, 114",Film,Feature,United States of America,11101
+603099,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 11:00:00 PM,09/17/2021 12:18:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+603095,Shooting Permit,09/21/2021 08:00:00 AM,09/21/2021 09:00:00 PM,09/17/2021 11:54:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATTS STREET between HUDSON STREET and VARICK STREET, VARICK STREET between WATTS STREET and CANAL STREET, GRAND STREET between VARICK STREET and 6 AVENUE, CANAL STREET between GREENWICH STREET and WASHINGTON STREET, GREENWICH STREET between CANAL STREET and WATTS STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET, GREENWICH STREET between VESTRY STREET and LAIGHT STREET, GREENWICH STREET between LAIGHT STREET and HUBERT STREET, WATTS STREET between CANAL STREET and GREENWICH STREET, DEBROSSES STREET between HUDSON STREET and GREENWICH STREET, VESTRY STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,"1, 2",1,Television,Episodic series,United States of America,10013
+603089,Shooting Permit,09/21/2021 08:00:00 AM,09/21/2021 11:00:00 PM,09/17/2021 11:39:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HOYT STREET and 3 AVENUE, ASHLAND PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, ROCKWELL PLACE between LAFAYETTE AVENUE and FULTON STREET, ST FELIX STREET between FULTON STREET and LAFAYETTE AVENUE",Brooklyn,2,"84, 88",Television,Pilot,United States of America,11217
+603082,Shooting Permit,09/22/2021 12:00:00 PM,09/23/2021 02:00:00 AM,09/17/2021 11:01:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+603080,Shooting Permit,09/21/2021 08:00:00 AM,09/21/2021 08:00:00 PM,09/17/2021 10:53:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+603076,Shooting Permit,09/29/2021 07:00:00 AM,09/29/2021 09:00:00 PM,09/17/2021 10:39:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+603073,Shooting Permit,09/28/2021 07:00:00 AM,09/28/2021 09:00:00 PM,09/17/2021 10:27:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+603064,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 10:00:00 PM,09/17/2021 10:04:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+603060,Shooting Permit,09/22/2021 08:00:00 AM,09/23/2021 12:00:00 AM,09/17/2021 09:52:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between FLUSHING AVENUE and GRAND AVENUE, FLUSHING AVENUE between 54 PLACE and 54 STREET, 54 STREET between NURGE AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between 54 PLACE and 53 STREET",Queens,5,104,Television,Episodic series,United States of America,11378
+603043,Shooting Permit,09/20/2021 10:00:00 AM,09/20/2021 11:59:00 PM,09/17/2021 01:10:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and GRATTAN STREET, EAST BROADWAY between PIKE STREET and CLINTON STREET, RUTGERS STREET between EAST BROADWAY and HENRY STREET",Manhattan,"1, 3","7, 90",Film,Feature,United States of America,"10002, 11237"
+602996,Shooting Permit,09/18/2021 07:00:00 AM,09/18/2021 10:00:00 PM,09/16/2021 04:53:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602986,Shooting Permit,09/22/2021 11:00:00 AM,09/22/2021 10:00:00 PM,09/16/2021 03:59:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 9 STREET and NORTH 10 STREET, NORTH 10 STREET between BERRY STREET and WYTHE AVENUE, NORTH 10 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11249
+602979,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 07:00:00 PM,09/16/2021 03:51:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 5 STREET and ST MARKS PLACE, EAST 6 STREET between COOPER SQUARE and TARAS SHEVCHENKO PLACE, SOUTH STREET between PIKE SLIP and RUTGERS SLIP",Manhattan,"0, 3","1, 5, 7, 9",Commercial,Commercial,United States of America,"10002, 10003"
+602975,Shooting Permit,09/22/2021 09:00:00 AM,09/23/2021 01:00:00 AM,09/16/2021 03:39:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+602974,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 10:00:00 PM,09/16/2021 03:38:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIONEER STREET between IMLAY STREET and VAN BRUNT STREET, VAN BRUNT STREET between PIONEER STREET and VERONA STREET, IMLAY STREET between PIONEER STREET and VERONA STREET",Brooklyn,6,76,Commercial,Promo,United States of America,11231
+602972,Shooting Permit,09/21/2021 08:00:00 AM,09/21/2021 11:30:00 PM,09/16/2021 03:36:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, BRIDGE STREET between STATE STREET and WHITEHALL STREET, PEARL STREET between WHITEHALL STREET and STATE STREET, WATER STREET between BROAD STREET and COENTIES SLIP, BROADWAY between MORRIS STREET and BATTERY PLACE, PARK ROW between ANN STREET and BEEKMAN STREET, NASSAU STREET between ANN STREET and BEEKMAN STREET, GOLD STREET between FULTON STREET and FRANKFORT STREET, FULTON STREET between GOLD STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between PINE STREET and MAIDEN LANE",Brooklyn,1,"1, 94",Television,Cable-episodic,United States of America,"10004, 10005, 10038, 11222"
+602956,Shooting Permit,09/21/2021 11:00:00 AM,09/22/2021 03:00:00 AM,09/16/2021 03:06:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, DRIGGS AVENUE between UNION AVENUE and LORIMER STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, BAYARD STREET between UNION AVENUE and LEONARD STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+602945,Shooting Permit,09/21/2021 06:00:00 PM,09/22/2021 05:00:00 AM,09/16/2021 02:45:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","RENWICK STREET between SPRING STREET and CANAL STREET, CANAL STREET between GREENWICH STREET and RENWICK STREET",Manhattan,"1, 2",1,WEB,Not Applicable,United States of America,10013
+602931,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 09:00:00 PM,09/16/2021 02:09:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602930,Shooting Permit,09/20/2021 03:00:00 AM,09/20/2021 08:00:00 PM,09/16/2021 02:05:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between BERRY STREET and WYTHE AVENUE, NORTH 6 STREET between BERRY STREET and BEDFORD AVENUE, BERRY STREET between NORTH 6 STREET and NORTH 5 STREET, MULBERRY STREET between MOSCO STREET and WORTH STREET, CHATHAM SQUARE between WORTH STREET and DOYER STREET, BOWERY between DOYER STREET and PELL STREET",Brooklyn,"1, 3","5, 94",WEB,Not Applicable,United States of America,"10002, 10013, 10038, 11249"
+602929,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 09:00:00 PM,09/16/2021 02:03:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602925,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 09:00:00 PM,09/16/2021 01:57:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET, THOMPSON STREET between SPRING STREET and PRINCE STREET, WEST BROADWAY between SPRING STREET and WEST HOUSTON STREET, WEST HOUSTON STREET between SULLIVAN STREET and WOOSTER STREET, SULLIVAN STREET between PRINCE STREET and WEST HOUSTON STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, SULLIVAN STREET between WEST 3 STREET and WASHINGTON SQUARE SOUTH",Manhattan,2,"1, 6",Film,Feature,United States of America,10012
+602923,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 10:00:00 PM,09/16/2021 01:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 56 STREET and 57 STREET, 58 STREET between 4 AVENUE and 5 AVENUE, 57 STREET between 2 AVENUE and 3 AVENUE, 4 AVENUE between 56 STREET and 60 STREET, 5 AVENUE between 56 STREET and 60 STREET, 57 STREET between 4 AVENUE and 5 AVENUE",Brooklyn,7,72,Television,Pilot,United States of America,"11220, 11232"
+602922,Shooting Permit,09/19/2021 07:00:00 AM,09/19/2021 08:00:00 PM,09/16/2021 01:46:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between MCGUINNESS BOULEVARD and PROVOST STREET, MCGUINNESS BOULEVARD between PAIDGE AVENUE and CLAY STREET",Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+602915,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 11:00:00 PM,09/16/2021 01:07:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between PARK LANE SOUTH and WOODHAVEN BOULEVARD, WEST 15 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, SURF AVENUE between WEST 15 STREET and STILLWELL AVENUE",Queens,"13, 5, 6, 82, 9","102, 60, 75",Commercial,Commercial,United States of America,"11224, 11375, 11385, 11415, 11421"
+602912,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 06:30:00 PM,09/16/2021 12:55:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 4 STREET between BEDFORD AVENUE and BERRY STREET, NORTH 4 STREET between BERRY STREET and WYTHE AVENUE, NORTH 4 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 4 STREET and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE, WYTHE AVENUE between NORTH 4 STREET and NORTH 5 STREET, NORTH 5 STREET between BERRY STREET and WYTHE AVENUE, SOUTH 4 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 4 STREET between BERRY STREET and WYTHE AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11249"
+602896,Shooting Permit,09/21/2021 06:00:00 AM,09/22/2021 12:00:00 AM,09/16/2021 12:08:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, 54 STREET between FLUSHING AVENUE and GRAND AVENUE, 54 STREET between FLUSHING AVENUE and NURGE AVENUE, FLUSHING AVENUE between 54 PLACE and 54 STREET",Brooklyn,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11378"
+602887,Shooting Permit,09/20/2021 07:00:00 AM,09/21/2021 02:00:00 AM,09/16/2021 11:55:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602884,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 10:00:00 PM,09/16/2021 11:44:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+602878,Theater Load in and Load Outs,09/22/2021 12:01:00 AM,09/26/2021 11:59:00 PM,09/16/2021 11:25:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602877,Shooting Permit,09/20/2021 10:00:00 AM,09/20/2021 09:00:00 PM,09/16/2021 11:21:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between FRONT STREET and YORK STREET, WASHINGTON STREET between YORK STREET and RED CROSS PLACE",Manhattan,"1, 2","1, 5, 84",Documentary,Not Applicable,United States of America,"10002, 10038, 11201"
+602840,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 10:00:00 PM,09/16/2021 08:40:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between FERRIS STREET and CONOVER STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between VAN DYKE STREET and SULLIVAN STREET, COFFEY STREET between FERRIS STREET and VAN BRUNT STREET, SMITH STREET between HALLECK STREET and BAY STREET, LORRAINE STREET between OTSEGO STREET and COLUMBIA STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+602819,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 07:00:00 PM,09/15/2021 09:43:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 91 STREET and EAST 90 STREET, MADISON AVENUE between EAST 91 STREET and EAST 90 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10128
+602806,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 11:59:00 PM,09/15/2021 08:47:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+602790,Shooting Permit,09/21/2021 12:00:00 PM,09/22/2021 02:00:00 AM,09/15/2021 06:43:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+602773,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 10:00:00 PM,09/15/2021 05:11:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","158 STREET between 115 ROAD and 116 AVENUE, 116 AVENUE between BARRON STREET and 160 STREET, 116 AVENUE between 158 STREET and 159 STREET, 157 STREET between 115 DRIVE and FOCH BOULEVARD, FOCH BOULEVARD between 157 STREET and BARRON STREET, BAISLEY BOULEVARD between 155 STREET and LAKEVIEW LANE",Queens,12,113,Television,Cable-episodic,United States of America,11434
+602767,Shooting Permit,09/17/2021 09:00:00 AM,09/17/2021 10:00:00 PM,09/15/2021 04:46:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between VERNON BOULEVARD and 11 STREET, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, VERNON BOULEVARD between 45 ROAD and 46 AVENUE, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 45 ROAD between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 11 STREET between 44 AVENUE and 44 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+602755,Shooting Permit,09/20/2021 11:00:00 AM,09/21/2021 01:00:00 AM,09/15/2021 04:16:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODWARD AVENUE between STARR STREET and STANHOPE STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, STANHOPE STREET between WOODWARD AVENUE and FAIRVIEW AVENUE, STANHOPE STREET between FAIRVIEW AVENUE and GRANDVIEW AVENUE, SENECA AVENUE between GREENE AVENUE and BLEECKER STREET, GREENE AVENUE between SENECA AVENUE and CYPRESS AVENUE, BLEECKER ST between SENECA AVENUE and CYPRESS AVENUE, BLEECKER STREET between SENECA AVENUE and ONDERDONK AVENUE, CYPRESS AVENUE between GREENE AVENUE and BLEECKER STREET, MENAHAN STREET between SENECA AVENUE and CYPRESS AVENUE",Queens,"4, 5","104, 83",Television,Cable-episodic,United States of America,"11237, 11385"
+602753,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 11:00:00 PM,09/15/2021 04:03:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+602736,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 09:00:00 PM,09/15/2021 03:24:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602735,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 09:00:00 PM,09/15/2021 03:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602714,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 09:00:00 PM,09/15/2021 02:30:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BLVD UNDERPASS between 42 STREET and 43 STREET, 43 STREET between QUEENS BOULEVARD and 47 AVENUE, QUEENS BOULEVARD between 43 STREET and 44 STREET, 44 STREET between QUEENS BOULEVARD and 47 AVENUE, 42 STREET between QUEENS BOULEVARD and 47 AVENUE, QUEENS BOULEVARD between 41 STREET and 42 STREET, 41 STREET between QUEENS BOULEVARD and 47 AVENUE, 47 AVENUE between 42 STREET and 43 STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Film,Feature,United States of America,"11101, 11104"
+602707,Shooting Permit,09/20/2021 06:00:00 PM,09/21/2021 05:00:00 AM,09/15/2021 02:00:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","RENWICK STREET between CANAL STREET and SPRING STREET, CANAL STREET between RENWICK STREET and GREENWICH STREET",Manhattan,"1, 2",1,WEB,Not Applicable,United States of America,10013
+602698,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 10:00:00 PM,09/15/2021 01:39:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602693,Shooting Permit,09/17/2021 01:00:00 PM,09/18/2021 03:30:00 AM,09/15/2021 01:26:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between BEARD STREET and REED STREET, VAN BRUNT STREET between DEAD END and COFFEY STREET, BEARD STREET between RICHARDS STREET and VAN BRUNT STREET, VAN DYKE STREET between FERRIS STREET and VAN BRUNT STREET, CONOVER STREET between REED STREET and DEAD END, CONOVER STREET between VAN DYKE STREET and BEARD STREET, RICHARDS STREET between VERONA STREET and VISITATION PLACE",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+602667,Theater Load in and Load Outs,10/15/2021 12:01:00 AM,10/16/2021 11:59:00 PM,09/15/2021 11:57:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+602665,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 09:00:00 PM,09/15/2021 11:50:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602662,Theater Load in and Load Outs,09/28/2021 06:01:00 AM,10/11/2021 07:00:00 AM,09/15/2021 11:37:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+602661,Shooting Permit,09/24/2021 07:00:00 AM,09/24/2021 11:00:00 PM,09/15/2021 11:35:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+602658,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 09:00:00 PM,09/15/2021 11:31:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",97 STREET between MARINE AVENUE and SHORE ROAD,Brooklyn,10,68,WEB,Not Applicable,United States of America,11209
+602657,Shooting Permit,09/23/2021 07:00:00 AM,09/23/2021 11:00:00 PM,09/15/2021 11:28:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+602654,Shooting Permit,09/22/2021 07:00:00 AM,09/22/2021 11:00:00 PM,09/15/2021 11:19:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+602648,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 10:00:00 PM,09/15/2021 11:12:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+602644,Shooting Permit,09/20/2021 06:00:00 AM,09/20/2021 10:00:00 PM,09/15/2021 10:59:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+602640,Shooting Permit,09/20/2021 01:00:00 AM,09/20/2021 12:00:00 PM,09/15/2021 10:50:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+602637,Shooting Permit,09/19/2021 06:00:00 AM,09/19/2021 03:00:00 PM,09/15/2021 10:42:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 23 STREET between 1 AVENUE and AVENUE C, PARK AVENUE SOUTH between EAST 30 STREET and EAST 31 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET",Manhattan,"2, 5, 6, 8","108, 114, 13, 14, 19",Television,Episodic series,United States of America,"10010, 10016, 10022, 10044, 10065, 11101"
+602634,Shooting Permit,09/19/2021 01:00:00 AM,09/19/2021 11:59:00 PM,09/15/2021 10:40:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+602629,Shooting Permit,09/18/2021 10:00:00 AM,09/18/2021 11:59:00 PM,09/15/2021 10:00:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+602607,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 10:00:00 PM,09/15/2021 09:14:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between FERRIS STREET and CONOVER STREET, SMITH STREET between HALLECK STREET and BAY STREET, LORRAINE STREET between OTSEGO STREET and COLUMBIA STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+602586,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 07:00:00 PM,09/15/2021 07:34:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 90 STREET and EAST 91 STREET, FIFTH AVENUE between EAST 90 STREET and EAST 91 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,10128
+602580,Shooting Permit,09/17/2021 07:00:00 AM,09/17/2021 01:00:00 PM,09/15/2021 03:26:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",FULTON STREET between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,"11217, 11238"
+602579,Shooting Permit,09/17/2021 07:00:00 AM,09/17/2021 07:00:00 PM,09/15/2021 02:57:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, ST JAMES PLACE between GATES AVENUE and GREENE AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+602561,Shooting Permit,09/17/2021 07:00:00 AM,09/17/2021 11:59:00 PM,09/14/2021 11:37:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between BROADWAY and 8 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between BROADWAY and 6 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,"14, 18",Film,Feature,United States of America,"10019, 10036"
+602538,Shooting Permit,09/17/2021 10:00:00 AM,09/18/2021 02:00:00 AM,09/14/2021 07:19:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",ARTHUR KILL ROAD between CHEMICAL LANE and INDUSTRIAL LOOP EAST,Staten Island,3,123,Television,Cable-episodic,United States of America,10309
+602530,Shooting Permit,09/24/2021 08:00:00 AM,09/24/2021 11:59:00 PM,09/14/2021 06:30:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and GRATTAN STREET",Brooklyn,1,90,Film,Feature,United States of America,11237
+602529,Shooting Permit,09/23/2021 08:00:00 AM,09/23/2021 11:59:00 PM,09/14/2021 06:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, PORTER AVENUE between GRATTAN STREET and JOHNSON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11237
+602527,Shooting Permit,09/22/2021 10:00:00 AM,09/23/2021 02:00:00 AM,09/14/2021 06:22:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and KENT AVENUE, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, BERRY STREET between NORTH 12 STREET and NORTH 13 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+602526,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 11:59:00 PM,09/14/2021 06:21:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, PORTER AVENUE between GRATTAN STREET and JOHNSON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11237
+602525,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 10:00:00 PM,09/14/2021 06:16:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, PORTER AVENUE between GRATTAN STREET and JOHNSON AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11237
+602506,Shooting Permit,09/23/2021 11:00:00 AM,09/24/2021 03:00:00 AM,09/14/2021 05:06:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between 85 AVENUE and 114 STREET, 85 AVENUE between 112 STREET and 114 STREET, 113 STREET between 84 AVENUE and 85 AVENUE, 84 AVENUE between 112 STREET and 113 STREET, 113 STREET between 85 AVENUE and MYRTLE AVENUE, 114 STREET between 85 AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between 114 STREET and 115 STREET, 114 STREET between MYRTLE AVENUE and 86 AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, 102 STREET between 85 AVENUE and 85 ROAD",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+602500,Shooting Permit,09/19/2021 06:00:00 AM,09/19/2021 03:00:00 PM,09/14/2021 04:55:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY STREET between BRIDGE STREET and DUFFIELD STREET, WILLOUGHBY STREET between BRIDGE STREET and LAWRENCE STREET, BRIDGE STREET between WILLOUGHBY STREET and FULTON STREET, DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+602486,Shooting Permit,09/17/2021 08:00:00 AM,09/17/2021 11:00:00 PM,09/14/2021 04:11:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 56 STREET and 60 STREET, 5 AVENUE between 56 STREET and 60 STREET, 57 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 50 STREET and 49 STREET",Brooklyn,7,72,Television,Pilot,United States of America,11220
+602485,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 11:00:00 PM,09/14/2021 04:04:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+602482,Shooting Permit,09/17/2021 10:00:00 AM,09/17/2021 11:30:00 PM,09/14/2021 03:59:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between CHAMBERS STREET and BARCLAY STREET, PARK ROW between BEEKMAN STREET and ANN STREET, BROADWAY between MURRAY STREET and PARK PLACE",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10038, 10279"
+602477,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 09:00:00 PM,09/14/2021 03:48:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between RIVER TERRACE and NORTH END AVENUE, CHAMBERS STREET between NORTH END AVENUE and WEST STREET, RIVER TERRACE between CHAMBERS STREET and WARREN STREET, WARREN STREET between RIVER TERRACE and NORTH END AVENUE, WARREN STREET between NORTH END AVENUE and WEST STREET, MURRAY STREET between RIVER TERRACE and NORTH END AVENUE, WEST STREET between CHAMBERS STREET and HARRISON STREET, WEST STREET between HARRISON STREET and NORTH MOORE STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET, GREENWICH STREET between NORTH MOORE STREET and HARRISON STREET, HARRISON STREET between GREENWICH STREET and WEST STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10013, 10282"
+602458,Shooting Permit,09/15/2021 02:00:00 PM,09/15/2021 09:00:00 PM,09/14/2021 03:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 5 STREET between AVENUE A and AVENUE B,Manhattan,3,9,Film,Feature,United States of America,10009
+602447,Shooting Permit,09/18/2021 06:00:00 AM,09/18/2021 09:00:00 PM,09/14/2021 02:30:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between PIKE STREET and RUTGERS STREET, EAST BROADWAY between JEFFERSON STREET and CLINTON STREET",Manhattan,3,7,Film,Feature,United States of America,10002
+602433,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 11:00:00 PM,09/14/2021 01:50:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+602414,Shooting Permit,09/16/2021 08:00:00 AM,09/16/2021 01:00:00 PM,09/14/2021 01:00:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between LAFAYETTE STREET and CENTRE STREET, WORTH STREET between LAFAYETTE STREET and BROADWAY",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+602412,Theater Load in and Load Outs,10/14/2021 12:01:00 AM,10/17/2021 11:59:00 PM,09/14/2021 12:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602411,DCAS Prep/Shoot/Wrap Permit,09/16/2021 12:00:00 PM,09/16/2021 11:00:00 PM,09/14/2021 12:59:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CHURCH STREET between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+602410,Theater Load in and Load Outs,10/09/2021 12:01:00 AM,10/10/2021 06:00:00 AM,09/14/2021 12:55:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602409,Shooting Permit,09/17/2021 10:00:00 AM,09/17/2021 11:59:00 PM,09/14/2021 12:52:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET, MCGUINNESS BLVD between ASH STREET and EAGLE STREET, MANHATTAN AVENUE between ASH STREET and DEAD END, 11TH ST between 53 AVENUE and DEAD END",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+602407,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/08/2021 11:59:00 PM,09/14/2021 12:44:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602405,Shooting Permit,09/17/2021 04:00:00 PM,09/18/2021 07:00:00 AM,09/14/2021 12:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and GOLD STREET, SOUTH STREET between OLD SLIP and BROAD STREET, JOHN STREET between WATER STREET and PEARL STREET, JOHN STREET between FRONT STREET and SOUTH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038"
+602404,Theater Load in and Load Outs,10/07/2021 12:01:00 AM,10/07/2021 11:59:00 PM,09/14/2021 12:39:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602403,Theater Load in and Load Outs,10/06/2021 12:01:00 AM,10/06/2021 11:59:00 PM,09/14/2021 12:35:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602400,Theater Load in and Load Outs,10/01/2021 12:01:00 AM,10/02/2021 06:00:00 AM,09/14/2021 12:29:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+602392,Shooting Permit,09/17/2021 11:00:00 AM,09/18/2021 03:00:00 AM,09/14/2021 11:59:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 43 STREET between 8 AVENUE and 9 AVENUE, WEST 47 STREET between 11 AVENUE and 12 AVENUE, WEST 46 STREET between 11 AVENUE and 12 AVENUE, WEST 45 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,"14, 18",Television,Cable-episodic,United States of America,10036
+602388,Shooting Permit,09/18/2021 06:00:00 AM,09/18/2021 10:00:00 PM,09/14/2021 11:54:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between COOPER AVENUE and DORAN AVENUE, COOPER AVE between 82ND ST and 83RD ST",Queens,5,104,Television,Episodic series,United States of America,11385
+602385,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 10:00:00 PM,09/14/2021 11:46:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602375,Rigging Permit,09/16/2021 11:00:00 PM,09/17/2021 01:00:00 PM,09/14/2021 11:23:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and CONOVER STREET,Brooklyn,6,76,Television,Episodic series,United States of America,11231
+602354,Shooting Permit,09/16/2021 08:30:00 AM,09/16/2021 11:00:00 PM,09/14/2021 10:47:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","140 STREET between 14 AVENUE and 13 AVENUE, 141 STREET between 14 AVENUE and 15 AVENUE, 138 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET",Queens,7,109,Television,Episodic series,United States of America,"11356, 11357"
+602337,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 11:00:00 PM,09/14/2021 09:58:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON STREET between BAY STREET and LORRAINE STREET, BAY STREET between CLINTON STREET and COURT STREET, CLINTON STREET between BAY STREET and HALLECK STREET, CONOVER STREET between VAN DYKE STREET and SULLIVAN STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between VAN DYKE STREET and COFFEY STREET, DIKEMAN STREET between FERRIS STREET and CONOVER STREET, SMITH STREET between HALLECK STREET and BAY STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+602319,Shooting Permit,09/17/2021 09:00:00 AM,09/17/2021 11:00:00 PM,09/14/2021 07:52:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 STREET between 36 AVENUE and 35 AVENUE, 36 AVENUE between 12 STREET and 14 STREET, 11 STREET between 40 AVENUE and 38 AVENUE",Manhattan,"1, 8",114,Film,Feature,United States of America,"10044, 11101, 11106"
+602284,Shooting Permit,09/17/2021 07:00:00 AM,09/17/2021 08:00:00 PM,09/13/2021 07:11:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLY ROAD",Brooklyn,14,70,WEB,Not Applicable,United States of America,11218
+602283,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 07:00:00 PM,09/13/2021 07:05:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and CALYER STREET, MESEROLE AVENUE between LEONARD STREET and MANHATTAN AVENUE",Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+602282,Shooting Permit,09/16/2021 04:00:00 PM,09/17/2021 02:00:00 AM,09/13/2021 06:47:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARGARET CORBIN DRIVE between PARK DRIVE NORTH and W 190TH ST, CABRINI BLVD between FORT WASHINGTON AVE and W 190TH ST, FORT WASHINGTON AVENUE between CABRINI BOULEVARD and WEST 190 STREET",Manhattan,12,34,Television,Episodic series,United States of America,10040
+602279,Shooting Permit,09/21/2021 06:00:00 AM,09/21/2021 09:00:00 PM,09/13/2021 06:09:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","80 STREET between JUNIPER BLVD NORTH and JUNIPER BLVD SOUTH, 81 STREET between JUNIPER BLVD SOUTH and PENELOPE AVENUE",Queens,5,104,Television,Children,United States of America,11379
+602277,Theater Load in and Load Outs,09/17/2021 12:01:00 AM,09/19/2021 06:00:00 AM,09/13/2021 06:06:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between ROCKEFELLER PLAZA and 6 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+602270,DCAS Prep/Shoot/Wrap Permit,09/17/2021 05:00:00 PM,09/17/2021 08:30:00 PM,09/13/2021 05:45:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, LAFAYETTE STREET between DUANE STREET and READE STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+602264,Shooting Permit,09/15/2021 07:00:00 PM,09/16/2021 06:00:00 AM,09/13/2021 05:23:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 WEST 24TH STREET between 6TH AVENUE and BRODWAY, BROADWAY between WEST 24TH STREET and WEST 25TH STREET",Manhattan,5,13,Still Photography,Not Applicable,United States of America,10010
+602258,Shooting Permit,09/17/2021 04:00:00 PM,09/18/2021 08:00:00 AM,09/13/2021 04:48:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT WASHINGTON AVENUE between WEST 187 STREET and CABRINI BOULEVARD, FORT WASHINGTON AVENUE between CABRINI BOULEVARD and WEST 190 STREET, CABRINI BOULEVARD between FORT WASHINGTON AVENUE and WEST 190 STREET, WEST 181 STREET between PINEHURST AVENUE and FORT WASHINGTON AVENUE, WEST 181 STREET between FORT WASHINGTON AVENUE and BENNETT AVENUE, WEST 181 STREET between BENNETT AVENUE and WADSWORTH AVENUE, BROADWAY between WEST 182 STREET and WEST 181 STREET, BROADWAY between WEST 179 STREET and WEST 181 STREET, MARGARET CORBIN DRIVE between PARK DRIVE NORTH and w 190th st, BENNETT AVENUE between WEST 189 STREET and WEST 190 STREET",Manhattan,12,34,Television,Episodic series,United States of America,"10033, 10040"
+602255,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 11:00:00 AM,09/13/2021 04:25:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Variety,United States of America,10023
+602245,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 07:00:00 PM,09/13/2021 03:58:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",DOCK STREET between WATER STREET and FRONT STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+602243,Theater Load in and Load Outs,09/14/2021 05:00:00 AM,09/20/2021 11:59:00 PM,09/13/2021 03:50:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 8 AVENUE and BROADWAY,Manhattan,5,18,Theater,Theater,United States of America,10019
+602239,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 11:00:00 PM,09/13/2021 03:31:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+602233,Shooting Permit,09/15/2021 08:00:00 AM,09/15/2021 08:00:00 PM,09/13/2021 03:15:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",CARROLL STREET between ROCHESTER AVENUE and UTICA AVENUE,Brooklyn,9,71,Film,Feature,United States of America,11213
+602232,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 10:00:00 PM,09/13/2021 03:14:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and BROADWAY, VYSE AVENUE between EAST 173 STREET and EAST 174 STREET, SOUTHERN BLVD between BOSTON RD and E172ND ST, EAST 173 STREET between SOUTHERN BOULEVARD and MINFORD PLACE, HUDSON ST between WEST 12 STREET and WEST 10 STREET, HUDSON STREET between WEST 12 STREET and JANE STREET",Manhattan,"2, 3, 5","13, 42, 6",Commercial,Commercial,United States of America,"10010, 10014, 10460"
+602229,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 11:59:00 PM,09/13/2021 03:02:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between DUPONT STREET and EAGLE STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+602228,Shooting Permit,09/16/2021 09:00:00 AM,09/16/2021 11:00:00 PM,09/13/2021 02:58:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 76 STREET and EAST 79 STREET, EAST 79 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 72 STREET and EAST 75 STREET, EAST 73 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 79 STREET and EAST 74 STREET, EAST 78 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"64, 8","19, 22",Television,Pilot,United States of America,"10021, 10075"
+602219,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 10:00:00 PM,09/13/2021 02:30:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIONEER STREET between IMLAY STREET and VAN BRUNT STREET, VAN BRUNT STREET between PIONEER STREET and VERONA STREET, IMLAY STREET between PIONEER STREET and VERONA STREET",Brooklyn,6,76,Commercial,Promo,United States of America,11231
+602218,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/10/2021 06:00:00 AM,09/13/2021 02:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+602214,Theater Load in and Load Outs,10/07/2021 12:01:00 AM,10/07/2021 11:59:00 PM,09/13/2021 02:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+602213,Theater Load in and Load Outs,10/06/2021 12:01:00 AM,10/06/2021 11:59:00 PM,09/13/2021 02:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+602210,Theater Load in and Load Outs,10/02/2021 12:01:00 AM,10/03/2021 06:00:00 AM,09/13/2021 02:06:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+602208,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 11:00:00 PM,09/13/2021 01:50:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602203,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 11:00:00 PM,09/13/2021 01:27:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+602199,Shooting Permit,09/15/2021 08:00:00 AM,09/15/2021 11:00:00 PM,09/13/2021 01:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, WEST 58 STREET between BROADWAY and 7 AVENUE, 7 AVENUE between WEST 59 STREET and WEST 57 STREET",Manhattan,"5, 64","18, 22",Television,Pilot,United States of America,10019
+602196,Shooting Permit,09/15/2021 09:30:00 AM,09/15/2021 11:30:00 PM,09/13/2021 01:06:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, WEST 22 STREET between 9 AVENUE and 8 AVENUE, SPRING STREET between VARICK STREET and 6 AVENUE",Brooklyn,"1, 2, 3, 4, 5","1, 10, 13, 7, 90, 94",WEB,Not Applicable,United States of America,"10001, 10002, 10011, 10012, 10013, 11211, 11249"
+602192,Shooting Permit,09/17/2021 10:00:00 AM,09/18/2021 03:00:00 AM,09/13/2021 12:54:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 25 STREET between 5 AVENUE and 6 AVENUE, WEST 25 STREET between BROADWAY and 5 AVENUE, WEST 24 STREET between BROADWAY and 6 AVENUE, WEST 27 STREET between 5 AVENUE and 6 AVENUE, WEST 26 STREET between BROADWAY and 6 AVENUE, WEST 20 STREET between 6 AVENUE and 7 AVENUE, MADISON AVENUE between EAST 25 STREET and EAST 24 STREET, 6 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,"4, 5",13,Television,Episodic series,United States of America,"10001, 10010, 10011"
+602173,Shooting Permit,09/16/2021 02:00:00 PM,09/17/2021 04:00:00 AM,09/13/2021 12:18:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+602168,Shooting Permit,09/17/2021 09:00:00 AM,09/18/2021 12:00:00 AM,09/13/2021 12:09:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUDSON STREET between BANK STREET and WEST 11 STREET, HUDSON STREET between WEST 11 STREET and PERRY STREET, HUDSON STREET between CHARLES STREET and WEST 10 STREET, HUDSON STREET between PERRY STREET and CHARLES STREET, PERRY STREET between HUDSON STREET and BLEEKER STREET, WEST 14 STREET between 9TH AVENUE and 8 AVENUE, WEST 14 STREET between 8 AVENUE and 7 AVENUE, WEST 14 STREET between 7 AVENUE and 6 AVENUE, PERRY STREET between WEST 4 STREET and BLEEKER STREET, WEST 4 STREET between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, 7 AVENUE SOUTH between WEST 10 STREET and CHRISTOPHER STREET, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, 7 AVENUE SOUTH between GROVE STREET and BARROW STREET",Manhattan,"2, 4","10, 13, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+602147,Shooting Permit,09/17/2021 02:00:00 PM,09/18/2021 04:00:00 AM,09/13/2021 11:25:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 47 STREET, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+602138,Theater Load in and Load Outs,09/18/2021 12:01:00 AM,09/20/2021 06:00:00 AM,09/13/2021 11:14:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+602136,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 09:00:00 PM,09/13/2021 11:11:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBERMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+602131,Shooting Permit,09/16/2021 12:00:00 PM,09/17/2021 06:00:00 AM,09/13/2021 11:04:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 76 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 74 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 74 STREET and WEST 76 STREET, WEST 75 STREET between WEST END AVENUE and BROADWAY, RIVERSIDE DRIVE between WEST 74 STREET and WEST 76 STREET, RIVERSIDE DRIVE between WEST 73 STREET and WEST 74 STREET, BROADWAY between WEST 79 STREET and WEST 81 STREET, WEST 80 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 77 STREET and WEST 79 STREET, WEST 78 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 75 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 79 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10024"
+602124,Shooting Permit,09/22/2021 08:00:00 AM,09/22/2021 10:00:00 PM,09/13/2021 10:42:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+602116,Shooting Permit,09/21/2021 07:00:00 AM,09/21/2021 10:00:00 PM,09/13/2021 10:09:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+602113,Theater Load in and Load Outs,09/21/2021 12:01:00 AM,09/23/2021 06:00:00 AM,09/13/2021 10:08:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING PLACE between EAST 15 STREET and EAST 16 STREET, EAST 15 STREET between UNION SQUARE EAST and IRVING PLACE, EAST 16 STREET between UNION SQUARE EAST and IRVING PLACE",Manhattan,"5, 6",13,Theater,Theater,United States of America,10003
+602105,Shooting Permit,09/16/2021 05:00:00 PM,09/17/2021 07:00:00 AM,09/13/2021 09:56:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+602102,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 05:00:00 PM,09/13/2021 09:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE",Manhattan,2,"6, 9",WEB,Not Applicable,United States of America,"10003, 10011, 10012"
+602098,Shooting Permit,09/15/2021 11:00:00 AM,09/16/2021 06:00:00 AM,09/13/2021 09:25:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 76 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 74 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 74 STREET and WEST 76 STREET, WEST 75 STREET between WEST END AVENUE and BROADWAY, RIVERSIDE DRIVE between WEST 73 STREET and WEST 74 STREET, BROADWAY between WEST 79 STREET and WEST 81 STREET, WEST 80 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 77 STREET and WEST 79 STREET, WEST 78 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 75 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 74 STREET and WEST 76 STREET, WEST 79 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10024"
+602079,Shooting Permit,09/15/2021 01:00:00 PM,09/15/2021 11:59:00 PM,09/13/2021 12:20:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between ST JAMES PLACE and CAMBRIDGE PLACE, ST JAMES PLACE between GATES AVENUE and GREENE AVENUE, BUTLER STREET between NEVINS STREET and BOND STREET",Brooklyn,"2, 6","76, 88",Still Photography,Not Applicable,United States of America,"11217, 11238"
+602074,Shooting Permit,09/15/2021 12:00:00 PM,09/15/2021 11:59:00 PM,09/12/2021 09:51:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between BROADWAY and CROSBY STREET, CROSBY STREET between HOWARD STREET and GRAND STREET, EAST 10 STREET between AVENUE A and AVENUE B",Manhattan,"2, 3","1, 5, 9",Still Photography,Not Applicable,United States of America,"10009, 10012, 10013"
+602065,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 10:00:00 PM,09/12/2021 05:40:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between DUPONT STREET and EAGLE STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+602040,Theater Load in and Load Outs,09/17/2021 12:01:00 AM,09/30/2021 11:59:00 PM,09/12/2021 08:41:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 84 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,"64, 7","20, 22",Theater,Theater,United States of America,10024
+601975,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 07:00:00 PM,09/10/2021 06:43:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOTT STREET between PRINCE STREET and SPRING STREET, CHRISTOPHER STREET between WAVERLY PLACE and GREENWICH AVENUE",Manhattan,2,"5, 6",Still Photography,Not Applicable,United States of America,"10012, 10014"
+601972,Shooting Permit,09/16/2021 01:00:00 PM,09/17/2021 03:00:00 AM,09/10/2021 06:33:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST MT EDEN AVENUE between MORRIS AVENUE and MONROE AVENUE, MORRIS AVENUE between EAST MT EDEN AVENUE and TELLER AVENUE, WEBSTER AVENUE between EAST 169 STREET and EAST 171 STREET, LACOMBE AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, BEACH AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, TAYLOR AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and TAYLOR AVENUE, Bronx River Ave between ROSEDALE AVENUE and Dead End, ST LAWRENCE AVENUE between LACOMBE AVENUE and PATTERSON AVENUE",Bronx,"3, 4, 9","42, 43, 44",Television,Cable-episodic,United States of America,"10456, 10457, 10473"
+601955,Shooting Permit,09/15/2021 05:00:00 PM,09/16/2021 07:00:00 AM,09/10/2021 05:01:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, SOUTH STREET between FLETCHER STREET and JOHN STREET, JOHN STREET between SOUTH STREET and FRONT STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and JOHN STREET, MAIDEN LANE between SOUTH STREET and WATER STREET, WALL STREET between HANOVER STREET and WILLIAM STREET, WALL STREET between PEARL STREET and HANOVER STREET, HANOVER STREET between WALL STREET and BEAVER STREET, EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET, WILLIAM STREET between BEAVER STREET and EXCHANGE PLACE, BEAVER STREET between WILLIAM STREET and PEARL STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+601954,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 09:00:00 PM,09/10/2021 04:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+601952,Shooting Permit,09/13/2021 07:00:00 AM,09/20/2021 11:59:00 PM,09/10/2021 04:39:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 7 AVENUE and BROADWAY, WEST 51 STREET between BROADWAY and 7 AVENUE, 7 AVENUE between WEST 50 STREET and WEST 51 STREET, WEST 50 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+601950,Shooting Permit,09/16/2021 11:00:00 AM,09/17/2021 02:30:00 AM,09/10/2021 03:53:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, VERNON BLVD between 45 RD and 45 AVE, 44 DRIVE between 10 STREET and 11 STREET, W 47 ST between 6 AVE and 7 AVE, 11 STREET between 46 AVENUE and 48 AVENUE, 45 ROAD between VERNON BOULEVARD and 11 STREET, WEST 49 STREET between 7 AVENUE and 6 AVENUE, WEST 49 STREET between 6 AVENUE and 5 AVENUE, WEST 48 STREET between 7 AVENUE and 6 AVENUE",Queens,"2, 5","108, 18",Television,Cable-episodic,United States of America,"10019, 10020, 10036, 10105, 10112, 11101"
+601942,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 09:00:00 PM,09/10/2021 03:30:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 8 AVENUE and 7 AVENUE, WEST 16 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 16 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 15 STREET and WEST 17 STREET",Manhattan,4,"10, 13",Television,Children,United States of America,10011
+601933,Shooting Permit,09/14/2021 07:00:00 AM,09/15/2021 04:00:00 AM,09/10/2021 03:05:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 76 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 74 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 74 STREET and WEST 76 STREET, WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 75 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 74 STREET and WEST 76 STREET, RIVERSIDE DRIVE between WEST 73 STREET and WEST 74 STREET, WEST 79 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 79 STREET and WEST 81 STREET, WEST 80 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 77 STREET and WEST 79 STREET, WEST 78 STREET between BROADWAY and AMSTERDAM AVENUE, RIVERSIDE DRIVE between WEST 77 STREET and WEST 78 STREET, RIVERSIDE DRIVE between WEST 79 STREET and WEST 80 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10024"
+601917,Shooting Permit,09/16/2021 08:00:00 AM,09/17/2021 01:00:00 AM,09/10/2021 02:22:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between 1 AVENUE and MOUNT CARMEL PLACE, MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between MOUNT CARMEL PLACE and 1 AVENUE, EAST 25 STREET between 1 AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 23 STREET between PARK AVENUE SOUTH and 3 AVENUE, LEXINGTON AVENUE between EAST 21 STREET and EAST 23 STREET, E 20TH ST between GRAMERCY PARK W and IRVING PL",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010, 10016"
+601916,Theater Load in and Load Outs,09/14/2021 06:00:00 AM,09/15/2021 11:59:00 PM,09/10/2021 02:19:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 74 STREET and WEST 75 STREET, AMSTERDAM AVENUE between WEST 73 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+601906,Theater Load in and Load Outs,09/13/2021 06:00:00 AM,09/14/2021 05:55:00 AM,09/10/2021 02:07:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+601904,Shooting Permit,09/15/2021 09:30:00 AM,09/15/2021 09:00:00 PM,09/10/2021 01:47:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, BROAD STREET between SOUTH STREET and WATER STREET",Brooklyn,"1, 55","1, 78",WEB,Not Applicable,United States of America,"10004, 11215"
+601898,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 11:00:00 PM,09/10/2021 01:32:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 1 STREET between BEDFORD AVENUE and BERRY STREET,Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+601896,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 10:00:00 PM,09/10/2021 01:21:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between COVERT STREET and ELDERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+601894,Shooting Permit,09/14/2021 08:00:00 AM,09/14/2021 10:00:00 PM,09/10/2021 01:17:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 10 AVENUE and 11 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+601888,Shooting Permit,09/26/2021 06:00:00 AM,09/26/2021 11:59:00 PM,09/10/2021 12:36:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+601886,Shooting Permit,09/25/2021 06:00:00 AM,09/25/2021 11:59:00 PM,09/10/2021 12:30:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+601885,Shooting Permit,09/24/2021 06:00:00 AM,09/24/2021 11:59:00 PM,09/10/2021 12:20:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+601883,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 11:59:00 PM,09/10/2021 12:16:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROOSEVELT AVENUE between 57 STREET and 59 STREET, 61 STREET between WOODSIDE AVENUE and 43 AVENUE, 62 STREET between WOODSIDE AVENUE and 43 AVENUE, 61 STREET between ROOSEVELT AVENUE and WOODSIDE AVENUE, 61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 60 STREET between ROOSEVELT AVENUE and DEAD END, QUEENS BOULEVARD between 51 STREET and 59 STREET, 58 STREET between QUEENS BOULEVARD and 47 AVENUE, 15 AVENUE between PARSONS BOULEVARD and 146 PLACE, 145 PLACE between 14 AVENUE and 15 AVENUE, 146 STREET between 15 AVENUE and 146 PLACE, 17 AVENUE between PARSONS BOULEVARD and 146 PLACE, 145 PLACE between 15 AVENUE and 17 AVENUE, WHITESTONE EXPRESSWAY SR NB between 14th AVE and 20th AVE, HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVENUE between WATSON AVENUE and CROSS BRONX EXPRESSWAY, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, ELLIS AVENUE between OLMSTEAD AVENUE and CASTLE HILL AVENUE",Queens,"10, 2, 7, 9","108, 109, 43, 45",Television,Episodic series,United States of America,"10461, 10462, 11357, 11377"
+601882,Shooting Permit,09/23/2021 06:00:00 AM,09/23/2021 11:59:00 PM,09/10/2021 12:14:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+601876,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 10:00:00 PM,09/10/2021 12:05:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 61 STREET between FREEDOM PLACE SOUTH and RIVERSIDE BOULEVARD, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 64 STREET",Manhattan,7,20,Television,Episodic series,United States of America,"10023, 10069"
+601870,Shooting Permit,09/20/2021 08:00:00 AM,09/20/2021 10:00:00 PM,09/10/2021 11:53:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, WEST 58 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 57 STREET and WEST 58 STREET, 11 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 11 AVENUE and 12 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 9 AVENUE and 10 AVENUE, WEST 57 STREET between 8 AVENUE and 9 AVENUE",Queens,"1, 4","114, 18",Television,Episodic series,United States of America,"10019, 11101, 11106"
+601868,Shooting Permit,09/15/2021 08:00:00 AM,09/15/2021 10:00:00 PM,09/10/2021 11:49:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between CLINTON AVENUE and WAVERLY AVENUE, CLINTON AVENUE between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+601867,Shooting Permit,09/17/2021 03:00:00 PM,09/18/2021 05:00:00 AM,09/10/2021 11:48:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between 2 AVENUE and 1 AVENUE, BOWERY between EAST HOUSTON STREET and BLEECKER STREET, EAST 2 STREET between BOWERY and 2 AVENUE, BOWERY between EAST HOUSTON STREET and EAST 2 STREET, EAST FIRST STREET between 2 AVENUE and BOWERY, 2 AVENUE between EAST 1 STREET and EAST 2 STREET, 2 AVENUE between EAST HOUSTON STREET and EAST 1 STREET, EAST 1 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"2, 3",9,Film,Feature,United States of America,"10003, 10012"
+601865,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 09:00:00 PM,09/10/2021 11:42:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COURT STREET between MONTAGUE STREET and LIVINGSTON STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, VINE STREET between MCKENNY STREET and COLUMBIA HEIGHTS, COLUMBIA HEIGHTS between VINE STREET and MIDDAGH STREET, WATER STREET between DOCK STREET and OLD FULTON STREET, WATER STREET between DOCK STREET and MAIN STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+601863,Shooting Permit,09/15/2021 12:00:00 PM,09/16/2021 03:00:00 AM,09/10/2021 11:38:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between 5 AVENUE and MADISON AVENUE, EAST 96 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 96 STREET and EAST 97 STREET, 5 AVENUE between EAST 96 STREET and EAST 95 STREET, EAST 95 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 94 STREET and EAST 95 STREET, MADISON AVENUE between EAST 95 STREET and EAST 96 STREET, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Cable-episodic,United States of America,"10029, 10128"
+601862,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 10:00:00 PM,09/10/2021 11:33:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 39 PLACE and 39 STREET, 39 PLACE between QUEENS BOULEVARD and 47 AVENUE, 40 STREET between QUEENS BOULEVARD and 47 AVENUE, 47 AVENUE between 39 PLACE and 40 STREET, 47 AVENUE between 39 PLACE and 39 STREET, QUEENS BOULEVARD between 39 PLACE and 40 STREET, GREENPOINT AVENUE between 45 STREET and 41 STREET, 43 STREET between GREENPOINT AVENUE and 47 AVENUE, 47 AVENUE between 42 STREET and 44 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, LAUREL HILL BOULEVARD between 56 ROAD and REVIEW AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11104, 11377, 11378"
+601859,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 07:00:00 PM,09/10/2021 11:10:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between PRINCE STREET and EAST HOUSTON STREET, LAFAYETTE STREET between PRINCE STREET and EAST HOUSTON STREET",Manhattan,2,5,Commercial,Industrial/Corporate,United States of America,10012
+601855,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 09:00:00 PM,09/10/2021 11:04:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, NORTH MOORE STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between NORTH MOORE STREET and ERICSSON PLACE, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between HARRISON STREET and FRANKLIN STREET, HARRISON STREET between GREENWICH STREET and WEST STREET, WEST STREET between NORTH MOORE STREET and CHAMBERS STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+601833,Shooting Permit,09/15/2021 06:30:00 AM,09/15/2021 08:00:00 PM,09/10/2021 09:38:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","138 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET, 140 STREET between 14 AVENUE and 15 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11356, 11357"
+601832,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 09:00:00 PM,09/10/2021 09:30:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+601827,Shooting Permit,09/14/2021 08:00:00 AM,09/14/2021 11:00:00 PM,09/10/2021 08:48:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 38 STREET and WEST 35 STREET, WEST 36 STREET between BROADWAY and 7 AVENUE, WEST 39 STREET between 8 AVENUE and 6 AVENUE, WEST 37 STREET between BROADWAY and 7 AVENUE, WEST 38 STREET between 7 AVENUE and BROADWAY",Manhattan,5,14,Television,Pilot,United States of America,10018
+601823,Shooting Permit,10/12/2021 02:00:00 AM,10/12/2021 11:00:00 AM,09/10/2021 05:05:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between BROADWAY and 6 AVENUE,Manhattan,5,14,Television,Morning Show,United States of America,10036
+601820,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 06:00:00 PM,09/09/2021 11:58:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",MOTT STREET between CANAL STREET and HESTER STREET,Manhattan,"1, 2",5,Still Photography,Not Applicable,United States of America,10013
+601803,Shooting Permit,09/14/2021 01:00:00 PM,09/14/2021 11:00:00 PM,09/09/2021 07:23:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",THOMPSON STREET between GRAND STREET and 6 AVENUE,Manhattan,2,1,Still Photography,Not Applicable,United States of America,"10012, 10013"
+601797,Rigging Permit,09/14/2021 07:00:00 AM,10/01/2021 07:00:00 PM,09/09/2021 06:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOGART STREET between JOHNSON AVENUE and DEAD END,Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+601782,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 11:00:00 PM,09/09/2021 05:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 23 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+601772,Shooting Permit,09/25/2021 05:30:00 PM,09/26/2021 12:00:00 AM,09/09/2021 04:29:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 104 STREET and WEST 105 STREET,Manhattan,7,24,Film,Short,United States of America,10025
+601759,Shooting Permit,09/15/2021 09:00:00 AM,09/15/2021 11:00:00 PM,09/09/2021 03:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, WEST 28 STREET between 9 AVENUE and 11 AVENUE, WEST 29 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 30 STREET and WEST 29 STREET, 10 AVENUE between WEST 29 STREET and WEST 28 STREET, 10 AVENUE between WEST 28 STREET and WEST 27 STREET, 10 AVENUE between WEST 27 STREET and WEST 26 STREET",Brooklyn,"1, 4","10, 94",Television,Cable-episodic,United States of America,"10001, 11222"
+601752,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 09:00:00 PM,09/09/2021 03:36:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WARREN STREET and MURRAY STREET, CHURCH STREET between MURRAY STREET and PARK PLACE, CHURCH STREET between PARK PLACE and BARCLAY STREET, WARREN STREET between CHURCH STREET and BROADWAY, PARK PLACE between CHURCH STREET and BROADWAY, BARCLAY STREET between CHURCH STREET and BROADWAY, PARK ROW between ANN STREET and SPRUCE STREET, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between BROOME STREET and GRAND STREET, BROADWAY between SPRING STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROOME STREET between CROSBY STREET and BROADWAY, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET",Manhattan,"1, 2, 3","1, 5",Television,Cable-episodic,United States of America,"10007, 10012, 10013, 10038"
+601749,Shooting Permit,09/14/2021 01:00:00 PM,09/14/2021 11:59:00 PM,09/09/2021 03:13:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WALKER STREET and WHITE STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, 7 AVENUE SOUTH between WAVERLY PLACE and CHARLES STREET, 7 AVENUE SOUTH between GREENWICH AVENUE and PERRY STREET",Manhattan,"1, 2","1, 6",Still Photography,Not Applicable,United States of America,"10011, 10013, 10014"
+601747,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 08:00:00 PM,09/09/2021 03:07:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between 2 AVENUE and 3 AVENUE, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 69 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 68 STREET and EAST 70 STREET, 12 STREET between 36 AVENUE and 35 AVENUE, 36 AVENUE between 12 STREET and 14 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET",Manhattan,"1, 8","114, 19",Film,Feature,United States of America,"10021, 10044, 10065, 11106"
+601737,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 10:00:00 PM,09/09/2021 02:41:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 63 STREET and WEST 61 STREET, WEST 61 STREET between BROADWAY and CENTRAL PARK WEST, WEST 56 STREET between 8 AVENUE and 9 AVENUE, CENTRAL PARK WEST between WEST 63 STREET and WEST 62 STREET, BROADWAY between WEST 57 STREET and WEST 58 STREET",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+601723,Shooting Permit,09/12/2021 06:00:00 AM,09/12/2021 11:00:00 PM,09/09/2021 02:17:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601722,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 09:00:00 PM,09/09/2021 02:13:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODWARD AVENUE between CATALPA AVENUE and CORNELIA STREET, CORNELIA STREET between WOODWARD AVENUE and FOREST AVENUE, CATALPA AVENUE between WOODWARD AVENUE and ONDERDONK AVENUE, CATALPA AVENUE between WOODWARD AVENUE and FOREST AVENUE, FOREST AVENUE between CATALPA AVENUE and 69 AVENUE, MYRTLE AVENUE between ONDERDONK AVENUE and 71 AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+601721,Shooting Permit,09/14/2021 06:30:00 AM,09/14/2021 08:30:00 PM,09/09/2021 02:07:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","140 STREET between 14 AVENUE and 15 AVENUE, 138 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET",Queens,7,109,Television,Episodic series,United States of America,"11356, 11357"
+601713,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 10:00:00 PM,09/09/2021 01:53:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601710,Shooting Permit,09/11/2021 02:00:00 PM,09/12/2021 02:00:00 AM,09/09/2021 01:49:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",21 STREET between BORDEN AVENUE and 51 AVENUE,Queens,2,108,Music Video,Signed Artist,United States of America,11101
+601709,Shooting Permit,09/16/2021 12:00:00 PM,09/17/2021 03:00:00 AM,09/09/2021 01:47:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 7 STREET and EAST 9 STREET, EAST 7 STREET between 2 AVENUE and 1 AVENUE, ST MARKS PLACE between 1 AVENUE and 2 AVENUE, AVENUE A between EAST 7 STREET and EAST 10 STREET",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+601701,Shooting Permit,09/15/2021 11:00:00 AM,09/16/2021 01:00:00 AM,09/09/2021 01:30:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 34 AVENUE and 36 AVENUE, 34 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+601698,Shooting Permit,09/14/2021 08:00:00 AM,09/14/2021 10:00:00 PM,09/09/2021 01:25:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 34 AVENUE and 36 AVENUE, 34 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+601694,Theater Load in and Load Outs,09/16/2021 12:01:00 AM,09/17/2021 06:00:00 AM,09/09/2021 12:54:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+601679,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 11:00:00 PM,09/09/2021 12:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 23 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+601671,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 08:00:00 PM,09/09/2021 11:43:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIPER BLVD SOUTH between 80 STREET and 78 STREET, JUNIPER BLVD SOUTH between 77 STREET and 75 STREET, JUNIPER BLVD SOUTH between 80 STREET and DRY HARBOR ROAD",Queens,5,104,Television,Children,United States of America,11379
+601667,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 09:00:00 PM,09/09/2021 11:27:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",E 27TH STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH,Manhattan,5,"13, 14",Film,Feature,United States of America,"10010, 10016, 10018"
+601663,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 09:00:00 PM,09/09/2021 11:15:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 7 AVENUE and BROADWAY, 7 AVENUE between WEST 37 STREET and WEST 36 STREET, WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 8 AVENUE and 6 AVENUE, WEST 37 STREET between 9 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Television,Pilot,United States of America,10018
+601662,Shooting Permit,09/16/2021 10:00:00 AM,09/16/2021 11:59:00 PM,09/09/2021 11:11:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+601661,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 11:00:00 PM,09/09/2021 11:09:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601657,Shooting Permit,09/15/2021 10:00:00 AM,09/15/2021 11:59:00 PM,09/09/2021 11:08:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+601655,Shooting Permit,09/14/2021 09:00:00 AM,09/14/2021 11:00:00 PM,09/09/2021 11:04:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+601638,Shooting Permit,09/17/2021 12:00:00 PM,09/18/2021 02:00:00 AM,09/09/2021 10:14:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+601637,Shooting Permit,09/16/2021 10:00:00 AM,09/16/2021 11:59:00 PM,09/09/2021 10:14:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+601636,Shooting Permit,09/15/2021 10:00:00 AM,09/15/2021 11:59:00 PM,09/09/2021 10:13:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+601631,Theater Load in and Load Outs,09/12/2021 12:01:00 AM,09/13/2021 06:00:00 AM,09/09/2021 09:41:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+601629,Shooting Permit,09/14/2021 05:00:00 PM,09/15/2021 07:00:00 AM,09/09/2021 09:35:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between WATER STREET and PEARL STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between JOHN STREET and FLETCHER STREET, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+601627,Shooting Permit,09/13/2021 05:00:00 PM,09/14/2021 07:00:00 AM,09/09/2021 09:30:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, CEDAR STREET between PEARL STREET and WILLIAM STREET, MAIDEN LANE between WATER STREET and PEARL STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and JOHN STREET, NASSAU STREET between LIBERTY STREET and MAIDEN LANE, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+601592,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 09:00:00 PM,09/08/2021 07:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVEMEYER AVENUE between BRUCKNER BOULEVARD and QUIMBY AVENUE, HAVEMEYER AVENUE between STORY AVENUE and HERMANY AVENUE, QUIMBY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, STORY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HERMANY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, LAFAYETTE AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+601591,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 10:00:00 PM,09/08/2021 07:29:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",LUDLOW STREET between DELANCEY STREET and BROOME STREET,Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+601570,Shooting Permit,09/11/2021 06:00:00 AM,09/11/2021 11:00:00 PM,09/08/2021 05:37:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 148 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLAS BOULEVARD,Manhattan,10,32,Commercial,Commercial,United States of America,10039
+601567,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 09:00:00 PM,09/08/2021 05:07:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 33 STREET and 34 STREET, 2 AVENUE between 34 STREET and 35 STREET, 2 AVENUE between 35 STREET and 36 STREET, 2 AVENUE between 36 STREET and 37 STREET",Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+601565,Theater Load in and Load Outs,09/30/2021 12:01:00 AM,10/01/2021 06:00:00 AM,09/08/2021 05:01:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+601563,Theater Load in and Load Outs,09/29/2021 12:01:00 AM,09/29/2021 11:59:00 PM,09/08/2021 04:56:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+601561,Shooting Permit,09/11/2021 07:00:00 AM,09/11/2021 09:00:00 PM,09/08/2021 04:43:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","Lorimer st between FROST STREET and Meeker Ave, LORIMER STREET between FROST STREET and RICHARDSON STREET, FROST STREET between UNION AVENUE and MEEKER AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+601560,Shooting Permit,09/19/2021 06:00:00 AM,09/19/2021 08:00:00 PM,09/08/2021 04:39:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601555,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 09:00:00 PM,09/08/2021 04:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 10 STREET between AVENUE B and AVENUE A,Manhattan,3,9,Still Photography,Not Applicable,United States of America,10009
+601536,Shooting Permit,09/14/2021 11:00:00 AM,09/15/2021 02:00:00 AM,09/08/2021 03:12:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, E 20TH STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, E 20TH STREET between GRAMERCY PARK WEST and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 20TH STREET and E 21ST STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, EAST 21ST STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, EAST 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET",Brooklyn,"1, 5, 6","13, 94",Television,Cable-episodic,United States of America,"10003, 10010, 11222"
+601532,Theater Load in and Load Outs,09/09/2021 06:00:00 AM,09/10/2021 11:59:00 PM,09/08/2021 03:00:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 74 STREET and WEST 75 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+601531,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 11:00:00 PM,09/08/2021 02:52:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 23 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+601518,Shooting Permit,09/13/2021 06:30:00 AM,09/13/2021 08:00:00 PM,09/08/2021 02:18:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","75 STREET between JAMAICA AVENUE and 87 AVENUE, 87 AVENUE between ELDERT LANE and 75 STREET, JAMAICA AVENUE between ELDERT LANE and 77 STREET, JAMAICA AVE between DEXTER COURT and NICHOLS AVE, JAMAICA AVE between EUCLID AVE and NORWOOD AVE, GRANT AVE between JAMAICA AVE and ETNA ST, ELDERT LANE between JAMAICA AVENUE and 88 AVENUE, 76 STREET between JAMAICA AVENUE and 88 AVENUE",Queens,"5, 9","102, 75",Television,Episodic series,United States of America,"11208, 11421"
+601517,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 11:00:00 PM,09/08/2021 02:13:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","17 AVENUE between PARSONS BOULEVARD and 146 PLACE, 146 STREET between 15 AVENUE and 146 PLACE, 15 AVENUE between PARSONS BOULEVARD and 146 PLACE, 145 PLACE between 14 AVENUE and 15 AVENUE, 145 PLACE between 15 AVENUE and 17 AVENUE",Queens,7,109,Television,Episodic series,United States of America,11357
+601509,Theater Load in and Load Outs,09/13/2021 12:01:00 AM,09/15/2021 06:00:00 AM,09/08/2021 01:38:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+601501,Shooting Permit,09/11/2021 07:00:00 AM,09/11/2021 09:00:00 PM,09/08/2021 01:23:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 42 STREET and EAST 43 STREET, EAST 43 STREET between 2 AVENUE and TUDOR CITY PLACE",Manhattan,6,17,WEB,Not Applicable,United States of America,10017
+601491,Rigging Permit,09/16/2021 07:00:00 AM,09/16/2021 07:00:00 PM,09/08/2021 01:00:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between BROADWAY and LIBERTY PLACE, BROADWAY between LIBERTY STREET and MAIDEN LANE, NASSAU STREET between MAIDEN LANE and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10006, 10038"
+601487,Rigging Permit,09/15/2021 07:00:00 AM,09/15/2021 07:00:00 PM,09/08/2021 12:50:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between BROADWAY and LIBERTY PLACE, BROADWAY between LIBERTY STREET and MAIDEN LANE, NASSAU STREET between MAIDEN LANE and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10006, 10038"
+601485,Theater Load in and Load Outs,09/12/2021 03:31:00 PM,09/13/2021 11:59:00 PM,09/08/2021 12:39:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 78 STREET and EAST 79 STREET,Manhattan,"64, 8","19, 22",Television,Cable-other,United States of America,"10028, 10075"
+601482,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 09:00:00 PM,09/08/2021 12:33:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL AVENUE between 71 PLACE and 70 STREET, CENTRAL AVENUE between 70 STREET and 69 PLACE, 70 STREET between CENTRAL AVENUE and MYRTLE AVENUE, 70 STREET between CENTRAL AVENUE and 70 AVENUE, MYRTLE AVENUE between COOPER AVENUE and 68 PLACE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between COVERT STREET and ELDERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+601478,Shooting Permit,09/15/2021 10:00:00 AM,09/16/2021 01:00:00 AM,09/08/2021 12:20:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and EAST 10 STREET, ST MARKS PLACE between 1 AVENUE and 2 AVENUE",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+601467,Shooting Permit,09/10/2021 12:00:00 PM,09/11/2021 03:00:00 AM,09/08/2021 11:47:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601465,Shooting Permit,09/10/2021 09:00:00 AM,09/10/2021 09:00:00 PM,09/08/2021 11:43:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between JOHNSON AVENUE and DEAD END, JOHNSON AVENUE between BOGART STREET and WHITE STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11206
+601445,Shooting Permit,09/10/2021 01:00:00 PM,09/10/2021 09:00:00 PM,09/08/2021 10:46:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","CONSELYEA STREET between GRAHAM AVENUE and HUMBOLDT STREET, GRAHAM AVENUE between METROPOLITAN AVENUE and CONSELYEA STREET",Brooklyn,1,94,WEB,Not Applicable,United States of America,11211
+601431,Shooting Permit,09/13/2021 07:30:00 AM,09/13/2021 10:30:00 PM,09/08/2021 09:33:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, EAST 56 STREET between 5 AVENUE and MADISON AVENUE, 6 1/2 AVENUE between WEST 56 STREET and WEST 55 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 58 STREET and WEST 59 STREET, CENTRAL PARK SOUTH between 7 AVENUE and COLUMBUS CIRCLE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, BROADWAY between WEST 57 STREET and WEST 56 STREET, BROADWAY between WEST 56 STREET and WEST 55 STREET, BROADWAY between WEST 55 STREET and WEST 54 STREET, BROADWAY between WEST 58 STREET and WEST 57 STREET, BROADWAY between COLUMBUS CIRCLE and WEST 58 STREET, WEST 56 STREET between BROADWAY and 7 AVENUE, 7 AVENUE between WEST 55 STREET and WEST 54 STREET, 7 AVENUE between WEST 54 STREET and WEST 53 STREET, WEST 54 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+601429,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 10:00:00 PM,09/08/2021 09:30:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 26 STREET and EAST 27 STREET, EAST 26 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 27 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 29 STREET and EAST 26 STREET, EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 23 STREET and EAST 25 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+601421,Shooting Permit,09/12/2021 06:00:00 AM,09/12/2021 11:00:00 PM,09/08/2021 08:48:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRANT AVENUE between MCKINLEY AVENUE and LIBERTY AVENUE, LIBERTY AVENUE between GRANT AVENUE and LINCOLN AVENUE",Brooklyn,5,75,Commercial,Commercial,United States of America,11208
+601420,Shooting Permit,09/10/2021 07:00:00 AM,09/10/2021 11:00:00 PM,09/08/2021 08:47:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between UNION STREET and DEGRAW STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between NEVINS STREET and DEAD END, DEGRAW STREET between NEVINS STREET and THIRD AVENUE, DOUGLASS STREET between NEVINS STREET and THIRD AVENUE",Brooklyn,6,78,Film,Feature,United States of America,11217
+601417,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 08:00:00 PM,09/08/2021 08:29:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 34 AVENUE and 36 AVENUE, 34 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+601416,Shooting Permit,09/10/2021 01:00:00 PM,09/10/2021 10:00:00 PM,09/08/2021 08:12:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between GRAND STREET and BROOME STREET, GRAND STREET between GREENE STREET and MERCER STREET, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 44 STREET between 8 AVENUE and BROADWAY",Manhattan,"2, 4, 5","1, 14, 18",Commercial,Commercial,United States of America,"10013, 10036"
+601395,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 04:00:00 PM,09/07/2021 07:34:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","30 AVENUE between WELLING COURT and MAIN AVENUE, WELLING COURT between 30 AVENUE and MAIN AVENUE",Queens,1,114,Television,Variety,United States of America,11102
+601373,Shooting Permit,09/16/2021 07:00:00 PM,09/17/2021 06:00:00 AM,09/07/2021 04:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between BROADWAY and NASSAU STREET, BROADWAY between JOHN STREET and CEDAR STREET, LIBERTY STREET between TRINITY PLACE and LIBERTY PLACE, CORTLANDT STREET between CHURCH STREET and BROADWAY, NASSAU STREET between JOHN STREET and MAIDEN LANE, NASSAU STREET between LIBERTY STREET and PINE STREET, JOHN STREET between NASSAU STREET and BROADWAY, MAIDEN LANE between PEARL STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between FLETCHER STREET and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10007, 10038"
+601372,Shooting Permit,09/17/2021 05:00:00 PM,09/18/2021 07:00:00 AM,09/07/2021 04:29:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIDEN LANE between BROADWAY and NASSAU STREET, BROADWAY between JOHN STREET and CEDAR STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between TRINITY PLACE and LIBERTY PLACE, CORTLANDT STREET between CHURCH STREET and BROADWAY, NASSAU STREET between JOHN STREET and MAIDEN LANE, NASSAU STREET between LIBERTY STREET and PINE STREET, JOHN STREET between NASSAU STREET and BROADWAY, MAIDEN LANE between PEARL STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between FLETCHER STREET and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10007, 10038, 10045"
+601353,Shooting Permit,09/10/2021 06:00:00 PM,09/11/2021 08:00:00 AM,09/07/2021 03:41:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between SEIGEL STREET and MOORE STREET, SEIGEL STREET between WHITE STREET and BOGART STREET, JOHNSON AVENUE between WHITE STREET and BOGART STREET, JOHNSON AVENUE between BOGART STREET and MORGAN AVENUE, BOGART STREET between JOHNSON AVENUE and DEAD END",Brooklyn,1,90,Television,Cable-episodic,United States of America,11206
+601347,Shooting Permit,09/10/2021 07:00:00 AM,09/10/2021 10:00:00 PM,09/07/2021 03:34:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601343,Shooting Permit,09/10/2021 07:00:00 AM,09/10/2021 10:00:00 PM,09/07/2021 03:23:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+601334,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 11:00:00 PM,09/07/2021 03:05:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+601322,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 07:00:00 PM,09/07/2021 02:35:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","14 STREET between PROSPECT PARK WEST and 8 AVENUE, PROSPECT PARK WEST between 14 STREET and 15 STREET, PROSPECT PARK WEST between 16 STREET and WINDSOR PLACE",Brooklyn,"55, 6, 7","72, 78",Documentary,Not Applicable,United States of America,11215
+601320,Shooting Permit,09/10/2021 08:00:00 AM,09/10/2021 10:00:00 PM,09/07/2021 02:26:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between CRESCENT STREET and 23 STREET, 27 STREET between 42 ROAD and QUEENS PLAZA SOUTH, 42 ROAD between CRESCENT STREET and 24 STREET, 27 STREET between 42 ROAD and 43 AVENUE, HUNTER STREET between 43 AVENUE and 42 ROAD, 43 AVENUE between CRESCENT STREET and 24 STREET, CRESCENT STREET between QUEENS PLAZA SOUTH and 42 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+601309,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 08:00:00 PM,09/07/2021 01:59:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","JACKSON ST between CHERRY STREET and SOUTH ST, WATER STREET between JACKSON STREET and GOUVERNEUR STREET, LAIGHT STREET between HUDSON STREET and GREENWICH STREET, GREENWICH STREET between LAIGHT STREET and HUBERT STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET, HUBERT STREET between HUDSON STREET and GREENWICH STREET",Manhattan,"1, 3","1, 7",Commercial,Commercial,United States of America,"10002, 10013"
+601305,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 10:00:00 PM,09/07/2021 01:54:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+601301,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 10:00:00 PM,09/07/2021 01:41:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between BARCLAY STREET and MURRAY STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, WEST STREET between BARCLAY STREET and MURRAY STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,"10006, 10007, 10282"
+601299,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 11:00:00 PM,09/07/2021 01:35:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PRINCE STREET and BROOME STREET, KENMARE STREET between MOTT STREET and BOWERY, DELANCEY STREET between BOWERY and CHRYSTIE STREET",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10012"
+601291,Shooting Permit,09/11/2021 06:00:00 AM,09/11/2021 08:00:00 PM,09/07/2021 12:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY AVENUE between GREENE AVENUE and GATES AVENUE, GREENE AVENUE between WASHINGTON AVENUE and ST JAMES PLACE, MYRTLE AVENUE between BROADWAY and TROUTMAN STREET, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, MYRTLE AVENUE between TROUTMAN STREET and BUSHWICK AVENUE",Brooklyn,"2, 4","83, 88",Commercial,Commercial,United States of America,"11206, 11221, 11238"
+601289,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 10:00:00 PM,09/07/2021 12:33:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+601283,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 11:00:00 PM,09/07/2021 12:25:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, HUMBOLDT ST between MESEROLE AVE and NORMAN AVE, CALYER STREET between NEWELL STREET and DIAMOND STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601280,Theater Load in and Load Outs,09/21/2021 06:00:00 AM,09/21/2021 11:59:00 PM,09/07/2021 12:09:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between WALKER STREET and LISPENARD STREET",Manhattan,1,1,Theater,Theater,United States of America,10013
+601277,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 11:00:00 PM,09/07/2021 12:02:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+601266,Shooting Permit,09/08/2021 06:00:00 AM,09/08/2021 10:00:00 PM,09/07/2021 11:21:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 8 AVENUE, 9 AVENUE between WEST 23 STREET and WEST 24 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+601265,Shooting Permit,09/09/2021 08:30:00 AM,09/09/2021 10:00:00 PM,09/07/2021 11:19:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between SCOTT AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between WYCKOFF AVENUE and IRVING AVENUE, JOHNSON AVENUE between GARDNER AVENUE and STEWART AVENUE, JOHNSON AVENUE between STEWART AVENUE and VARICK AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, GARDNER AVENUE between INGRAHAM STREET and FLUSHING AVENUE, STEWART AVENUE between INGRAHAM STREET and FLUSHING AVENUE, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET, INGRAHAM STREET between GARDNER AVENUE and STEWART AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+601261,Shooting Permit,09/16/2021 07:00:00 AM,09/16/2021 09:00:00 PM,09/07/2021 10:59:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601260,Shooting Permit,09/15/2021 07:00:00 AM,09/15/2021 09:00:00 PM,09/07/2021 10:53:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601257,Shooting Permit,09/14/2021 07:00:00 AM,09/14/2021 09:00:00 PM,09/07/2021 10:49:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601255,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 09:00:00 PM,09/07/2021 10:44:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601253,Shooting Permit,09/10/2021 07:00:00 AM,09/10/2021 09:00:00 PM,09/07/2021 10:40:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+601243,Shooting Permit,09/09/2021 11:00:00 AM,09/09/2021 11:00:00 PM,09/07/2021 09:45:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","234 STREET between 38 DRIVE and 41 AVENUE, POPLAR STREET between PROSPECT AVENUE and ORIENT AVENUE, POPLAR STREET between PROSPECT AVENUE and ORIENT AVENUE, PROSPECT AVENUE between POPLAR STREET and DEPEW AVENUE",Queens,11,111,Television,Episodic series,United States of America,11363
+601233,Shooting Permit,09/09/2021 08:00:00 AM,09/09/2021 10:00:00 PM,09/07/2021 08:58:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",HANCOCK PLACE between MORNINGSIDE AVENUE and MANHATTAN AVENUE,Manhattan,9,26,Commercial,PSA,United States of America,10027
+601229,Shooting Permit,09/10/2021 10:00:00 AM,09/11/2021 01:00:00 AM,09/07/2021 08:14:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+601168,Shooting Permit,09/19/2021 05:00:00 PM,09/20/2021 05:00:00 AM,09/06/2021 10:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+601169,Shooting Permit,09/20/2021 07:00:00 AM,09/20/2021 09:00:00 PM,09/06/2021 10:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 9 AVENUE and 8 AVENUE, WEST 15 STREET between 9 AVENUE and 8 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+601120,Shooting Permit,09/18/2021 06:00:00 AM,09/18/2021 08:00:00 PM,09/05/2021 10:09:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601087,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 08:00:00 PM,09/04/2021 03:14:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601085,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 08:00:00 PM,09/04/2021 03:09:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601084,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 08:00:00 PM,09/04/2021 03:06:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601080,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 08:00:00 PM,09/04/2021 02:26:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601078,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 08:00:00 PM,09/04/2021 02:22:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+601044,Shooting Permit,09/09/2021 05:00:00 PM,09/10/2021 06:00:00 AM,09/03/2021 07:58:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between WATER STREET and PEARL STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and JOHN STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+600996,Shooting Permit,09/09/2021 07:00:00 AM,09/09/2021 11:00:00 PM,09/03/2021 04:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between UNION STREET and DEGRAW STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between NEVINS STREET and DEAD END, DEGRAW STREET between NEVINS STREET and THIRD AVENUE, DOUGLASS STREET between NEVINS STREET and THIRD AVENUE",Brooklyn,6,78,Film,Feature,United States of America,11217
+600993,Shooting Permit,09/09/2021 06:00:00 AM,09/09/2021 09:00:00 PM,09/03/2021 03:53:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAHAM AVENUE between MESEROLE STREET and SCHOLES STREET,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11206
+600988,Shooting Permit,09/08/2021 06:00:00 AM,09/08/2021 11:00:00 PM,09/03/2021 03:39:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEGRAW STREET between THIRD AVENUE and FOURTH AVENUE,Brooklyn,6,78,Film,Feature,United States of America,11217
+600984,Shooting Permit,09/09/2021 06:00:00 AM,09/09/2021 11:00:00 PM,09/03/2021 03:33:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600975,Shooting Permit,09/10/2021 09:00:00 AM,09/11/2021 01:00:00 AM,09/03/2021 03:12:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 71 STREET and EAST 67 STREET, EAST 69 STREET between MADISON AVENUE and PARK AVENUE, EAST 67 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 70 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 63 STREET and EAST 60 STREET, MADISON AVENUE between EAST 62 STREET and EAST 61 STREET, EAST 65 STREET between 5 AVENUE and PARK AVENUE, EAST 64 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 64 STREET, MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10065"
+600971,Shooting Permit,09/08/2021 02:00:00 PM,09/08/2021 11:00:00 PM,09/03/2021 02:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARRISON AVENUE between HUNTS POINT AVENUE and BARRETTO STREET, OAK POINT AVENUE between FAILE STREET and BRYANT AVENUE, HUNTS POINT AVENUE between SENECA AVENUE and GILBERT PLACE",Bronx,2,41,WEB,Not Applicable,United States of America,10474
+600965,Shooting Permit,09/09/2021 05:00:00 AM,09/09/2021 02:00:00 PM,09/03/2021 02:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","14 STREET between PROSPECT PARK WEST and 8 AVENUE, PROSPECT PARK WEST between 14 STREET and 15 STREET",Brooklyn,"55, 6",78,Documentary,Not Applicable,United States of America,11215
+600961,Shooting Permit,09/08/2021 02:00:00 AM,09/08/2021 11:00:00 PM,09/03/2021 02:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 8 AVENUE and BROADWAY, WEST 72 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"5, 64, 7","18, 20, 22",Still Photography,Not Applicable,United States of America,"00083, 10023, 10036"
+600952,Shooting Permit,09/09/2021 08:00:00 AM,09/09/2021 10:00:00 PM,09/03/2021 01:52:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 54 STREET and EAST 55 STREET, 3 AVENUE between EAST 55 STREET and EAST 56 STREET, 3 AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 52 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 52 STREET, LEXINGTON AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 51 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 51 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152, 10154"
+600948,Shooting Permit,09/08/2021 05:00:00 PM,09/09/2021 07:00:00 AM,09/03/2021 01:34:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between WATER STREET and PEARL STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and JOHN STREET, SOUTH STREET between OLD SLIP and BROAD STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+600945,Shooting Permit,09/09/2021 08:00:00 AM,09/09/2021 10:00:00 PM,09/03/2021 01:19:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 3 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 3 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 4 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between SOUTH 2 STREET and SOUTH 3 STREET, WYTHE AVENUE between SOUTH 3 STREET and SOUTH 4 STREET, KENT AVENUE between SOUTH 5 STREET and SOUTH 4 STREET, KENT AVENUE between SOUTH 4 STREET and SOUTH 3 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11249
+600940,Shooting Permit,09/09/2021 07:00:00 AM,09/09/2021 09:00:00 PM,09/03/2021 01:08:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600938,Shooting Permit,09/08/2021 07:00:00 AM,09/08/2021 09:00:00 PM,09/03/2021 01:00:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600936,Shooting Permit,09/08/2021 07:00:00 AM,09/08/2021 10:00:00 PM,09/03/2021 12:54:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+600935,Shooting Permit,09/07/2021 06:00:00 AM,09/07/2021 10:00:00 PM,09/03/2021 12:53:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 124 STREET between MORNINGSIDE AVENUE and MANHATTAN AVENUE,Manhattan,9,26,Commercial,PSA,United States of America,10027
+600932,Shooting Permit,09/10/2021 01:00:00 PM,09/11/2021 03:00:00 AM,09/03/2021 12:52:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between GATES AVENUE and FULTON STREET, WASHINGTON AVENUE between GREENE AVENUE and GATES AVENUE, GATES AVENUE between CLINTON AVENUE and WASHINGTON AVENUE, WAVERLY AVENUE between GATES AVENUE and FULTON STREET, CLINTON AVENUE between GREENE AVENUE and FULTON STREET, FULTON STREET between WAVERLY AVENUE and CLINTON AVENUE, FULTON STREET between WASHINGTON AVENUE and WAVERLY AVENUE, WASHINGTON AVENUE between FULTON STREET and ATLANTIC AVENUE, WAVERLY AVENUE between ATLANTIC AVENUE and FULTON STREET, WASHINGTON AVENUE between GATES AVENUE and FULTON STREET",Brooklyn,2,88,Film,Feature,United States of America,11238
+600926,Shooting Permit,09/07/2021 06:00:00 AM,09/07/2021 08:00:00 PM,09/03/2021 12:20:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BOULEVARD between JEWEL AVENUE and 71 AVENUE, JEWEL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, 71 AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, KISSENA BOULEVARD between 71 AVENUE and AGUILAR AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,"5, 8","104, 107",Television,Episodic series,United States of America,"11237, 11367, 11385"
+600921,Shooting Permit,09/10/2021 11:00:00 AM,09/11/2021 01:00:00 AM,09/03/2021 12:06:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 2 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 2 STREET and EAST 3 STREET, EAST 4 STREET between BOWERY and LAFAYETTE STREET, EAST 3 STREET between 2 AVENUE and 1 AVENUE, EAST 1 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"2, 3",9,Film,Feature,United States of America,10003
+600916,Shooting Permit,09/08/2021 08:00:00 AM,09/08/2021 09:00:00 PM,09/03/2021 11:55:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 47 STREET and WEST 48 STREET, WEST 47 STREET between 10 AVENUE and 11 AVENUE, WEST 48 STREET between 9 AVENUE and 11 AVENUE, WEST 19 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10036"
+600912,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 09:00:00 PM,09/03/2021 11:33:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIPER BLVD NORTH between 75 STREET and 77 STREET, JUNIPER BLVD SOUTH between 80 STREET and DRY HARBOR ROAD",Queens,5,104,Television,Children,United States of America,11379
+600900,Shooting Permit,09/10/2021 07:00:00 AM,09/10/2021 11:00:00 PM,09/03/2021 10:51:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 63 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Still Photography,Not Applicable,United States of America,10065
+600897,Shooting Permit,09/09/2021 10:00:00 AM,09/10/2021 01:00:00 AM,09/03/2021 10:38:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 119 STREET and WEST 121 STREET, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 119 STREET between LENOX AVENUE and 5 AVENUE, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, W 116th St between LENOX AVENUE and Park Ave, EAST 120 STREET between 5 AVENUE and MADISON AVENUE, W 124TH ST between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,"10, 11","25, 28",Television,Cable-episodic,United States of America,"10026, 10027, 10035"
+600884,Shooting Permit,09/08/2021 07:00:00 AM,09/08/2021 08:00:00 PM,09/03/2021 09:00:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST 64 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023, 10065"
+600877,Theater Load in and Load Outs,09/16/2021 12:01:00 AM,09/17/2021 06:00:00 AM,09/03/2021 07:40:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and BROADWAY,Manhattan,5,14,Theater,Theater,United States of America,10036
+600868,Shooting Permit,09/08/2021 09:00:00 AM,09/09/2021 02:00:00 AM,09/02/2021 09:46:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVENUE and NORMAN AVE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET, NORMAN AVENUE between MONITOR STREET and KINGSLAND AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and NASSAU AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600837,Shooting Permit,09/04/2021 10:00:00 AM,09/05/2021 02:00:00 AM,09/02/2021 04:30:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and STARR STREET",Brooklyn,4,83,Film,Feature,United States of America,11237
+600826,Shooting Permit,09/08/2021 07:00:00 AM,09/08/2021 11:00:00 PM,09/02/2021 03:35:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between UNION STREET and DEGRAW STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between NEVINS STREET and THIRD AVENUE, DOUGLASS STREET between NEVINS STREET and THIRD AVENUE, THIRD AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,"2, 6","78, 84",Film,Feature,United States of America,11217
+600820,Shooting Permit,09/08/2021 08:00:00 AM,09/08/2021 11:00:00 PM,09/02/2021 03:21:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, E. 21st Street between Gramercy Park E and Lexington Ave, EAST 21 STREET between BROADWAY and PARK AVENUE SOUTH, 5 AVENUE between EAST 17 STREET and EAST 18 STREET, WEST 17 STREET between 5 AVENUE and 6 AVENUE, EAST 19 STREET between 5 AVENUE and BROADWAY, E. 21st Street between PARK AVENUE SOUTH and Gramercy Park W, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between BROADWAY and LEXINGTON AVENUE, EAST 23 STREET between LEXINGTON AVENUE and 3 AVENUE, WEST 19 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 18 STREET and EAST 19 STREET, WEST 26 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 26 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET, 11 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 28 STREET, 10 AVENUE between WEST 28 STREET and WEST 29 STREET",Manhattan,"4, 5, 6","10, 13",Television,Episodic series,United States of America,"10001, 10003, 10010, 10011"
+600804,Shooting Permit,09/09/2021 04:30:00 PM,09/09/2021 09:30:00 PM,09/02/2021 02:42:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 20 STREET and WEST 21 STREET, 8 AVENUE between WEST 20 STREET and WEST 22 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+600798,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 07:00:00 PM,09/02/2021 02:28:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 41 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"1, 5","1, 14",Commercial,Promo,United States of America,"10013, 10017, 10018, 10280"
+600795,Theater Load in and Load Outs,10/10/2021 07:00:00 AM,10/10/2021 10:00:00 PM,09/02/2021 02:23:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+600794,Theater Load in and Load Outs,10/09/2021 07:00:00 AM,10/09/2021 10:00:00 PM,09/02/2021 02:23:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+600793,Theater Load in and Load Outs,10/03/2021 07:00:00 AM,10/03/2021 10:00:00 PM,09/02/2021 02:23:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+600792,Theater Load in and Load Outs,10/02/2021 07:00:00 AM,10/02/2021 10:00:00 PM,09/02/2021 02:23:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between ST EDWARDS STREET and NORTH PORTLAND AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,"11201, 11205"
+600791,Shooting Permit,09/05/2021 06:00:00 AM,09/05/2021 08:00:00 PM,09/02/2021 02:19:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+600764,Shooting Permit,09/08/2021 11:00:00 AM,09/09/2021 01:00:00 AM,09/02/2021 01:02:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PLACE between VANDERBILT AVENUE and UNDERHILL AVENUE, PROSPECT PLACE between UNDERHILL AVENUE and WASHINGTON AVENUE, PLAZA STREET EAST between FLATBUSH AVENUE and VANDERBILT AVENUE, PLAZA STREET WEST between FLATBUSH AVENUE and LINCOLN PLACE, PROSPECT PLACE between VANDERBILT AVENUE and CARLTON AVENUE, WAVERLY AVENUE between ATLANTIC AVENUE and FULTON STREET",Brooklyn,"2, 55, 6, 8","77, 78, 88",Film,Feature,United States of America,"11217, 11238"
+600763,Shooting Permit,09/07/2021 08:00:00 AM,09/07/2021 09:00:00 PM,09/02/2021 01:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+600757,Shooting Permit,09/07/2021 08:00:00 AM,09/07/2021 10:00:00 PM,09/02/2021 12:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PLACE between VANDERBILT AVENUE and UNDERHILL AVENUE, PROSPECT PLACE between UNDERHILL AVENUE and WASHINGTON AVENUE, PLAZA STREET EAST between FLATBUSH AVENUE and VANDERBILT AVENUE, PLAZA STREET WEST between FLATBUSH AVENUE and LINCOLN PLACE, PROSPECT PLACE between VANDERBILT AVENUE and CARLTON AVENUE, WAVERLY AVENUE between ATLANTIC AVENUE and FULTON STREET",Brooklyn,"2, 55, 6, 8","77, 78, 88",Film,Feature,United States of America,"11217, 11238"
+600743,Shooting Permit,09/08/2021 07:00:00 AM,09/08/2021 09:00:00 PM,09/02/2021 11:34:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and THIERIOT AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and TAYLOR AVENUE, Soundview Ave between Leland ave and Underhill Ave, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+600742,Shooting Permit,09/09/2021 07:00:00 AM,09/09/2021 08:00:00 PM,09/02/2021 11:33:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, 3 AVENUE between EAST 25 STREET and EAST 26 STREET, 3 AVENUE between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 26 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Film,Feature,United States of America,10010
+600719,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 10:00:00 PM,09/02/2021 09:42:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+600718,Shooting Permit,09/09/2021 09:00:00 AM,09/10/2021 01:00:00 AM,09/02/2021 09:38:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+600697,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 11:00:00 PM,09/01/2021 11:19:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+600690,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 01:00:00 PM,09/01/2021 09:59:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, HANOVER STREET between EXCHANGE PLACE and WALL STREET, BEAVER STREET between HANOVER STREET and PEARL STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET, WILLIAM STREET between WALL STREET and EXCHANGE PLACE, WILLIAM STREET between SOUTH WILLIAM STREET and STONE STREET, WILLIAM STREET between STONE STREET and PEARL STREET, RIVINGTON STREET between CLINTON STREET and RIDGE STREET, ATTORNEY STREET between RIVINGTON STREET and DELANCEY STREET, RIVINGTON STREET between RIDGE STREET and PITT STREET, PITT STREET between STANTON STREET and RIVINGTON STREET",Manhattan,"1, 3","1, 7",Commercial,Commercial,United States of America,"10002, 10004, 10005"
+600689,Shooting Permit,09/13/2021 07:00:00 AM,09/13/2021 09:30:00 PM,09/01/2021 09:35:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, DOCK STREET between WATER STREET and FRONT STREET, EVERIT STREET between OLD FULTON STREET and DOUGHTY STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+600673,Shooting Permit,09/09/2021 08:00:00 AM,09/10/2021 02:00:00 AM,09/01/2021 07:45:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10018
+600666,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 10:00:00 PM,09/01/2021 06:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET,Manhattan,3,7,Television,Special/Awards Show,United States of America,10002
+600636,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 09:00:00 PM,09/01/2021 04:58:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 175 STREET between AMSTERDAM AVENUE and AUDUBON AVENUE,Manhattan,12,33,Film,Feature,United States of America,10033
+600634,Shooting Permit,09/07/2021 06:00:00 AM,09/07/2021 11:59:00 PM,09/01/2021 04:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 8 STREET and EAST 12 STREET, EAST 10 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 9 STREET between 6 AVENUE and 5 AVENUE, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE",Manhattan,2,6,Television,Episodic series,United States of America,"10003, 10011"
+600617,Shooting Permit,09/08/2021 11:00:00 AM,09/09/2021 01:00:00 AM,09/01/2021 03:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 STREET between 50 AVENUE and BORDEN AVENUE, 50 AVENUE between 2 STREET and 5 STREET, BORDEN AVENUE between 5 STREET and VERNON BOULEVARD, EAST 58 STREET between PARK AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 58 STREET and EAST 57 STREET, PARK AVENUE between EAST 60 STREET and EAST 57 STREET, 49 AVENUE between VERNON BOULEVARD and JACKSON AVENUE",Queens,"2, 5, 6, 64, 8","108, 17, 18, 19, 22",Television,Cable-episodic,United States of America,"10022, 10128, 10155, 11101"
+600596,Theater Load in and Load Outs,09/06/2021 12:01:00 AM,09/07/2021 11:59:00 PM,09/01/2021 02:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+600589,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 09:00:00 PM,09/01/2021 02:47:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","SNUG HARBOR ROAD between RICHMOND TERRACE and KISSEL AVENUE, KISSEL AVENUE between SNUG HARBOR ROAD and WALES PLACE",Staten Island,1,120,Television,Episodic series,United States of America,"10301, 10310"
+600578,Shooting Permit,09/04/2021 06:00:00 PM,09/05/2021 06:00:00 AM,09/01/2021 02:27:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 10 AVENUE and NEW UTRECHT AVENUE, 43 STREET between NEW UTRECHT AVENUE and FT HAMILTON PARKWAY, NEW UTRECHT AVENUE between 42 STREET and 43 STREET, NEW UTRECHT AVENUE between 43 STREET and 44 STREET, FT HAMILTON PARKWAY between 42 STREET and 43 STREET, 10 AVENUE between 39 STREET and 41 STREET, 10 AVENUE between 42 STREET and 44 STREET, FT HAMILTON PARKWAY between 42 STREET and 43 STREET, 42 STREET between 10 AVENUE and FT HAMILTON PARKWAY, NEW UTRECHT AVENUE between 40 STREET and 41 STREET",Brooklyn,12,66,Film,Feature,United States of America,11219
+600571,Theater Load in and Load Outs,09/09/2021 12:01:00 AM,09/10/2021 08:00:00 AM,09/01/2021 02:05:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 31 STREET and WEST 33 STREET, WEST 31 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+600558,Shooting Permit,09/08/2021 05:00:00 PM,09/09/2021 01:00:00 AM,09/01/2021 01:20:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",23 AVENUE between 31 STREET and 32 STREET,Queens,1,114,Television,Episodic series,United States of America,11105
+600550,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 09:00:00 PM,09/01/2021 01:11:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 78 STREET and EAST 79 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10023, 10024, 10075"
+600531,Shooting Permit,09/10/2021 04:00:00 PM,09/11/2021 05:00:00 AM,09/01/2021 12:25:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between BUSHWICK AVENUE and EVERGREEN AVENUE, CHARLES PLACE between MYRTLE AVENUE and DEAD END, WILLOUGHBY AVENUE between MYRTLE AVENUE and EVERGREEN AVENUE, BUSHWICK AVENUE between STANWIX STREET and SUYDAM STREET, EVERGREEN AVENUE between TROUTMAN STREET and MYRTLE AVENUE, SUYDAM STREET between MYRTLE AVENUE and BROADWAY, BROADWAY between SUYDAM STREET and WILLOUGHBY AVENUE, WILLOUGHBY AVENUE between WILSON AVENUE and CENTRAL AVENUE, WILLOUGHBY AVENUE between BUSHWICK AVENUE and MYRTLE AVENUE, WILLOUGHBY AVENUE between BROADWAY and BUSHWICK AVENUE, TROUTMAN STREET between BUSHWICK AVENUE and EVERGREEN AVENUE",Brooklyn,"3, 4","81, 83",Television,Episodic series,United States of America,"11206, 11221"
+600530,Shooting Permit,09/07/2021 01:00:00 PM,09/08/2021 01:00:00 AM,09/01/2021 12:22:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",WAVERLY PLACE between 6 AVENUE and GROVE STREET,Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+600523,Shooting Permit,09/07/2021 06:00:00 AM,09/07/2021 11:00:00 PM,09/01/2021 12:00:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+600521,Shooting Permit,09/07/2021 06:30:00 AM,09/07/2021 09:00:00 PM,09/01/2021 11:56:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600519,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 11:00:00 PM,09/01/2021 11:44:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between UNION STREET and DEGRAW STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between NEVINS STREET and DEAD END, DEGRAW STREET between NEVINS STREET and THIRD AVENUE, DOUGLASS STREET between NEVINS STREET and THIRD AVENUE, THIRD AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Film,Feature,United States of America,11217
+600518,Shooting Permit,09/03/2021 05:00:00 PM,09/04/2021 07:00:00 AM,09/01/2021 11:43:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","THAMES STREET between KNICKERBOCKER AVENUE and MORGAN AVENUE, THAMES STREET between MORGAN AVENUE and BOGART STREET, VANDERVOORT PLACE between THAMES STREET and FLUSHING AVENUE, KNICKERBOCKER AVENUE between THAMES STREET and FLUSHING AVENUE, KNICKERBOCKER AVENUE between THAMES STREET and GRATTAN STREET, PORTER AVENUE between FLUSHING AVENUE and JOHNSON AVENUE, GRATTAN STREET between MORGAN AVENUE and KNICKERBOCKER AVENUE",Brooklyn,1,90,Film,Feature,United States of America,"11206, 11237"
+600503,Shooting Permit,09/03/2021 06:00:00 PM,09/04/2021 06:00:00 AM,09/01/2021 11:19:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between MT OLIVET CRESCENT and 69 STREET,Queens,5,104,Television,Episodic series,United States of America,11379
+600479,Shooting Permit,09/03/2021 09:00:00 AM,09/03/2021 07:00:00 PM,09/01/2021 10:42:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and LEONARD STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, CENTRE STREET between LEONARD STREET and WHITE STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, LAFAYETTE STREET between WALKER STREET and CANAL STREET, CENTRE STREET between CANAL STREET and HESTER STREET, LAFAYETTE STREET between WORTH STREET and DUANE STREET, CENTRE STREET between WHITE STREET and WALKER STREET, WORTH STREET between CENTRE STREET and BAXTER STREET",Manhattan,"1, 2",5,Television,Episodic series,United States of America,"10007, 10013"
+600477,Shooting Permit,09/08/2021 06:30:00 AM,09/08/2021 09:00:00 PM,09/01/2021 10:39:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+600443,Shooting Permit,09/02/2021 06:00:00 PM,09/03/2021 06:00:00 AM,09/01/2021 09:02:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between HUDSON STREET and VARICK STREET, ERICSSON PLACE between HUDSON STREET and VARICK STREET, BEACH STREET between HUDSON STREET and GREENWICH STREET, HUDSON STREET between NORTH MOORE STREET and ERICSSON PLACE, HUDSON STREET between NORTH MOORE STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET, VARICK STREET between FRANKLIN STREET and LEONARD STREET, WEST BROADWAY between LEONARD STREET and WORTH STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, WEST BROADWAY between WORTH STREET and THOMAS STREET, NORTH MOORE STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Film,Feature,United States of America,10013
+600410,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 11:00:00 PM,08/31/2021 10:50:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, 10 STREET between 44 DRIVE and 45 AVENUE, VERNON BLVD between 44 DRIVE and 45 AVE, 44 DRIVE between VERNON BOULEVARD and 10 STREET, 45 AVE between VERNON BLVD and 11TH ST, VERNON BLVD between 45TH AVE and 45TH RD, 45 ROAD between VERNON BOULEVARD and 11 STREET, 44 DRIVE between 10 STREET and 11 STREET, 10 STREET between 44 DRIVE and 44 ROAD, 44 ROAD between 9 STREET and 10 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+600388,Theater Load in and Load Outs,11/01/2021 06:00:00 AM,11/05/2021 05:00:00 PM,08/31/2021 05:48:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+600369,Shooting Permit,09/03/2021 02:30:00 AM,09/04/2021 03:30:00 PM,08/31/2021 05:01:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between KINGSLAND AVENUE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600364,Shooting Permit,09/07/2021 10:00:00 AM,09/07/2021 10:00:00 PM,08/31/2021 04:50:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","164 PLACE between 82 ROAD and GOETHALS AVENUE, 164 PLACE between 82 ROAD and GRAND CENTRAL PARKWAY, 164 STREET between 82 ROAD and GOETHALS AVENUE, GOETHALS AVENUE between 165 STREET and 164 PLACE, 164 PLACE between GOETHALS AVENUE and 81 AVENUE, 82 ROAD between 165 STREET and 164 PLACE, 82 ROAD between 164 PLACE and 164 STREET, GOETHALS AVENUE between 164 PLACE and 164 STREET, 164 STREET between GOETHALS AVENUE and 82 ROAD, GOETHALS AVENUE between 164 STREET and 161 STREET, UNION TURNPIKE between 160 STREET and 161 STREET, UNION TURNPIKE between 161 STREET and 162 STREET, UNION TURNPIKE between 162 STREET and 164 STREET",Queens,8,107,Television,Episodic series,United States of America,"11366, 11432"
+600345,Shooting Permit,09/03/2021 10:00:00 AM,09/04/2021 01:00:00 AM,08/31/2021 04:09:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 66 STREET and WEST 67 STREET, WEST 34 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 34 STREET, WEST 65 STREET between AMSTERDAM AVENUE and WEST END AVENUE, AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET",Manhattan,"4, 7","10, 20",Film,Feature,United States of America,"10001, 10018, 10023"
+600340,Shooting Permit,09/07/2021 03:00:00 AM,09/07/2021 09:00:00 PM,08/31/2021 04:00:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST MT EDEN AVENUE between MORRIS AVENUE and MONROE AVENUE, MORRIS AVENUE between EAST MT EDEN AVENUE and TELLER AVENUE, FINDLAY AVENUE between EAST 168 STREET and EAST 169 STREET, FINDLAY AVENUE between EAST 168 STREET and EAST 167 STREET, EAST 168 STREET between COLLEGE AVENUE and CLAY AVENUE, WEBSTER AVENUE between EAST 168 STREET and EAST 167 STREET, WEBSTER AVENUE between EAST 167 STREET and EAST 166 STREET, WEBSTER AVENUE between EAST 169 STREET and EAST 171 STREET, TOWNSEND AVENUE between EAST 175 STREET and EAST 176 STREET, E 173rd St between WEBSTER AVENUE and Park Ave",Bronx,"3, 4, 5","42, 44, 46",Television,Cable-episodic,United States of America,"10453, 10456, 10457"
+600316,Shooting Permit,09/03/2021 02:00:00 PM,09/04/2021 03:00:00 AM,08/31/2021 02:35:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and NEWEL STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between MCGUINNESS BOULEVARD and NEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600311,Shooting Permit,09/01/2021 10:00:00 AM,09/01/2021 11:00:00 PM,08/31/2021 02:16:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVE between KINGSLAND AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600306,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 10:00:00 PM,08/31/2021 01:46:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Commercial,Commercial,United States of America,"10019, 10020"
+600304,Shooting Permit,09/09/2021 07:00:00 AM,09/09/2021 10:00:00 PM,08/31/2021 01:43:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+600301,Shooting Permit,09/09/2021 06:00:00 AM,09/09/2021 09:00:00 PM,08/31/2021 01:31:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","SANDS STREET between ADAMS STREET and JAY STREET, PEARL STREET between SANDS STREET and HIGH STREET, HIGH STREET between JAY STREET and PEARL STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+600299,Theater Load in and Load Outs,09/08/2021 12:01:00 AM,09/11/2021 08:00:00 AM,08/31/2021 01:19:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+600293,Shooting Permit,09/03/2021 07:00:00 AM,09/03/2021 11:00:00 PM,08/31/2021 12:56:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 82 STREET between 3 AVENUE and 2 AVENUE,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10028, 10075"
+600285,Theater Load in and Load Outs,09/23/2021 12:01:00 AM,09/28/2021 06:00:00 AM,08/31/2021 12:36:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+600283,Theater Load in and Load Outs,09/07/2021 12:01:00 AM,09/12/2021 06:00:00 AM,08/31/2021 12:34:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 66 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+600279,Shooting Permit,09/07/2021 05:00:00 PM,09/08/2021 07:00:00 AM,08/31/2021 12:21:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between FLETCHER STREET and JOHN STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10038, 10045"
+600276,Shooting Permit,09/02/2021 08:00:00 AM,09/02/2021 10:00:00 PM,08/31/2021 12:14:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+600273,Shooting Permit,09/01/2021 08:00:00 AM,09/01/2021 08:00:00 PM,08/31/2021 12:10:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+600269,Shooting Permit,09/09/2021 02:00:00 PM,09/10/2021 03:30:00 AM,08/31/2021 12:04:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 139 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 139 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 140 STREET and WEST 139 STREET, WEST 140 STREET between EDGECOMBE AVENUE and ADAM CLAYTON POWELL BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 141 STREET and WEST 140 STREET, WEST 141 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ST NICHOLAS AVENUE between WEST 145 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 135 STREET, EDGECOMBE AVENUE between WEST 140 STREET and WEST 139 STREET",Manhattan,"10, 9","26, 30, 32",Television,Episodic series,United States of America,10030
+600243,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 10:00:00 PM,08/31/2021 11:31:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+600193,Shooting Permit,09/03/2021 07:00:00 PM,09/04/2021 09:00:00 AM,08/31/2021 09:29:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVE between SUMMIT STREET and HICKS ST, MEEKER AVENUE between HUMBOLDT STREET and MONITOR STREET",Queens,"1, 6","76, 94",Film,Feature,United States of America,"11211, 11222, 11231"
+600191,Shooting Permit,09/04/2021 12:00:00 PM,09/05/2021 10:00:00 PM,08/31/2021 09:26:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between PINE STREET and CRESCENT STREET, FULTON STREET between CRESCENT STREET and GRANT AVENUE, CRESCENT STREET between RIDGEWOOD AVENUE and FULTON STREET, CRESCENT STREET between FULTON STREET and ATLANTIC AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11208
+600169,Shooting Permit,09/02/2021 12:00:00 PM,09/03/2021 02:00:00 AM,08/31/2021 07:44:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","HOYT AVENUE NORTH between 19 STREET and 21 STREET, 142 STREET between 14 AVENUE and 15 AVENUE, 142 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET",Queens,"1, 7","109, 114",Film,Feature,United States of America,"11102, 11105, 11357"
+600149,Shooting Permit,09/03/2021 10:00:00 AM,09/03/2021 11:59:00 PM,08/30/2021 11:57:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between ZULETTE AVENUE and WELLMAN AVENUE, ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, WELLMAN AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and DUDLEY AVENUE, ERICSON PLACE between MAITLAND AVENUE and ROEBLING AVENUE, Hutchinson River Pkwy E between E Tremont Ave and Roebling Pl, EAST TREMONT AVENUE between LA SALLE AVENUE and MAYFLOWER AVENUE",Bronx,10,45,Television,Cable-episodic,United States of America,10461
+600141,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 11:59:00 PM,08/30/2021 10:20:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 95 STREET between 5 AVENUE and MADISON AVENUE, EAST 94 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 93 STREET and EAST 97 STREET, EAST 96 STREET between 5 AVENUE and MADISON AVENUE, EAST 95 STREET between MADISON AVENUE and PARK AVENUE, EAST 96 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 8","19, 23",Television,Episodic series,United States of America,"10029, 10128"
+600130,Shooting Permit,09/01/2021 02:00:00 PM,09/01/2021 11:00:00 PM,08/30/2021 07:58:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 89 STREET between RIVERSIDE DRIVE and WEST END AVENUE,Manhattan,7,24,Television,Episodic series,United States of America,10024
+600114,Shooting Permit,09/08/2021 10:00:00 AM,09/09/2021 03:00:00 AM,08/30/2021 06:23:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 23 AVENUE and 24 AVENUE, 33 STREET between DITMARS BOULEVARD and 23 AVENUE, 23 AVENUE between 33 STREET and 32 STREET, 31 STREET between DITMARS BOULEVARD and 23 AVENUE, 23 AVENUE between 29 STREET and 31 STREET, 31 STREET between 23 AVENUE and 23 ROAD, 32 STREET between 23 AVENUE and 23 ROAD, 31 STREET between 21 AVENUE and DITMARS BOULEVARD, 31 STREET between 20 AVENUE and 21 AVENUE, 21 AVENUE between 29 STREET and 31 STREET, 21 AVENUE between 31 STREET and 33 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11105"
+600105,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 10:00:00 PM,08/30/2021 05:41:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORMAN AVENUE between KINGSLAND AVENUE and SUTTON STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+600099,Shooting Permit,08/31/2021 05:30:00 PM,09/01/2021 06:00:00 AM,08/30/2021 04:45:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 7 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 47 STREET, WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE",Manhattan,"4, 5","14, 18",Commercial,Promo,United States of America,10036
+600078,Shooting Permit,09/01/2021 08:00:00 AM,09/02/2021 02:00:00 AM,08/30/2021 03:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between PARSONS BOULEVARD and 147 STREET, WHITESTONE EXPRESSWAY between 3RD AVE and 5TH AVE, WHITESTONE EXPRESSWAY between 3RD AVE and 4TH AVE, POINT CRESCENT between BOULEVARD and 141 STREET, BOULEVARD between NORTH DRIVE and CENTER DRIVE, CENTER DRIVE between BOULEVARD and MALBA DRIVE, SOUTH DRIVE between CENTER DRIVE and MALBA DRIVE",Queens,7,109,Television,Episodic series,United States of America,11357
+600071,Shooting Permit,09/02/2021 08:00:00 AM,09/02/2021 11:00:00 PM,08/30/2021 03:32:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 108 STREET and WEST 116 STREET, BROADWAY between WEST 113 STREET and WEST 115 STREET, WEST 113 STREET between BROADWAY and RIVERSIDE DRIVE",Manhattan,"7, 9","24, 26",Film,Feature,United States of America,"10025, 10027"
+600065,Shooting Permit,09/03/2021 10:00:00 AM,09/04/2021 02:00:00 AM,08/30/2021 03:12:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, YORK STREET between BRIDGE STREET and GOLD STREET, Prospect Street between BRIDGE STREET and Jay Street",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+600064,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 11:00:00 PM,08/30/2021 03:09:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+600063,Shooting Permit,09/09/2021 06:00:00 AM,09/09/2021 08:00:00 PM,08/30/2021 03:08:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WAVERLY AVENUE between GREENE AVENUE and GATES AVENUE, GREENE AVENUE between WASHINGTON AVENUE and ST JAMES PLACE, MYRTLE AVENUE between BROADWAY and TROUTMAN STREET, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, MYRTLE AVENUE between TROUTMAN STREET and BUSHWICK AVENUE",Brooklyn,"2, 4","83, 88",Commercial,Commercial,United States of America,"11206, 11221, 11238"
+600058,Shooting Permit,09/02/2021 10:00:00 AM,09/03/2021 01:00:00 AM,08/30/2021 03:00:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+600056,Shooting Permit,09/01/2021 09:00:00 AM,09/01/2021 11:59:00 PM,08/30/2021 02:58:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between BEVERLEY ROAD and CORTELYOU ROAD, BEVERLEY ROAD between RUGBY ROAD and ARGYLE ROAD",Brooklyn,14,70,Television,Pilot,United States of America,11226
+600054,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 09:00:00 PM,08/30/2021 02:55:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 81 STREET and WEST 77 STREET, CENTRAL PARK WEST between WEST 77 STREET and WEST 76 STREET, CENTRAL PARK WEST between WEST 76 STREET and WEST 75 STREET, CENTRAL PARK WEST between WEST 75 STREET and WEST 74 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 75 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,"10023, 10024"
+600049,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 09:00:00 PM,08/30/2021 02:43:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and VARICK AVENUE, PORTER AVENUE between JOHNSON AVENUE and GRATTAN STREET",Brooklyn,1,90,Television,Made for TV/mini-series,United States of America,11237
+600040,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 10:00:00 PM,08/30/2021 01:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDER ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+600030,Shooting Permit,09/09/2021 06:00:00 AM,09/10/2021 11:59:00 PM,08/30/2021 01:18:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, BORDEN AVENUE between REVIEW AVENUE and 29 STREET, 29 STREET between REVIEW AVENUE and BORDEN AVENUE, REVIEW AVENUE between BORDEN AVENUE and 35 STREET, BORDEN AVENUE between 29 STREET and DEAD END, BORDEN AVENUE between REVIEW AVENUE and 29 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+600029,Shooting Permit,09/02/2021 08:30:00 PM,09/02/2021 11:30:00 PM,08/30/2021 01:17:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 19 STREET between 8 AVENUE and 7 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+600028,Shooting Permit,09/02/2021 02:00:00 PM,09/03/2021 03:30:00 AM,08/30/2021 01:17:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, WEST 19 STREET between 8 AVENUE and 9 AVENUE, WEST 18 STREET between 9 AVENUE and 8 AVENUE, WEST 18 STREET between 8 AVENUE and 7 AVENUE, WEST 19 STREET between 7 AVENUE and 6 AVENUE, WEST 20 STREET between 7 AVENUE and 6 AVENUE, 8 AVENUE between WEST 19 STREET and WEST 20 STREET, 7 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+600014,Shooting Permit,09/02/2021 09:00:00 AM,09/02/2021 11:00:00 PM,08/30/2021 12:09:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLOUGHBY AVENUE between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between WILLOUGHBY AVENUE and STARR STREET",Brooklyn,4,83,Film,Feature,United States of America,11237
+600008,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 10:00:00 PM,08/30/2021 11:36:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+599995,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 09:00:00 PM,08/30/2021 11:14:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+599963,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 06:00:00 PM,08/30/2021 09:13:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between FORSYTH STREET and PIKE STREET, HENRY STREET between MARKET STREET and CATHERINE STREET",Manhattan,3,5,Commercial,Commercial,United States of America,10002
+599962,Shooting Permit,09/02/2021 12:00:00 PM,09/02/2021 11:59:00 PM,08/30/2021 09:06:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEAVER STREET between BROADWAY and NEW STREET, BROADWAY between STONE STREET and BEAVER STREET, BEAVER STREET between BROAD STREET and NEW STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10004, 10005"
+599854,Theater Load in and Load Outs,09/30/2021 12:01:00 AM,10/01/2021 06:00:00 AM,08/28/2021 09:00:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599853,Theater Load in and Load Outs,09/28/2021 12:01:00 AM,09/29/2021 06:00:00 AM,08/28/2021 08:36:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+599852,Theater Load in and Load Outs,09/27/2021 12:01:00 AM,09/27/2021 11:59:00 PM,08/28/2021 08:32:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+599850,Theater Load in and Load Outs,09/21/2021 12:01:00 AM,09/22/2021 06:00:00 AM,08/28/2021 08:22:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+599841,Shooting Permit,09/03/2021 03:00:00 PM,09/04/2021 05:00:00 AM,08/27/2021 09:31:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","88 STREET between COOPER AVENUE and 72 DRIVE, DORAN AVENUE between 83 STREET and 88 STREET, 72 DRIVE between 88 STREET and DEAD END, COOPER AVENUE between 88 STREET and METROPOLITAN AVENUE, WOODHAVEN BOULEVARD between 66 AVENUE and COOPER AVENUE, DORAN AVENUE between 88 STREET and 89 STREET, AUBREY AVENUE between 88 STREET and METROPOLITAN AVENUE",Queens,"5, 6","104, 112",Television,Episodic series,United States of America,"11374, 11385"
+599832,Shooting Permit,09/03/2021 10:00:00 AM,09/03/2021 10:30:00 PM,08/27/2021 07:44:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","DYCKMAN STREET between HENSHAW STREET and DEAD END, PAYSON AVENUE between DYCKMAN STREET and RIVERSIDE DRIVE, DYCKMAN STREET between HENSHAW STREET and PAYSON AVENUE, DYCKMAN STREET between PAYSON AVENUE and SEAMAN AVENUE, RIVERSIDE DRIVE between DYCKMAN STREET and STAFF STREET, HENSHAW STREET between DYCKMAN STREET and RIVERSIDE DRIVE",Manhattan,12,34,Television,Episodic series,United States of America,"10034, 10040"
+599828,Shooting Permit,09/02/2021 10:00:00 AM,09/03/2021 04:00:00 AM,08/27/2021 07:13:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","88 STREET between COOPER AVENUE and 72 DRIVE, DORAN AVENUE between 83 STREET and 88 STREET, DORAN AVENUE between 88 STREET and 89 STREET, 72 DRIVE between 88 STREET and DEAD END, COOPER AVENUE between 88 STREET and METROPOLITAN AVENUE, WOODHAVEN BOULEVARD between 66 AVENUE and COOPER AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+599818,Shooting Permit,08/31/2021 05:00:00 PM,09/01/2021 07:00:00 AM,08/27/2021 05:10:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between WHITEHALL STREET and OLD SLIP, BROAD STREET between SOUTH STREET and WATER STREET, FDR DRIVE between EAST HOUSTON STREET and DELANCEY STREET, NASSAU STREET between GOLD STREET and NAVY STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, NASSAU STREET between BRIDGE STREET and GOLD STREET",Manhattan,"1, 2, 3","1, 5, 7, 84",Film,Feature,United States of America,"10002, 10004, 11038, 11201"
+599816,Shooting Permit,08/31/2021 08:00:00 AM,09/01/2021 02:00:00 AM,08/27/2021 04:59:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROOSEVELT AVENUE between 60 STREET and 61 STREET, ROOSEVELT AVENUE between 57 STREET and 59 STREET, 61 STREET between WOODSIDE AVENUE and 43 AVENUE, 62 STREET between WOODSIDE AVENUE and 43 AVENUE, 61 STREET between ROOSEVELT AVENUE and WOODSIDE AVENUE, 61 STREET between 39 AVENUE and ROOSEVELT AVENUE, QUEENS BOULEVARD between 52 STREET and 59 STREET, 58 STREET between QUEENS BOULEVARD and 47 AVENUE, 60 STREET between ROOSEVELT AVENUE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11377
+599810,Shooting Permit,09/01/2021 08:00:00 AM,09/01/2021 10:00:00 PM,08/27/2021 04:37:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND AVENUE between 65 STREET and 66 STREET, GRAND AVE. between 66 STREET and 55 DR, GRAND AVENUE between 64 STREET and FLUSHING AVENUE, FLUSHING AVENUE between 65 STREET and 64 STREET, 66 STREET between GRAND AVENUE and 58 AVENUE, 58 AVENUE between 66 STREET and DEAD END, HAMILTON PLACE between GRAND AVENUE and 55 AVE, 66 STREET between HAMILTON PLACE and PERRY AVENUE",Queens,5,104,Television,Episodic series,United States of America,11378
+599809,Shooting Permit,09/02/2021 05:00:00 PM,09/02/2021 11:59:00 PM,08/27/2021 04:36:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WHITE STREET between CHURCH STREET and BROADWAY,Manhattan,1,1,Commercial,Industrial/Corporate,United States of America,10013
+599807,Shooting Permit,09/03/2021 05:00:00 PM,09/04/2021 07:00:00 AM,08/27/2021 04:28:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CLINTON STREET and COLUMBIA STREET, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, DELANCEY STREET between CLINTON STREET and PITT STREET, CLINTON STREET between DELANCEY STREET and RIVINGTON STREET",Brooklyn,"1, 3","7, 90",Film,Feature,United States of America,"10002, 11211, 11249"
+599804,Shooting Permit,09/02/2021 05:00:00 PM,09/03/2021 02:30:00 AM,08/27/2021 03:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 20TH STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, E 20TH STREET between GRAMERCY PARK WEST and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 20TH STREET and E 21ST STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, E 21ST STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, E 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+599802,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 09:00:00 PM,08/27/2021 03:45:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVEMEYER AVENUE between BRUCKNER BOULEVARD and QUIMBY AVENUE, HAVEMEYER AVENUE between STORY AVENUE and HERMANY AVENUE, QUIMBY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, STORY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HERMANY AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, LAFAYETTE AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, Soundview Ave between Rosedale Ave and St. Lawrence Ave, LAFAYETTE AVENUE between SOUNDVIEW AVENUE and BEACH AVENUE, SOUNDVIEW AVENUE between ST LAWRENCE AVENUE and SEWARD AVENUE, SOUNDVIEW AVENUE between BEACH AVENUE and TAYLOR AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+599801,Shooting Permit,09/03/2021 01:00:00 PM,09/04/2021 03:00:00 AM,08/27/2021 03:42:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, 5 AVENUE between EAST 90 STREET and EAST 91 STREET, EAST 90 STREET between 5 AVENUE and MADISON AVENUE, EAST 91 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 89 STREET and EAST 90 STREET, MADISON AVENUE between EAST 91 STREET and EAST 89 STREET, EAST 92 STREET between LEXINGTON AVENUE and 3 AVENUE, 5 AVENUE between EAST 91 STREET and EAST 96 STREET, 5 AVENUE between EAST 88 STREET and EAST 89 STREET",Brooklyn,"1, 64, 8","19, 22, 94",Television,Cable-episodic,United States of America,"10128, 11222"
+599800,Shooting Permit,09/03/2021 04:00:00 PM,09/04/2021 06:00:00 AM,08/27/2021 03:40:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between BROADWAY and WILLIAM STREET, CEDAR STREET between BROADWAY and NASSAU STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, NASSAU STREET between MAIDEN LANE and LIBERTY STREET, NASSAU STREET between MAIDEN LANE and JOHN STREET, MAIDEN LANE between NASSAU STREET and LIBERTY PLACE",Manhattan,1,1,Film,Feature,United States of America,"10005, 10038, 10045, 10271"
+599799,Shooting Permit,09/01/2021 11:00:00 PM,09/02/2021 01:00:00 AM,08/27/2021 03:36:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+599796,Shooting Permit,09/17/2021 06:00:00 AM,09/17/2021 11:59:00 PM,08/27/2021 03:10:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+599793,Shooting Permit,09/16/2021 06:00:00 AM,09/16/2021 11:59:00 PM,08/27/2021 03:04:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+599792,Theater Load in and Load Outs,08/28/2021 06:00:00 AM,09/15/2021 11:59:00 PM,08/27/2021 03:03:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and SOUTH PORTLAND AVENUE, ATLANTIC AVENUE between FLATBUSH AVENUE and 6 AVENUE, DEAN STREET between FLATBUSH AVENUE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and 5 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+599788,Shooting Permit,09/15/2021 06:00:00 AM,09/15/2021 11:59:00 PM,08/27/2021 02:46:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+599785,Shooting Permit,09/14/2021 06:00:00 AM,09/14/2021 11:59:00 PM,08/27/2021 02:37:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+599783,Shooting Permit,09/13/2021 06:00:00 AM,09/13/2021 11:59:00 PM,08/27/2021 02:32:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+599773,Theater Load in and Load Outs,09/27/2021 12:01:00 AM,10/04/2021 06:00:00 AM,08/27/2021 02:03:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+599759,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 11:00:00 PM,08/27/2021 01:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, 49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between SKILLMAN AVENUE and 21 STREET, 21 STREET between 50 AVENUE and 49 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+599731,Theater Load in and Load Outs,09/26/2021 06:00:00 AM,09/26/2021 11:59:00 PM,08/27/2021 11:50:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599730,Theater Load in and Load Outs,09/25/2021 06:00:00 AM,09/25/2021 11:59:00 PM,08/27/2021 11:45:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599729,Shooting Permit,09/03/2021 10:00:00 PM,09/04/2021 10:00:00 AM,08/27/2021 11:38:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between ORIENT AVENUE and MORGAN AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11211
+599728,Theater Load in and Load Outs,09/23/2021 06:00:00 AM,09/24/2021 11:59:00 PM,08/27/2021 11:37:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599727,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 09:00:00 PM,08/27/2021 11:36:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between COURT STREET and CLINTON STREET, ATLANTIC AVENUE between CLINTON STREET and HENRY STREET, COURT STREET between ATLANTIC AVENUE and STATE STREET, COURT STREET between STATE STREET and SCHERMERHORN STREET, SCHERMERHORN STREET between COURT STREET and BOERUM PLACE, ATLANTIC AVENUE between SMITH STREET and HOYT STREET, ATLANTIC AVENUE between HOYT STREET and BOND STREET, ATLANTIC AVENUE between BOND STREET and NEVINS STREET, ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE",Brooklyn,"2, 6","76, 84",Television,Cable-episodic,United States of America,"11201, 11217"
+599725,Theater Load in and Load Outs,09/22/2021 12:01:00 AM,09/22/2021 11:59:00 PM,08/27/2021 11:31:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599723,Theater Load in and Load Outs,09/18/2021 12:01:00 AM,09/19/2021 06:00:00 AM,08/27/2021 11:24:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599721,Theater Load in and Load Outs,09/15/2021 12:01:00 AM,09/16/2021 06:00:00 AM,08/27/2021 11:15:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599717,Theater Load in and Load Outs,09/08/2021 12:01:00 AM,09/10/2021 06:00:00 AM,08/27/2021 11:09:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599715,Theater Load in and Load Outs,09/07/2021 12:01:00 AM,09/07/2021 11:59:00 PM,08/27/2021 11:03:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599714,Theater Load in and Load Outs,09/04/2021 12:01:00 AM,09/05/2021 06:00:00 AM,08/27/2021 10:56:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+599712,Shooting Permit,09/03/2021 08:30:00 AM,09/03/2021 11:00:00 PM,08/27/2021 10:45:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 35 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+599711,Shooting Permit,09/02/2021 08:00:00 AM,09/02/2021 11:00:00 PM,08/27/2021 10:45:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 26 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 25 STREET, 11 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+599710,Shooting Permit,09/02/2021 05:00:00 PM,09/03/2021 07:00:00 AM,08/27/2021 10:41:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CLINTON STREET and COLUMBIA STREET, DELANCEY STREET between CLINTON STREET and PITT STREET, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 5 STREET and SOUTH 6 STREET, CLINTON STREET between DELANCEY STREET and RIVINGTON STREET",Brooklyn,"1, 3","7, 90",Film,Feature,United States of America,"10002, 11211, 11249"
+599705,DCAS Prep/Shoot/Wrap Permit,08/31/2021 05:00:00 PM,08/31/2021 10:00:00 PM,08/27/2021 10:29:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, CENTRE STREET between HOGAN PLACE and WORTH STREET, WORTH STREET between CENTRE STREET and MULBERRY STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,"10007, 10013"
+599703,Shooting Permit,08/31/2021 10:00:00 AM,08/31/2021 11:59:00 PM,08/27/2021 10:17:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between CORTELYOU ROAD and BEVERLEY ROAD, BEVERLEY ROAD between ARGYLE ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Television,Pilot,United States of America,11226
+599700,Shooting Permit,08/29/2021 07:00:00 AM,08/29/2021 08:30:00 PM,08/27/2021 10:11:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between BEVERLEY ROAD and CORTELYOU ROAD, BEVERLEY ROAD between ARGYLE ROAD and MARLBOROUGH ROAD",Brooklyn,14,70,Television,Pilot,United States of America,11226
+599698,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 10:00:00 PM,08/27/2021 10:09:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599681,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 11:59:00 PM,08/27/2021 08:03:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+599667,Shooting Permit,09/02/2021 11:30:00 AM,09/03/2021 01:30:00 AM,08/26/2021 10:10:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between BROADWAY and WILLIAM STREET, CEDAR STREET between BROADWAY and NASSAU STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, MAIDEN LANE between PEARL STREET and SOUTH STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005, 10038, 10045, 10271"
+599651,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 11:00:00 PM,08/26/2021 07:16:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUANE STREET between GREENWICH STREET and HUDSON STREET, DUANE STREET between HUDSON STREET and GREENWICH STREET, HUDSON STREET between JAY STREET and DUANE STREET, HUDSON STREET between DUANE STREET NORTH and DUANE STREET SOUTH, HUDSON STREET between DUANE STREET and READE STREET, THOMAS STREET between WEST BROADWAY and HUDSON STREET, JAY STREET between HUDSON STREET and GREENWICH STREET, WARREN STREET between BROADWAY and CHURCH STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY, WARREN STREET between GREENWICH STREET and WEST BROADWAY, BROADWAY between WARREN STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013"
+599616,Shooting Permit,08/31/2021 10:00:00 AM,08/31/2021 11:59:00 PM,08/26/2021 03:58:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between 5 AVENUE and MADISON AVENUE, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between 5 AVENUE and MADISON AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10001, 10016, 10017, 10018, 10036"
+599612,Shooting Permit,09/01/2021 11:00:00 AM,09/02/2021 02:00:00 AM,08/26/2021 03:53:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 43 STREET between 3 AVENUE and 2 AVENUE, EAST 44 STREET between LEXINGTON AVENUE and 2 AVENUE, EAST 45 STREET between 3 AVENUE and 2 AVENUE, EAST 46 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 45 STREET and EAST 47 STREET, 2 AVENUE between EAST 43 STREET and EAST 46 STREET, NORFOLK STREET between DELANCEY STREET and RIVINGTON STREET, SUFFOLK STREET between DELANCEY STREET and RIVINGTON STREET, DELANCEY STREET between NORFOLK STREET and SUFFOLK STREET, NORFOLK STREET between STANTON STREET and EAST HOUSTON STREET, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET, ESSEX STREET between STANTON STREET and RIVINGTON STREET, ESSEX STREET between RIVINGTON STREET and DELANCEY STREET, E 20TH STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, E 20TH STREET between GRAMERCY PARK WEST and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 20TH STREET and E 21ST STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, E 21ST STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, E 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET",Manhattan,"3, 5, 6","13, 17, 7",Television,Cable-episodic,United States of America,"10002, 10003, 10010, 10017"
+599597,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 09:00:00 PM,08/26/2021 03:08:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 105 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 104 STREET and EAST 105 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, PARK AVENUE between EAST 106 STREET and EAST 107 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 106 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64","22, 23",Television,Cable-episodic,United States of America,10029
+599589,Shooting Permit,09/07/2021 07:00:00 AM,09/07/2021 09:00:00 PM,08/26/2021 02:45:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599587,Shooting Permit,09/03/2021 07:00:00 AM,09/03/2021 09:00:00 PM,08/26/2021 02:40:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599581,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 11:30:00 PM,08/26/2021 02:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+599578,Theater Load in and Load Outs,09/25/2021 12:01:00 AM,09/26/2021 06:00:00 AM,08/26/2021 02:16:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+599572,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 09:00:00 PM,08/26/2021 02:06:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between DITMAS AVENUE and NEWKIRK AVENUE, DITMAS AVENUE between MARLBOROUGH ROAD and CONEY ISLAND AVENUE, 18 AVENUE between CONEY ISLAND AVENUE and EAST 9 STREET, RUGBY ROAD between DORCHESTER ROAD and DITMAS AVENUE, RUGBY ROAD between DITMAS AVENUE and NEWKIRK AVENUE, ARGYLE ROAD between DORCHESTER ROAD and DITMAS AVENUE, WESTMINSTER ROAD between DORCHESTER ROAD and DITMAS AVENUE, WESTMINSTER ROAD between DITMAS AVENUE and NEWKIRK AVENUE, CONEY ISLAND AVENUE between DITMAS AVENUE and NEWKIRK AVENUE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226, 11230"
+599568,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 11:00:00 PM,08/26/2021 01:53:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, 49 AVENUE between SKILLMAN AVENUE and 21 STREET, 21 STREET between 50 AVENUE and 49 AVENUE, 49 AVENUE between 21 STREET and 11 PLACE, 11 PLACE between 50 AVENUE and 49 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+599564,Shooting Permit,08/30/2021 08:00:00 PM,08/30/2021 11:00:00 PM,08/26/2021 01:40:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 28 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Film,Short,United States of America,10001
+599559,Shooting Permit,09/01/2021 06:00:00 AM,09/01/2021 11:30:00 PM,08/26/2021 01:13:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+599550,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 11:00:00 PM,08/26/2021 12:49:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 113 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 115 STREET and WEST 116 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 113 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 113 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 114 STREET and WEST 115 STREET, WEST 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 116 STREET",Manhattan,10,28,Film,Feature,United States of America,10026
+599546,Shooting Permit,09/01/2021 06:30:00 AM,09/01/2021 08:00:00 PM,08/26/2021 12:35:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599520,Shooting Permit,08/30/2021 02:00:00 PM,08/31/2021 04:00:00 AM,08/26/2021 11:16:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between NOSTRAND AVENUE and MARCY AVENUE, MARCY AVENUE between PARK AVENUE and STOCKTON STREET, MLK PLACE between MARCY AVENUE and TOMPKINS AVENUE, 43 STREET between 10 AVENUE and FT HAMILTON PARKWAY, NEW UTRECHT AVENUE between 41 STREET and 44 STREET, FT HAMILTON PARKWAY between 42 STREET and 43 STREET, 10 AVENUE between 42 STREET and 45 STREET, PARK AVENUE between MARCY AVENUE and TOMPKINS AVENUE, MARCY AVENUE between STOCKTON STREET and MYRTLE AVENUE, STOCKTON STREET between MARCY AVENUE and TOMPKINS AVENUE, ELLERY STREET between MARCY AVENUE and TOMPKINS AVENUE, FT HAMILTON PARKWAY between 44 STREET and 47 STREET, 42 STREET between NEW UTRECHT AVENUE and FT HAMILTON PARKWAY",Brooklyn,"12, 3","66, 79",Film,Feature,United States of America,"11206, 11219"
+599516,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 10:00:00 PM,08/26/2021 11:07:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 38 STREET and EAST 39 STREET",Manhattan,6,17,WEB,Not Applicable,United States of America,10016
+599515,Shooting Permit,08/31/2021 06:30:00 AM,08/31/2021 06:30:00 PM,08/26/2021 10:59:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","71 AVENUE between UNION TURNPIKE and SYBILLA STREET, 71 ROAD between UNION TURNPIKE and METROPOLITAN AVENUE, 71 DRIVE between UNION TURNPIKE and METROPOLITAN AVENUE, UNION TURNPIKE between 71 ROAD and 71 DRIVE, MYRTLE AVENUE between PARK LA SOUTH and FREEDOM DRIVE, MEMORIAL DRIVE between FOREST PARK DRIVE and MYRTLE AVENUE",Queens,"6, 82","102, 112",Television,Episodic series,United States of America,"11375, 11385, 11418"
+599510,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 10:00:00 PM,08/26/2021 10:47:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+599507,Shooting Permit,09/01/2021 06:00:00 AM,09/01/2021 07:00:00 PM,08/26/2021 10:41:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 19 STREET and EAST 18 STREET, FIFTH AVENUE between EAST 19 STREET and EAST 20 STREET, WEST 19 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,13,Commercial,Commercial,United States of America,"10003, 10011"
+599505,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 10:00:00 PM,08/26/2021 10:37:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+599504,Shooting Permit,08/27/2021 02:00:00 PM,08/27/2021 10:00:00 PM,08/26/2021 10:33:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599474,Shooting Permit,09/01/2021 08:00:00 AM,09/01/2021 10:00:00 PM,08/26/2021 09:05:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+599473,Shooting Permit,08/31/2021 08:30:00 AM,08/31/2021 10:30:00 PM,08/26/2021 09:01:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+599472,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 09:00:00 PM,08/26/2021 08:56:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+599442,Shooting Permit,09/01/2021 03:00:00 PM,09/02/2021 04:00:00 AM,08/25/2021 07:07:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between ORIENT AVENUE and MORGAN AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11211
+599431,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 06:00:00 PM,08/25/2021 05:25:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","N BASIN RD. between CENTER BOULEVARD and 5TH STREET, CENTER BOULEVARD between N BASIN ROAD and 46TH AVE., 5 STREET between 46 AVENUE and CENTER BOULEVARD, 46 AVENUE between DEAD END and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+599424,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 08:00:00 PM,08/25/2021 05:03:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between PLAZA STREET WEST and EMPIRE BOULEVARD, PROSPECT PARK WEST between GARFIELD PLACE and PLAZA STREET WEST, GARFIELD PLACE between EIGHTH AVENUE and PROSPECT PARK WEST, 8 AVENUE between 2 STREET and 3 STREET",Brooklyn,"19, 55, 6",78,Film,Feature,United States of America,"11215, 11238"
+599423,Shooting Permit,09/03/2021 04:00:00 PM,09/03/2021 11:00:00 PM,08/25/2021 04:58:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRATFORD ROAD between TURNER PLACE and HINCKLEY PLACE,Brooklyn,14,70,Student,Student Film,United States of America,11218
+599417,Shooting Permit,08/28/2021 07:00:00 AM,08/28/2021 09:00:00 PM,08/25/2021 04:35:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599416,Shooting Permit,08/30/2021 08:00:00 AM,08/30/2021 10:00:00 PM,08/25/2021 04:35:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between HESTER STREET and BROOME STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BOWERY between DELANCEY STREET and BROOME STREET, BROOME STREET between ELIZABETH STREET and BOWERY, GRAND STREET between ELIZABETH STREET and BOWERY, CHRYSTIE STREET between BROOME STREET and DELANCEY STREET",Manhattan,"2, 3",5,Film,Feature,United States of America,"10002, 10012, 10013"
+599399,Shooting Permit,09/01/2021 07:00:00 PM,09/02/2021 09:00:00 AM,08/25/2021 04:04:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEUBEN STREET between FLUSHING AVENUE and PARK AVENUE, WILLIAMSBURG ST WEST between FLUSHING AVENUE and STEUBEN STREET, HAMILTON AVE between SUMMIT STREET and HICKS ST, 19 STREET between 10 AVENUE and 11 AVENUE, MEEKER AVENUE between HUMBOLDT STREET and MONITOR STREET",Brooklyn,"1, 2, 6, 7","72, 76, 88, 90, 94",Film,Feature,United States of America,"11205, 11211, 11218, 11222, 11231"
+599392,Shooting Permit,08/31/2021 10:00:00 AM,09/01/2021 01:00:00 AM,08/25/2021 03:48:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 69 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 67 STREET and EAST 71 STREET, PARK AVENUE between EAST 67 STREET and EAST 71 STREET, EAST 67 STREET between MADISON AVENUE and PARK AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 70 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 69 STREET and EAST 70 STREET",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10065"
+599391,Shooting Permit,08/27/2021 12:30:00 PM,08/28/2021 02:30:00 AM,08/25/2021 03:40:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between WILLOUGHBY STREET and MYRTLE AVENUE, MYRTLE AVENUE between ASHLAND PLACE and ST EDWARDS STREET, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and FORT GREEN PLACE, HANSON PLACE between SOUTH ELLIOTT PLACE and SOUTH OXFORD STREET, WILLOUGHBY STREET between ASHLAND PLACE and FLEET PLACE, SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE, WAVERLY AVENUE between ATLANTIC AVENUE and FULTON STREET",Brooklyn,2,"78, 88",Film,Feature,United States of America,"11201, 11217, 11238"
+599371,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 11:00:00 PM,08/25/2021 02:43:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between LISPENARD STREET and WALKER STREET, CANAL STREET between WEST BROADWAY and CHURCH STREET, RIDGE STREET between EAST HOUSTON STREET and STANTON STREET, RIVINGTON STREET between CLINTON STREET and ATTORNEY STREET, EAST HOUSTON STREET between AVENUE B and AVENUE C, CHERRY STREET between CATHERINE SLIP and MARKET SLIP",Manhattan,"1, 2, 3","1, 5, 7, 9",Commercial,Commercial,United States of America,"10002, 10009, 10013"
+599363,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 10:00:00 PM,08/25/2021 02:31:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, 49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between SKILLMAN AVENUE and 21 STREET, 21 STREET between 50 AVENUE and 49 AVENUE, 11 PLACE between 50 AVENUE and 49 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+599338,Shooting Permit,09/02/2021 04:00:00 PM,09/03/2021 06:00:00 AM,08/25/2021 01:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 4 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 3 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 4 STREET between BERRY STREET and WYTHE AVENUE",Brooklyn,1,90,Film,Feature,United States of America,11249
+599336,Shooting Permit,09/01/2021 12:00:00 PM,09/02/2021 04:00:00 AM,08/25/2021 01:55:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, LEONARD STREET between DRIGGS AVENUE and MANHATTAN AVENUE, ENGERT AVENUE between LEONARD STREET and ECKFORD STREET, GRAHAM AVENUE between DRIGGS AVENUE and ENGERT AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, BAYARD STREET between LORIMER STREET and LEONARD STREET, SOUTH 4 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 3 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 4 STREET between BERRY STREET and WYTHE AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,"11222, 11249"
+599325,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 08:00:00 PM,08/25/2021 01:35:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 82 STREET, LEXINGTON AVENUE between EAST 82 STREET and EAST 81 STREET, LEXINGTON AVENUE between EAST 81 STREET and EAST 80 STREET, LEXINGTON AVENUE between EAST 80 STREET and EAST 79 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 78 STREET between MADISON AVENUE and PARK AVENUE, EAST 77 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 79 STREET and EAST 78 STREET, MADISON AVENUE between EAST 77 STREET and EAST 76 STREET, MADISON AVENUE between EAST 76 STREET and EAST 75 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 79 STREET and EAST 80 STREET, PARK AVENUE between EAST 80 STREET and EAST 81 STREET, PARK AVENUE between EAST 81 STREET and EAST 82 STREET, PARK AVENUE between EAST 82 STREET and EAST 83 STREET, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, PARK AVENUE between EAST 84 STREET and EAST 85 STREET, EAST 80 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 81 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 85 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+599322,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 10:00:00 PM,08/25/2021 01:29:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599318,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 10:00:00 PM,08/25/2021 01:25:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between HALSEY STREET and MACON STREET, MACON STREET between STUYVESANT AVENUE and LEWIS AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+599313,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 10:00:00 PM,08/25/2021 01:18:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between HALSEY STREET and MACON STREET, MACON STREET between STUYVESANT AVENUE and LEWIS AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+599307,Shooting Permit,09/01/2021 06:00:00 AM,09/01/2021 10:00:00 PM,08/25/2021 01:10:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between HALSEY STREET and MACON STREET, MACON STREET between STUYVESANT AVENUE and LEWIS AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+599300,Shooting Permit,08/29/2021 09:00:00 AM,08/30/2021 02:00:00 AM,08/25/2021 12:51:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 5 AVENUE and 6 AVENUE, WEST 26 STREET between 5 AVENUE and BROADWAY, WEST 24 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,13,Television,Episodic series,United States of America,"10010, 10016"
+599297,Shooting Permit,09/03/2021 07:00:00 AM,09/03/2021 11:00:00 PM,08/25/2021 12:41:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599292,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 11:00:00 PM,08/25/2021 12:15:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599290,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 11:00:00 PM,08/25/2021 12:14:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599287,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 11:00:00 PM,08/25/2021 12:03:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599285,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 10:00:00 PM,08/25/2021 12:02:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599282,Shooting Permit,09/02/2021 02:00:00 PM,09/03/2021 02:30:00 AM,08/25/2021 11:48:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between KINGSLAND AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599280,Shooting Permit,08/28/2021 06:00:00 AM,08/28/2021 10:00:00 PM,08/25/2021 11:30:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 37 STREET and 38 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 38 STREET between 35 AVENUE and 36 AVENUE, 38 STREET between 35 AVENUE and 34 AVENUE",Queens,"1, 2",114,Television,Episodic series,United States of America,"11101, 11106"
+599260,Shooting Permit,08/31/2021 07:00:00 AM,08/31/2021 09:00:00 PM,08/25/2021 10:37:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+599256,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 09:00:00 PM,08/25/2021 10:26:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 10 AVENUE and 9 AVENUE,Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10011, 10014"
+599254,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 09:00:00 PM,08/25/2021 10:18:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+599251,Shooting Permit,08/27/2021 02:00:00 PM,08/28/2021 03:30:00 AM,08/25/2021 09:50:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 139 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 139 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 140 STREET and WEST 139 STREET, WEST 140 STREET between EDGECOMBE AVENUE and ADAM CLAYTON POWELL BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 141 STREET and WEST 140 STREET, WEST 141 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ST NICHOLAS AVENUE between WEST 145 STREET and WEST 141 STREET, ST NICHOLAS AVENUE between WEST 141 STREET and WEST 135 STREET, EDGECOMBE AVENUE between WEST 140 STREET and WEST 139 STREET",Manhattan,"10, 9","26, 30, 32",Television,Episodic series,United States of America,10030
+599221,Shooting Permit,08/27/2021 12:00:00 PM,08/28/2021 02:00:00 AM,08/24/2021 08:54:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST TREMONT AVENUE between PHILIP AVENUE and RANDALL AVENUE, EAST TREMONT AVENUE between RANDALL AVENUE and SCHLEY AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, E Tremont Ave between SCHLEY AVENUE and Cross Bronx Expy, SCHLEY AVENUE between EAST TREMONT AVENUE and CROSS BRONX EXPRESSWAY, Cross Bronx Expressway between REVERE AVENUE and E Tremont Ave, E Tremont Ave between SCHLEY AVENUE and Cross Bronx Expressway",Bronx,10,45,Television,Cable-episodic,United States of America,10465
+599219,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 11:59:00 PM,08/24/2021 08:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","UTOPIA PARKWAY between 80 ROAD and GRAND CENTRAL PARKWAY, GRAND CENTRAL PARKWAY between ABERDEEN ROAD and EDGERTON ROAD, TUDOR ROAD between TRYON PLACE and EDGERTON ROAD, TUDOR ROAD between EDGERTON ROAD and GRAND CENTRAL PARKWAY, EDGERTON ROAD between DONCASTER PLACE and TUDOR ROAD",Queens,8,107,Television,Episodic series,United States of America,11432
+599218,Shooting Permit,08/27/2021 06:00:00 PM,08/28/2021 06:30:00 AM,08/24/2021 08:44:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY STREET between HENRY STREET and CLINTON STREET, BAY STREET between CLINTON STREET and COURT STREET, CLINTON STREET between LORRAINE STREET and BAY STREET, COLUMBIA STREET between HALLECK STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+599195,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 11:00:00 PM,08/24/2021 06:53:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+599174,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 10:00:00 PM,08/24/2021 05:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599172,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 10:00:00 PM,08/24/2021 05:19:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+599150,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 03:00:00 PM,08/24/2021 04:10:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 80 STREET between BROADWAY and WEST END AVENUE, VARICK STREET between WATTS STREET and CANAL STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"11, 2, 7","1, 20, 23",WEB,Not Applicable,United States of America,"10013, 10024, 10029"
+599138,Shooting Permit,08/27/2021 01:00:00 PM,08/28/2021 03:00:00 AM,08/24/2021 03:21:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between MT CARMEL PLACE and FIRST AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+599136,Shooting Permit,08/27/2021 12:00:00 PM,08/28/2021 02:00:00 AM,08/24/2021 02:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE, CLERMONT AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11205
+599133,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 10:00:00 PM,08/24/2021 02:47:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 7 STREET, AVENUE A between EAST 7 STREET and SAINT MARKS PLACE, AVENUE A between EAST 9 STREET and EAST 10 STREET, AVENUE A between SAINT MARKS PLACE and EAST 9 STREET, EAST 5 STREET between AVENUE A and AVENUE B",Manhattan,3,9,Television,Made for TV/mini-series,United States of America,10009
+599128,Shooting Permit,08/26/2021 11:30:00 PM,08/27/2021 07:30:00 AM,08/24/2021 02:43:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIN STREET and DOCK STREET, WATER STREET between OLD FULTON STREET and DOCK STREET, CADMAN PLAZA WEST between CLARK STREET and MIDDAGH STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+599126,Shooting Permit,08/27/2021 08:00:00 AM,08/27/2021 11:59:00 PM,08/24/2021 02:42:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, 49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between SKILLMAN AVENUE and 21 STREET, 21 STREET between 50 AVENUE and 49 AVENUE, 11 PLACE between 50 AVENUE and 49 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+599104,Shooting Permit,08/27/2021 07:00:00 AM,08/27/2021 03:00:00 PM,08/24/2021 01:52:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and MANHATTAN AVENUE, LEONARD STREET between NORMAN AVENUE and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599098,Shooting Permit,08/26/2021 11:00:00 AM,08/26/2021 11:00:00 PM,08/24/2021 01:30:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, GANSEVOORT STREET between WASHINGTON STREET and 10 AVENUE, WEST STREET between WEST 11 STREET and BETHUNE STREET, BANK STREET between WASHINGTON STREET and WEST STREET, BETHUNE STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 14 STREET between WASHINGTON STREET and 9 AVENUE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+599092,Shooting Permit,08/26/2021 12:30:00 PM,08/27/2021 02:30:00 AM,08/24/2021 01:20:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 53 STREET, EAST 51 STREET between FIFTH AVENUE and MADISON AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10017, 10022, 10152, 10171"
+599078,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 08:00:00 PM,08/24/2021 12:53:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 9 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 8 STREET and EAST 10 STREET, EAST 9 STREET between 5 AVENUE and UNIVERSITY PLACE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 28 STREET, EAST 26 STREET between PARK AVENUE SOUTH and MADISON AVENUE, MADISON AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 26 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"2, 5","13, 6",Film,Feature,United States of America,"10003, 10010, 10011, 10016"
+599076,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 10:00:00 PM,08/24/2021 12:51:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between BERRY STREET and WYTHE AVENUE, BERRY STREET between NORTH 13 STREET and NORTH 14 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between BERRY STREET and WYTHE AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORTH 12 STREET between BEDFORD AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Film,Feature,United States of America,"11222, 11249"
+599075,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 10:00:00 PM,08/24/2021 12:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 14 STREET between BERRY STREET and WYTHE AVENUE, BERRY STREET between NORTH 13 STREET and NORTH 14 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between BERRY STREET and WYTHE AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORTH 12 STREET between BEDFORD AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Film,Feature,United States of America,"11222, 11249"
+599053,Theater Load in and Load Outs,09/24/2021 12:01:00 AM,09/24/2021 11:59:00 PM,08/24/2021 12:03:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+599051,Shooting Permit,08/27/2021 09:00:00 AM,08/27/2021 10:00:00 PM,08/24/2021 11:57:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST, DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+599042,Shooting Permit,09/02/2021 07:00:00 AM,09/02/2021 09:00:00 PM,08/24/2021 11:33:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599039,Shooting Permit,09/01/2021 07:00:00 AM,09/01/2021 09:00:00 PM,08/24/2021 11:27:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599037,Shooting Permit,08/30/2021 07:00:00 AM,08/30/2021 09:00:00 PM,08/24/2021 11:15:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+599034,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 10:00:00 PM,08/24/2021 11:08:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+599029,Theater Load in and Load Outs,09/28/2021 07:00:00 AM,09/28/2021 07:00:00 PM,08/24/2021 10:49:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+599028,Theater Load in and Load Outs,09/27/2021 07:00:00 AM,09/27/2021 07:00:00 PM,08/24/2021 10:45:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+599026,Theater Load in and Load Outs,09/10/2021 07:00:00 AM,09/10/2021 07:00:00 PM,08/24/2021 10:40:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+599017,Theater Load in and Load Outs,09/09/2021 07:00:00 AM,09/09/2021 07:00:00 PM,08/24/2021 10:18:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+599014,Theater Load in and Load Outs,09/08/2021 07:00:00 AM,09/08/2021 07:00:00 PM,08/24/2021 10:03:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+599007,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 10:00:00 PM,08/24/2021 09:10:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between HALSEY STREET and MACON STREET, MACON STREET between STUYVESANT AVENUE and LEWIS AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+599006,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 08:00:00 PM,08/24/2021 09:00:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 178 STREET between AMSTERDAM AVENUE and AUDOBON AVENUE,Manhattan,12,33,Still Photography,Not Applicable,United States of America,"10032, 10033"
+599004,Shooting Permit,08/26/2021 09:00:00 AM,08/26/2021 09:00:00 PM,08/24/2021 08:58:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",47 AVENUE between 51 STREET and 49 STREET,Queens,2,108,Television,Episodic series,United States of America,11377
+599000,Shooting Permit,08/27/2021 04:00:00 PM,08/28/2021 06:00:00 AM,08/24/2021 08:35:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER AVENUE between EAST 161 STREET and EAST 153 STREET, RIVER AVENUE between EAST 157 STREET and EAST 161 STREET, EAST 164 STREET between JEROME AVENUE and RIVER AVENUE, EAST 165 STREET between JEROME AVENUE and RIVER AVENUE, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Film,Feature,United States of America,"10451, 10452"
+598999,Shooting Permit,08/26/2021 04:00:00 PM,08/27/2021 03:00:00 AM,08/24/2021 08:33:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 24 STREET and EAST 25 STREET,Manhattan,5,13,Music Video,Signed Artist,United States of America,10010
+598997,Shooting Permit,08/29/2021 08:00:00 AM,08/29/2021 09:00:00 PM,08/24/2021 08:07:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10022, 10111, 10112"
+598996,Shooting Permit,08/28/2021 07:00:00 AM,08/28/2021 08:00:00 PM,08/24/2021 08:06:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between 5 AVENUE and MADISON AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 5 AVENUE and 6 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10022, 10112"
+598976,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 10:00:00 PM,08/23/2021 06:59:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between HALSEY STREET and MACON STREET, MACON STREET between STUYVESANT AVENUE and LEWIS AVENUE",Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+598965,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 11:00:00 PM,08/23/2021 06:05:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and NEWELL STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, CALYER STREET between MOULTRIE STREET and JEWEL STREET, NEWELL STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598962,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 09:00:00 PM,08/23/2021 05:31:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, 5 AVENUE between EAST 79 STREET and EAST 80 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET",Manhattan,"64, 8","19, 22",Television,Made for TV/mini-series,United States of America,"10021, 10023, 10075"
+598949,Shooting Permit,08/27/2021 05:00:00 PM,08/28/2021 02:30:00 AM,08/23/2021 04:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 20TH STREET between PARK AVENUE SOUTH and GRAMERY PARK WEST, E 20TH STREET between GRAMERCY PARK WEST and IRVING PLACE, GRAMERY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 20TH STREET and E 21ST STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, E 21ST STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, E 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 21 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, IRVING PLACE between EAST 15 STREET and EAST 16 STREET",Manhattan,"5, 6",13,Television,Cable-episodic,United States of America,"10003, 10010"
+598948,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 11:59:00 PM,08/23/2021 04:27:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+598934,Shooting Permit,08/27/2021 11:00:00 AM,08/28/2021 03:00:00 AM,08/23/2021 03:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+598932,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 11:00:00 PM,08/23/2021 03:31:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+598922,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 10:00:00 PM,08/23/2021 03:19:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between MULBERRY STREET and BOWERY, DELANCEY STREET between BOWERY and CHRYSTIE STREET, THOMPSON STREET between WATTS STREET and 6 AVENUE, 6 AVENUE between THOMPSON STREET and BROOME STREET, FRANKLIN ST between CHURCH STREET and WEST BROADWAY, WEST BROADWAY between FRANKLIN ST and LEONARD ST, VARICK ST between NO MOORE STREET and LEONARD ST",Manhattan,"1, 2, 3","1, 5",Commercial,Commercial,United States of America,"10002, 10012, 10013"
+598909,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 11:00:00 PM,08/23/2021 02:49:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between DRIGGS AVENUE and BROOME STREET, BROOME STREET between MCGUINNESS BOULEVARD SOUTH and HUMBOLDT STREET, DRIGGS AVENUE between HUMBOLDT STREET and RUSSELL STREET, MCGUINNESS BOULEVARD SOUTH between BROOME STREET and DRIGGS AVENUE, ENGERT AVENUE between RUSSELL STREET and HUMBOLDT STREET, HUMBOLDT STREET between BROOME STREET and ENGERT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598900,Shooting Permit,08/27/2021 11:30:00 AM,08/28/2021 02:00:00 AM,08/23/2021 02:17:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 35 STREET and 36 STREET, 35 STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+598894,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 11:30:00 PM,08/23/2021 01:48:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598887,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 11:59:00 PM,08/23/2021 01:38:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, 49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between SKILLMAN AVENUE and 21 STREET, 21 STREET between 50 AVENUE and 49 AVENUE, 11 PLACE between 50 AVENUE and 49 AVENUE",Queens,2,108,Film,Feature,United States of America,11101
+598884,Shooting Permit,08/30/2021 06:00:00 AM,08/30/2021 11:30:00 PM,08/23/2021 01:30:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598882,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 09:00:00 PM,08/23/2021 01:26:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between GRAND STREET and NORTH 1 STREET, WYTHE AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 6 STREET between WYTHE AVENUE and KENT AVENUE, KENT AVENUE between SOUTH 5 STREET and SOUTH 6 STREET",Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+598873,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 10:00:00 PM,08/23/2021 12:44:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+598872,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 07:00:00 PM,08/23/2021 12:35:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between SPRING STREET and PRINCE STREET, SPRING STREET between LAFAYETTE STREET and CROSBY STREET, CROSBY STREET between BROOME STREET and SPRING STREET, BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, BOND STREET between BROADWAY and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between BROOME STREET and KENMARE STREET, BROOME STREET between LAFAYETTE STREET and CENTRE STREET, BROADWAY between BROOME STREET and GRAND STREET",Manhattan,2,"1, 5, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013"
+598868,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 11:30:00 PM,08/23/2021 12:24:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598864,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 11:30:00 PM,08/23/2021 12:17:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598848,Shooting Permit,08/25/2021 08:00:00 AM,08/25/2021 08:00:00 PM,08/23/2021 11:41:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA PARK SOUTH between SHORE BOULEVARD and 18 STREET, 29 STREET between BROADWAY and 31 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,"11102, 11105, 11106"
+598846,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 10:00:00 PM,08/23/2021 11:36:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598828,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 11:00:00 PM,08/23/2021 10:41:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 11 AVENUE and 10 AVENUE, WEST 37 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 36 STREET and WEST 38 STREET",Manhattan,4,10,Commercial,Commercial,United States of America,10018
+598824,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 11:00:00 PM,08/23/2021 10:30:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH MOORE STREET between WEST STREET and GREENWICH STREET, FRANKLIN STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between FRANKLIN STREET and HARRISON STREET, GREENWICH STREET between NORTH MOORE STREET and HARRISON STREET",Manhattan,"1, 5","1, 104",Television,Episodic series,United States of America,"10013, 11385"
+598817,Theater Load in and Load Outs,09/23/2021 12:01:00 AM,09/23/2021 11:59:00 PM,08/23/2021 10:11:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+598816,Theater Load in and Load Outs,09/22/2021 12:01:00 AM,09/22/2021 11:59:00 PM,08/23/2021 10:10:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+598815,Theater Load in and Load Outs,09/21/2021 12:01:00 AM,09/21/2021 11:59:00 PM,08/23/2021 10:09:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+598803,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 12:00:00 PM,08/23/2021 09:35:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and SUTTON STREET, NASSAU AVENUE between MORGAN AVENUE and SUTTON STREET, NASSAU AVENUE between HAUSMAN STREET and MORGAN AVENUE, NASSAU AVENUE between HAUSMAN STREET and APOLLO STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598802,Shooting Permit,08/26/2021 09:00:00 AM,08/27/2021 08:00:00 PM,08/23/2021 09:28:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between CROSS BRONX EXPRESSWAY and HAVEMEYER AVENUE, HAVEMEYER AVE between WATSON AVENUE and CROSS BRONX EXPRESSWAY, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, ELLIS AVENUE between OLMSTEAD AVENUE and CASTLE HILL AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+598798,Shooting Permit,08/25/2021 08:00:00 AM,08/26/2021 02:00:00 AM,08/23/2021 08:58:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, COMMERCE AVENUE between HAVILAND AVENUE and GLEASON AVENUE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+598797,Shooting Permit,08/27/2021 11:00:00 AM,08/28/2021 02:00:00 AM,08/23/2021 08:42:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","HOYT AVENUE between 19 STREET and 21 STREET, 142 STREET between 14 AVENUE and 15 AVENUE, 142 STREET between 14 AVENUE and 15 AVENUE, 15 AVENUE between 138 STREET and 143 STREET",Queens,"1, 10, 7","109, 114, 32",Film,Feature,United States of America,"10037, 11102, 11105, 11357"
+598791,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 09:00:00 PM,08/23/2021 07:46:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between SPRING STREET and RIVINGTON STREET,Manhattan,"2, 3",5,Still Photography,Not Applicable,United States of America,"10002, 10012"
+598730,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 11:59:00 PM,08/22/2021 09:46:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+598723,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 11:59:00 PM,08/21/2021 11:54:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and FULTON STREET,Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+598701,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 07:00:00 PM,08/21/2021 02:29:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between DOBBIN STREET and BANKER STREET",Brooklyn,1,94,Television,Pilot,United States of America,11222
+598659,Shooting Permit,08/26/2021 10:30:00 AM,08/27/2021 01:00:00 AM,08/20/2021 05:33:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between FIFTH AVENUE and SIXTH AVENUE, EAST 45 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036"
+598657,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 09:00:00 PM,08/20/2021 05:25:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between NORTH 8 STREET and NORTH 9 STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,94,Commercial,Commercial,United States of America,"11222, 11249"
+598630,Shooting Permit,09/01/2021 06:00:00 AM,09/01/2021 08:00:00 PM,08/20/2021 03:57:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+598628,Shooting Permit,08/26/2021 12:30:00 PM,08/27/2021 02:30:00 AM,08/20/2021 03:55:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 55 STREET between 5 AVENUE and MADISON AVENUE, WEST 55 STREET between 6 AVENUE and 5 AVENUE, MADISON AVENUE between EAST 55 STREET and EAST 54 STREET, EAST 54 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 57 STREET and EAST 53 STREET, EAST 20 STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, EAST 20TH STREET between GRAMERCY PARK WEST and IRVING PLACE, GRAMERCY PARK SOUTH between IRVING PLACE and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 20TH STREET and E 21ST STREET, IRVING PLACE between GRAMERCY PARK SOUTH and EAST 19 STREET, EAST 21ST STREET between GRAMERCY PARK WEST and GRAMERCY PARK EAST, EAST 21ST STREET between PARK AVENUE SOUTH and GRAMERCY PARK WEST, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, PARK AVENUE SOUTH between EAST 20 STREET and EAST 23 STREET, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 23 STREET and EAST 22 STREET, IRVING PLACE between EAST 15 STREET and EAST 16 STREET, WEST 54 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"5, 6","13, 18",Television,Cable-episodic,United States of America,"10003, 10010, 10019, 10022"
+598626,Shooting Permit,08/31/2021 06:00:00 AM,08/31/2021 08:00:00 PM,08/20/2021 03:48:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,"11220, 11232"
+598623,Theater Load in and Load Outs,09/18/2021 12:01:00 AM,09/19/2021 06:00:00 AM,08/20/2021 03:30:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+598600,Shooting Permit,08/27/2021 11:00:00 AM,08/27/2021 11:59:00 PM,08/20/2021 02:30:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+598595,Shooting Permit,08/26/2021 06:00:00 AM,08/26/2021 10:00:00 PM,08/20/2021 02:18:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and SAINT MARKS PLACE, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 7 STREET, AVENUE A between SAINT MARKS PLACE and EAST 9 STREET, AVENUE A between EAST 9 STREET and EAST 10 STREET",Manhattan,3,9,Television,Made for TV/mini-series,United States of America,10009
+598594,Shooting Permit,08/25/2021 09:00:00 AM,08/25/2021 11:59:00 PM,08/20/2021 02:17:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 53 STREET and WEST 54 STREET, BROADWAY between WEST 54 STREET and WEST 55 STREET, BROADWAY between WEST 55 STREET and WEST 56 STREET, WEST 54 STREET between BROADWAY and 7 AVENUE, 7 AVENUE between WEST 54 STREET and WEST 55 STREET, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 9 AVENUE and 10 AVENUE, WEST 57 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",18,Television,Episodic series,United States of America,10019
+598587,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 11:00:00 PM,08/20/2021 02:02:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 5 STREET between BEDFORD AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 5 STREET and NORTH 4 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Film,Feature,United States of America,"11222, 11249"
+598584,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 11:59:00 PM,08/20/2021 01:51:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEROY STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between LEROY STREET and CLARKSON STREET, LEROY ST between HUDSON STREET and 7 AVENUE SOUTH, 7 AVENUE SOUTH between CARMINE STREET and LEROY STREET, 7 AVENUE SOUTH between LEROY STREET and BEDFORD STREET, 7 AVENUE SOUTH between MORTON STREET and COMMERCE STREET, LEROY STREET between BLEEKER STREET and BEDFORD STREET, BLEEKER STREET between LEROY STREET and CARMINE STREET, CARMINE STREET between BEDFORD STREET and BLEEKER STREET, BLEEKER STREET between CARMINE STREET and DOWNING STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, WASHINGTON PARK between WILLOUGHBY AVENUE and DEKALB AVENUE, DEKALB AVENUE between CUMBERLAND STREET and SOUTH OXFORD STREET, DEKALB AVENUE between SOUTH OXFORD STREET and SOUTH PORTLAND AVENUE, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ST FELIX STREET and FT GREENE PLACE, LAFAYETTE AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, LAFAYETTE AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, FULTON STREET between ST FELIX STREET and FT GREENE PLACE, FULTON STREET between FT GREENE PLACE and SOUTH ELLIOTT PLACE, FULTON STREET between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, SOUTH PORTLAND AVENUE between FULTON STREET and HANSON PLACE",Manhattan,2,"6, 88",Television,Episodic series,United States of America,"10014, 11205, 11217"
+598575,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 09:00:00 PM,08/20/2021 01:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+598572,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 09:00:00 PM,08/20/2021 01:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+598564,Shooting Permit,08/25/2021 06:30:00 AM,08/25/2021 09:30:00 PM,08/20/2021 01:00:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 241 STREET between RICHARDSON AVENUE and WHITE PLAINS ROAD, RICHARDSON AVENUE between EAST 241 STREET and EAST 240 STREET, RICHARDSON AVENUE between EAST 241 STREET and EAST 242 STREET, WHITE PLAINS ROAD between EAST 241 STREET and EAST 240 STREET, EAST 241 STREET between WHITE PLAINS ROAD and BAYCHESTER AVENUE, BRONX BOULEVARD between EAST 237 STREET and EAST 233 STREET, WHITE PLAINS ROAD between EAST 241 STREET and EAST 242 STREET",Bronx,12,47,Television,Episodic series,United States of America,"10466, 10467, 10470"
+598563,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 09:00:00 PM,08/20/2021 12:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 125 STREET between FREDERICK DOUGLASS BOULEVARD and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 125 STREET and WEST 126 STREET, ST NICHOLAS AVENUE between WEST 125 STREET and WEST 126 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 125 STREET and WEST 126 STREET, FREDERICK DOUGLASS BOULEVARD between WEST 124 STREET and WEST 125 STREET, WEST 124 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, WEST 124TH STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 123 STREET and WEST 124 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 125 STREET and WEST 124 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 124 STREET and WEST 123 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 123 STREET and WEST 122 STREET",Manhattan,"10, 9","26, 28",Film,Feature,United States of America,10027
+598562,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 10:00:00 PM,08/20/2021 12:47:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between KINGSLAND AVE and DEAD END,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598551,Shooting Permit,08/24/2021 04:00:00 PM,08/24/2021 11:00:00 PM,08/20/2021 12:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598547,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 09:00:00 PM,08/20/2021 12:05:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598528,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 09:00:00 PM,08/20/2021 10:51:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between STORY AVENUE and LAFAYETTE AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+598524,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 09:00:00 PM,08/20/2021 10:36:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+598510,Shooting Permit,08/25/2021 10:30:00 AM,08/26/2021 12:30:00 AM,08/20/2021 09:36:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 46 STREET",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,10036
+598504,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 05:00:00 PM,08/20/2021 09:17:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 6 AVENUE,Manhattan,"4, 5, 64","18, 22",Television,Cable-daily,United States of America,"10019, 10023"
+598502,Shooting Permit,08/26/2021 10:00:00 AM,08/26/2021 11:30:00 PM,08/20/2021 08:44:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","15 AVENUE between 138 STREET and 143 STREET, 142 STREET between 14 AVENUE and 15 AVENUE, 142 STREET between 14 AVENUE and 15 AVENUE",Queens,7,109,Film,Feature,United States of America,11357
+598496,Shooting Permit,08/28/2021 07:00:00 AM,08/28/2021 10:00:00 PM,08/20/2021 03:27:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 47 STREET, 45 STREET between 2 AVENUE and 3 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,"11220, 11232"
+598490,Shooting Permit,08/27/2021 06:00:00 AM,08/27/2021 09:00:00 PM,08/20/2021 01:50:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 47 STREET, 45 STREET between 2 AVENUE and 3 AVENUE, 44 STREET between 1 AVENUE and 2 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,"11220, 11232"
+598488,Shooting Permit,08/24/2021 04:00:00 AM,08/25/2021 02:00:00 AM,08/20/2021 12:27:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between RIVERSIDE DRIVE and BROADWAY, BROADWAY between WEST 135 STREET and WEST 136 STREET, GREENWICH AVENUE between JANE STREET and WEST 12 STREET, GREENWICH AVENUE between WEST 12 STREET and BANK STREET, GREENWICH AVENUE between 7 AVENUE and BANK STREET, 7 AVENUE SOUTH between WEST 11 STREET and WAVERLY PLACE, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between PERRY STREET and CHARLES STREET, GREENWICH AVENUE between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE, CHARLES STREET between GREENWICH AVENUE and WAVERLY PLACE, WAVERLY PLACE between CHARLES STREET and WEST 10 STREET, WEST 18 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"2, 4, 9","13, 30, 6",Television,Episodic series,United States of America,"10011, 10014, 10031"
+598455,Shooting Permit,08/24/2021 10:00:00 AM,08/25/2021 02:00:00 AM,08/19/2021 07:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between CENTER BOULEVARD and VERNON BOULEVARD, CENTER BLVD between NORTH BASIN ROAD and 47 AVENUE, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, 5TH STREET between 46 AVENUE and NORTH BASIN ROAD, NORTH BASIN ROAD between 5 STREET and CENTER BLVD, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Queens,"2, 5, 6","108, 17, 18",Television,Episodic series,United States of America,"10022, 10152, 11101"
+598450,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 10:00:00 PM,08/19/2021 06:17:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 7 STREET, AVENUE A between EAST 7 STREET and ST MARKS PLACE, AVENUE A between ST MARKS PLACE and EAST 9 STREET, AVENUE A between EAST 9 STREET and EAST 10 STREET",Manhattan,3,9,Television,Made for TV/mini-series,United States of America,10009
+598444,Shooting Permit,08/24/2021 09:00:00 AM,08/24/2021 05:00:00 PM,08/19/2021 05:44:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE STREET between WORTH STREET and DUANE STREET,Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+598432,DCAS Prep/Shoot/Wrap Permit,08/24/2021 05:00:00 PM,08/24/2021 09:00:00 PM,08/19/2021 04:45:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, WALKER STREET between LAFAYETTE STREET and BAXTER STREET, CHURCH STREET between THOMAS STREET and DUANE STREET, WEST BROADWAY between THOMAS STREET and LEONARD STREET, WEST BROADWAY between READE STREET and DUANE STREET, THOMAS STREET between WEST BROADWAY and HUDSON STREET, THOMAS STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+598425,Shooting Permit,08/29/2021 11:00:00 AM,08/29/2021 02:00:00 PM,08/19/2021 04:35:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Film,Short,United States of America,10018
+598413,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 04:00:00 PM,08/19/2021 04:12:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",SURF AVENUE between WEST 12 STREET and WEST 10 STREET,Brooklyn,13,60,Television,Cable-daily,United States of America,11224
+598410,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 09:00:00 PM,08/19/2021 04:10:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","RANDALL AVENUE between REVERE AVENUE and EAST TREMONT AVENUE, EAST TREMONT AVENUE between PHILIP AVENUE and ROOSEVELT AVENUE, EAST TREMONT AVENUE between ROOSEVELT AVENUE and SCHLEY AVENUE, EAST TREMONT AVENUE between SCHLEY AVENUE and LAMPORT PLACE, E Tremont Ave between SCHLEY AVENUE and Cross Bronx Expy, Schley Ave between Cross Bronx Expy and E Tremont Ave, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, Cross Bronx Expressway between E Tremont Ave and Revere Ave",Bronx,10,45,Television,Cable-episodic,United States of America,10465
+598403,Shooting Permit,08/24/2021 08:00:00 AM,08/24/2021 07:00:00 PM,08/19/2021 03:53:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",PROSPECT PARK WEST between 2 STREET and 4 STREET,Brooklyn,"55, 6",78,Still Photography,Not Applicable,United States of America,11215
+598382,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 11:00:00 PM,08/19/2021 03:02:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 5 STREET between BEDFORD AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 5 STREET and NORTH 4 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Film,Feature,United States of America,"11222, 11249"
+598381,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 09:00:00 PM,08/19/2021 03:01:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER AVENUE between EAST 161 STREET and EAST 153 STREET, RIVER AVENUE between EAST 157 STREET and EAST 161 STREET, EAST 164 STREET between JEROME AVENUE and RIVER AVENUE, EAST 165 STREET between JEROME AVENUE and RIVER AVENUE, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Film,Feature,United States of America,"10451, 10452"
+598378,Shooting Permit,08/21/2021 02:00:00 PM,08/22/2021 05:00:00 AM,08/19/2021 02:55:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIKEMAN STREET between CONOVER STREET and FERRIS STREET, FERRIS STREET between WOLCOTT STREET and DIKEMAN STREET, COFFEY STREET between DEAD END and FERRIS STREET, VAN DYKE STREET between FERRIS STREET and DEAD END, VAN BRUNT STREET between BEARD STREET and DEAD END, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, CONOVER STREET between VAN DYKE STREET and BEARD STREET, BEARD STREET between VAN BRUNT STREET and CONOVER STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+598373,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 09:00:00 PM,08/19/2021 02:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 9 STREET between BROADWAY and LAFAYETTE STREET, EAST 9 STREET between LAFAYETTE STREET and 3 AVENUE, COOPER SQUARE between ST MARKS PLACE and EAST 7 STREET, COOPER SQ between EAST 7 STREET and EAST 6 STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, BOND STREET between BROADWAY and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, 3 AVENUE between ASTOR PLACE and EAST 9 STREET",Manhattan,"2, 3",9,Television,Cable-episodic,United States of America,"10003, 10012"
+598372,Shooting Permit,08/23/2021 04:30:00 PM,08/24/2021 05:00:00 AM,08/19/2021 02:26:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIKEMAN STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between DIKEMAN STREET and COFFEY STREET, VAN DYKE STREET between FERRIS STREET and CONOVER STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, FERRIS STREET between VAN DYKE STREET and COFFEY STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+598371,Shooting Permit,08/24/2021 11:00:00 AM,08/25/2021 01:00:00 AM,08/19/2021 02:23:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","154 STREET between 14 AVENUE and CRYDERS LANE, 14 AVENUE between 154 STREET and 155 STREET, 154 STREET between 14 AVENUE and 13 AVENUE, 154 STREET between 13 AVENUE and 12 ROAD, 154 STREET between 11 AVENUE and 12 AVENUE, 13 AVENUE between 154 STREET and 157 STREET, 12 ROAD between 154 STREET and 157 STREET, 12 ROAD between 166 STREET and UTOPIA PARKWAY, TOTTEN STREET between 12 ROAD and DEAD END, TOTTEN STREET between 12 ROAD and CRYDERS LANE, 3 AVENUE between 147 STREET and WHITESTONE EXPRESSWAY",Queens,7,109,Film,Feature,United States of America,11357
+598367,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 11:00:00 PM,08/19/2021 02:16:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between BANKER STREET and CLIFFORD PLACE, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Film,Feature,United States of America,11222
+598343,Shooting Permit,08/20/2021 10:00:00 AM,08/21/2021 02:00:00 AM,08/19/2021 12:22:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between BROADWAY and 8 AVENUE, WEST 49 STREET between BROADWAY and 8 AVENUE, WEST 51 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, BROADWAY between WEST 38 STREET and WEST 40 STREET, WEST 39 STREET between BROADWAY and 8 AVENUE, WEST 37 STREET between BROADWAY and 8 AVENUE, 7 AVENUE between WEST 48 STREET and WEST 49 STREET",Manhattan,"4, 5","14, 18",Commercial,Commercial,United States of America,"10018, 10019, 10036"
+598341,Shooting Permit,08/25/2021 08:00:00 AM,08/25/2021 11:00:00 PM,08/19/2021 12:19:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",CONOVER STREET between SULLIVAN STREET and WOLCOTT STREET,Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+598329,Shooting Permit,08/31/2021 08:00:00 AM,08/31/2021 09:00:00 PM,08/19/2021 11:55:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between SIXTH AVENUE and SEVENTH AVENUE, 6 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 44 STREET between FIFTH AVENUE and SIXTH AVENUE, EAST 44 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 43 STREET between FIFTH AVENUE and SIXTH AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036"
+598327,Shooting Permit,08/24/2021 10:00:00 AM,08/25/2021 02:00:00 AM,08/19/2021 11:48:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CLINTON AVENUE between 64 STREET and REMSEN PLACE, 64 STREET between 56 ROAD and MASPETH AVENUE, PERRY AVENUE between 64 STREET and REMSEN PLACE, GRAND AVENUE between 64 STREET and FLUSHING AVENUE, GRAND AVENUE between FLUSHING AVENUE and 66 STREET",Brooklyn,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11378"
+598323,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 10:00:00 PM,08/19/2021 11:26:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and ST MARKS PLACE, AVENUE A between EAST 4 STREET and EAST 5 STREET, AVENUE A between EAST 5 STREET and EAST 6 STREET, AVENUE A between EAST 6 STREET and EAST 7 STREET, AVENUE A between ST MARKS PLACE and EAST 9 STREET, AVENUE A between EAST 9 STREET and EAST 10 STREET",Manhattan,3,9,Television,Made for TV/mini-series,United States of America,10009
+598305,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 09:00:00 PM,08/19/2021 09:57:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER AVENUE between EAST 161 STREET and EAST 164 STREET, EAST 164 STREET between RIVER AVENUE and JEROME AVENUE, JEROME AVENUE between EAST 164 STREET and SHAKESPEARE AVENUE, EAST 165 STREET between JEROME AVENUE and RIVER AVENUE, RIVER AVENUE between EAST 157 STREET and EAST 158 STREET",Bronx,4,44,Film,Feature,United States of America,"10451, 10452"
+598295,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 11:00:00 PM,08/19/2021 09:16:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+598288,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 08:00:00 PM,08/19/2021 08:10:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","BAISLEY BOULEVARD between 134 AVENUE and 135 AVENUE, BAISLEY BOULEVARD between 132 AVENUE and 134 AVENUE, 135 AVENUE between BAISLEY BOULEVARD and 151 PLACE, ROCKAWAY BEACH BOULEVARD between BEACH 90 STREET and BEACH 84 STREET",Queens,"12, 14","100, 113",Television,Pilot,United States of America,"11434, 11693"
+598283,Shooting Permit,08/22/2021 08:00:00 AM,08/22/2021 05:00:00 PM,08/19/2021 07:37:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 66 STREET and EAST 67 STREET, WEST 48 STREET between 5 AVENUE and 6 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5, 8","18, 19",Television,Cable-daily,United States of America,"10020, 10036, 10065"
+598273,Rigging Permit,08/23/2021 08:00:00 AM,08/23/2021 05:00:00 PM,08/19/2021 06:57:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+598261,Shooting Permit,08/24/2021 03:00:00 AM,08/24/2021 08:00:00 PM,08/19/2021 03:42:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET, AMITY STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,11201
+598230,Shooting Permit,08/23/2021 07:30:00 AM,08/23/2021 09:30:00 PM,08/18/2021 06:46:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 46 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 48 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 46 STREET and EAST 49 STREET",Manhattan,6,17,Television,Episodic series,United States of America,"10017, 10022"
+598228,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 08:00:00 PM,08/18/2021 06:38:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 46 STREET between BROADWAY and 8 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","14, 18",Television,Made for TV/mini-series,United States of America,10036
+598223,Shooting Permit,08/24/2021 08:00:00 AM,08/24/2021 08:00:00 PM,08/18/2021 05:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOND STREET between 3 STREET and 4 STREET,Brooklyn,6,76,Television,Episodic series,United States of America,11231
+598222,Shooting Permit,08/23/2021 09:00:00 AM,08/23/2021 10:00:00 PM,08/18/2021 05:53:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYCKOFF AVENUE between BLEECKER STREET and MENAHAN STREET, MENAHAN STREET between IRVING AVENUE and WYCKOFF AVENUE, WYCKOFF AVENUE between MENAHAN STREET and GROVE STREET, GROVE STREET between IRVING AVENUE and WYCKOFF AVENUE, WYCKOFF AVENUE between GROVE STREET and LINDEN STREET, WYCKOFF AVENUE between LINDEN STREET and GATES AVENUE, COVERT ST between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVE between ELDERT ST and COVERT ST, LINDEN STREET between ST NICHOLAS AVENUE and WYCKOFF AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+598187,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 09:00:00 PM,08/18/2021 04:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA PARK SOUTH between 21 STREET and SHORE BOULEVARD, HOYT AVENUE NORTH between 19 STREET and 21 STREET, HOYT AVE between 21 STREET and 23 STREET, 21 STREET between 27 ROAD and ASTORIA BOULEVARD, 21 STREET between ASTORIA BOULEVARD and 25 ROAD, ASTORIA BOULEVARD between 21 STREET and 22 STREET, ASTORIA BOULEVARD between 21 STREET and NEWTOWN AVENUE, NEWTOWN AVENUE between 21 STREET and 23 STREET, ASTORIA BOULEVARD between 23 STREET and 29 STREET",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+598186,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 10:00:00 PM,08/18/2021 03:55:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","TIBBETT AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 231 STREET between RIVERDALE AVENUE and CORLEAR AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 232 STREET, CORLEAR AVENUE between WEST 230 STREET and WEST 231 STREET, WEST 230 STREET between CORLEAR AVENUE and GODWIN TERRACE, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET",Bronx,8,50,Television,Cable-episodic,United States of America,10463
+598177,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 10:00:00 PM,08/18/2021 03:43:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 34 STREET, 11 AVENUE between WEST 29 STREET and WEST 28 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 27 STREET, WEST 28 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+598170,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 09:00:00 PM,08/18/2021 03:21:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598164,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 11:30:00 PM,08/18/2021 03:08:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598157,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 11:30:00 PM,08/18/2021 02:58:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+598143,Shooting Permit,08/25/2021 06:00:00 AM,08/25/2021 10:00:00 PM,08/18/2021 02:33:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE ST between PROVOST STREET and MCGUINNESS BLVD, PROVOST STREET between INDIA STREET and DUPONT STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+598137,Shooting Permit,08/20/2021 02:00:00 PM,08/21/2021 04:00:00 AM,08/18/2021 02:21:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHN STREET between RICHMOND TERRACE and DEAD END,Staten Island,1,121,Television,Episodic series,United States of America,10302
+598135,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 06:00:00 PM,08/18/2021 02:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST 4 STREET and GREAT JONES STREET, EAST 4 STREET between LAFAYETTE STREET and BOWERY",Manhattan,"2, 3","5, 9",Documentary,Not Applicable,United States of America,"10003, 10012"
+598134,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 11:00:00 PM,08/18/2021 02:21:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598133,Shooting Permit,08/24/2021 01:30:00 PM,08/24/2021 04:30:00 PM,08/18/2021 02:19:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between 9 STREET and VERNON BOULEVARD,Queens,2,108,Television,Variety,United States of America,11101
+598132,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 10:00:00 PM,08/18/2021 02:18:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD, PROVOST STREET between INDIA STREET and DUPONT STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+598126,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 10:00:00 PM,08/18/2021 02:02:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD, PROVOST STREET between INDIA STREET and DUPONT STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+598121,Theater Load in and Load Outs,09/07/2021 07:00:00 AM,09/07/2021 07:00:00 PM,08/18/2021 01:56:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between HANSON PLACE and LAFAYETTE AVENUE,Brooklyn,2,88,Theater,Theater,United States of America,11217
+598117,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 10:00:00 PM,08/18/2021 01:35:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598102,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 10:00:00 PM,08/18/2021 01:14:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598084,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 09:00:00 PM,08/18/2021 12:14:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 126 STREET and EAST 127 STREET, EAST 126 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 125 STREET and EAST 126 STREET, EAST 125 STREET between MADISON AVENUE and PARK AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 118 STREET and WEST 119 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, W 125th St between LENOX AVENUE and Madison Ave, MADISON AVENUE between EAST 125 STREET and EAST 124 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 130 STREET and WEST 131 STREET",Manhattan,"10, 11","25, 28, 32",Television,Cable-episodic,United States of America,"10026, 10027, 10035"
+598083,Shooting Permit,08/25/2021 08:00:00 AM,08/26/2021 01:00:00 AM,08/18/2021 12:13:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+598078,Shooting Permit,08/25/2021 10:00:00 AM,08/25/2021 11:00:00 PM,08/18/2021 12:02:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 7 AVENUE and 6 AVENUE, WEST 52 STREET between 7 AVENUE and 6 AVENUE, WEST 51 STREET between 6 AVENUE and 7 AVENUE, SEVENTH AVENUE between WEST 51 STREET and WEST 52 STREET, WEST 53 STREET between 7 AVENUE and 6 AVENUE, WEST 53 STREET between 7 AVENUE and BROADWAY",Manhattan,5,18,Film,Feature,United States of America,"10019, 10020, 10036"
+598068,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 09:00:00 PM,08/18/2021 11:11:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+598065,Shooting Permit,08/22/2021 07:00:00 AM,08/22/2021 09:00:00 PM,08/18/2021 11:04:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+598038,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 07:00:00 PM,08/18/2021 09:10:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","BAXTER STREET between HESTER STREET and GRAND STREET, 5 AVENUE between EAST 72 STREET and EAST 73 STREET, 5 AVENUE between EAST 73 STREET and EAST 74 STREET",Manhattan,"2, 64, 8","19, 22, 5",Commercial,Commercial,United States of America,"10013, 10021, 10023"
+598025,Shooting Permit,08/20/2021 09:00:00 AM,08/21/2021 12:00:00 AM,08/18/2021 06:01:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","20 AVENUE between 24 STREET and 21 STREET, 21 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 21 AVENUE and DITMARS BOULEVARD, STEINWAY STREET between 20 AVENUE and 20 ROAD, 46 STREET between 21 AVENUE and DITMARS BOULEVARD, 45 STREET between 21 AVENUE and DITMARS BOULEVARD, 21 AVENUE between 45 STREET and 46 STREET",Queens,1,114,Film,Feature,United States of America,11105
+598010,Shooting Permit,08/23/2021 09:00:00 AM,08/24/2021 02:00:00 AM,08/17/2021 10:58:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, LORIMER STREET between NORMAN AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, LORIMER STREET between NORMAN AVENUE and NASSAU AVENUE, BEDFORD AVENUE between LORIMER STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+598006,Shooting Permit,08/20/2021 07:00:00 AM,08/20/2021 08:00:00 PM,08/17/2021 10:26:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 17 STREET and WEST 18 STREET, WEST 17 STREET between 8 AVENUE and 7 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, 8 AVENUE between WEST 18 STREET and WEST 19 STREET",Manhattan,"4, 5","10, 13",Television,Made for TV/mini-series,United States of America,"10010, 10011"
+598002,Shooting Permit,08/20/2021 06:00:00 AM,08/20/2021 07:00:00 PM,08/17/2021 09:57:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between ARGYLE ROAD and EAST 17 STREET, RUGBY ROAD between BEVERLY ROAD and CORTELYOU ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,"11218, 11226"
+597996,Shooting Permit,08/23/2021 10:30:00 AM,08/24/2021 12:30:00 AM,08/17/2021 07:45:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between THROOP AVENUE and MARCUS GARVEY BOULEVARD, THROOP AVENUE between FLUSHING AVENUE and ELLERY STREET, MARCUS GARVEY BOULEVARD between PARK AVENUE and ELLERY STREET, MARCUS GARVEY BOULEVARD between ELLERY STREET and BROADWAY, ELLERY STREET between MARCUS GARVEY BOULEVARD and BROADWAY, MYRTLE AVENUE between THROOP AVENUE and LEWIS AVENUE, MARCUS GARVEY BOULEVARD between MYRTLE AVENUE and WILLOUGHBY AVENUE, BROADWAY between PARK STREET and LOCUST STREET",Brooklyn,"3, 4","79, 81, 83",Film,Feature,United States of America,11206
+597995,Shooting Permit,08/20/2021 03:00:00 PM,08/21/2021 03:30:00 AM,08/17/2021 07:32:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between PARK LN SOUTH and FREEDOM DRIVE,Queens,"5, 6, 82, 9","102, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+597981,Shooting Permit,08/19/2021 11:00:00 AM,08/20/2021 01:00:00 AM,08/17/2021 05:58:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 27TH between 6TH AVE and 7TH AVE, WEST 27 STREET between 6 AVENUE and 7 AVENUE, WEST 27 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 25 STREET and WEST 27 STREET, 7 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 24 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 24 STREET and WEST 25 STREET, 7 AVENUE between WEST 23 STREET and WEST 24 STREET",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,"10001, 10010, 10011"
+597966,Theater Load in and Load Outs,09/13/2021 12:01:00 AM,09/17/2021 06:00:00 AM,08/17/2021 04:45:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+597963,Shooting Permit,08/20/2021 11:00:00 AM,08/21/2021 05:00:00 AM,08/17/2021 04:42:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, GARDNER AVENUE between INGRAHAM STREET and FLUSHING AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, FLUSHING AVENUE between IRVING AVENUE and SCOTT AVENUE, GARDNER AVENUE between RANDOLPH STREET and JOHNSON AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,"11211, 11237"
+597962,Theater Load in and Load Outs,09/12/2021 12:01:00 AM,09/12/2021 11:59:00 PM,08/17/2021 04:40:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+597961,Theater Load in and Load Outs,09/10/2021 12:01:00 AM,09/11/2021 06:00:00 AM,08/17/2021 04:35:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+597959,Theater Load in and Load Outs,09/08/2021 12:01:00 AM,09/09/2021 11:59:00 PM,08/17/2021 04:28:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+597952,Theater Load in and Load Outs,09/17/2021 12:01:00 AM,09/17/2021 11:59:00 PM,08/17/2021 04:11:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+597951,Theater Load in and Load Outs,09/16/2021 12:01:00 AM,09/16/2021 11:59:00 PM,08/17/2021 04:09:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+597950,Theater Load in and Load Outs,09/14/2021 12:01:00 AM,09/15/2021 06:00:00 AM,08/17/2021 04:08:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+597945,Shooting Permit,08/20/2021 07:00:00 AM,08/20/2021 09:00:00 PM,08/17/2021 04:04:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, EAST 27 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+597941,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 02:00:00 PM,08/17/2021 04:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597938,Shooting Permit,08/22/2021 07:00:00 AM,08/22/2021 07:00:00 PM,08/17/2021 03:59:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597935,Shooting Permit,09/03/2021 06:00:00 AM,09/03/2021 08:00:00 PM,08/17/2021 03:58:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+597936,Shooting Permit,09/04/2021 06:00:00 AM,09/04/2021 08:00:00 PM,08/17/2021 03:58:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+597934,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 08:00:00 PM,08/17/2021 03:58:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 44 STREET and 47 STREET,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+597912,Shooting Permit,08/26/2021 07:00:00 AM,08/26/2021 09:00:00 PM,08/17/2021 03:15:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597909,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 10:00:00 PM,08/17/2021 03:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, WEST 58 STREET between 10 AVENUE and 11 AVENUE, WEST 59 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"2, 4, 7","1, 18, 20",Television,Episodic series,United States of America,"10013, 10019, 10023"
+597904,Shooting Permit,08/20/2021 03:00:00 PM,08/21/2021 07:00:00 AM,08/17/2021 02:52:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MC GUINNESS BLVD, PROVOST STREET between INDIA STREET and DUPONT STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+597897,Shooting Permit,08/19/2021 09:30:00 AM,08/19/2021 04:00:00 PM,08/17/2021 02:30:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between WILLIAM STREET and NASSAU STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and OLD SLIP, MAIDEN LANE between PEARL STREET and FRONT STREET, PEARL STREET between MAIDEN LANE and PINE STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, NASSAU STREET between PINE STREET and LIBERTY STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+597890,Shooting Permit,08/19/2021 10:00:00 AM,08/19/2021 11:00:00 PM,08/17/2021 02:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+597888,Shooting Permit,08/20/2021 12:30:00 PM,08/21/2021 02:30:00 AM,08/17/2021 02:22:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+597873,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 08:00:00 PM,08/17/2021 01:46:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 42 STREET between 12 AVENUE and 11 AVENUE, WEST 43 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Film,Feature,United States of America,10036
+597874,Shooting Permit,08/24/2021 08:00:00 AM,08/24/2021 11:30:00 PM,08/17/2021 01:46:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 3 STREET, WYTHE AVENUE between NORTH 3 STREET and NORTH 4 STREET, NORTH 4 STREET between WYTHE AVENUE and BERRY STREET, KENT AVENUE between NORTH 6 STREET and NORTH 8 STREET, NORTH 7 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 5 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,"90, 94",Film,Feature,United States of America,11249
+597868,Shooting Permit,08/24/2021 08:00:00 AM,08/25/2021 12:30:00 AM,08/17/2021 01:23:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+597867,Shooting Permit,08/20/2021 06:00:00 AM,08/20/2021 09:00:00 PM,08/17/2021 01:21:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between MORGAN AVENUE and BOGART STREET, BOGART STREET between TEN EYCK STREET and SCHOLES STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, SCHOLES STREET between BOGART STREET and MORGAN AVENUE, MEADOW STREET between BOGART STREET and MORGAN AVENUE, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+597865,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 11:00:00 PM,08/17/2021 01:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+597856,Shooting Permit,08/20/2021 08:00:00 AM,08/20/2021 10:00:00 PM,08/17/2021 12:59:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 64 STREET between PARK AVENUE and MADISON AVENUE, EAST 63 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 63 STREET and EAST 65 STREET, MADISON AVENUE between EAST 59 STREET and EAST 62 STREET, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 56 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10022, 10065, 10152"
+597852,DCAS Prep/Shoot/Wrap Permit,08/19/2021 02:30:00 PM,08/19/2021 10:30:00 PM,08/17/2021 12:53:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CHURCH STREET between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+597848,Shooting Permit,08/23/2021 07:00:00 AM,08/23/2021 09:00:00 PM,08/17/2021 12:39:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between MURRAY STREET and BARCLAY STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, WEST STREET between MURRAY STREET and BARCLAY STREET, WEST STREET between BARCLAY STREET and VESEY STREET, WEST BROADWAY between WARREN STREET and MURRAY STREET, OLD SLIP between SOUTH STREET and FRONT STREET, WATER STREET between OLD SLIP and GOUVERNEUR LANE, WATER STREET between GOUVERNEUR LANE and WALL STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between WATER STREET and PEARL STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10006, 10007, 10038, 10048, 10282"
+597845,Shooting Permit,08/20/2021 07:00:00 AM,08/20/2021 07:00:00 PM,08/17/2021 12:26:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET NORTH between MANGIN STREET and BARUCH DRIVE, DELANCEY STREET NORTH between BARUCH DRIVE and LEWIS STREET",Brooklyn,"3, 6","7, 76, 9",Still Photography,Not Applicable,United States of America,"10002, 11231"
+597843,Shooting Permit,08/24/2021 07:00:00 AM,08/24/2021 09:00:00 PM,08/17/2021 12:19:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597832,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 08:00:00 PM,08/17/2021 11:53:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET",Manhattan,3,5,Still Photography,Not Applicable,United States of America,10002
+597830,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 11:30:00 PM,08/17/2021 11:45:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, VAN DAM STREET between STARR AVENUE and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+597818,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 09:00:00 PM,08/17/2021 10:56:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between WEST 3 STREET and WEST 4 STREET, 6 AVENUE between MINETTA LANE and MINETTA STREET, 19 STREET between DITMARS BOULEVARD and 22 DRIVE, 22 ROAD between 19 STREET and 21 STREET",Manhattan,"1, 2","114, 6",Film,Feature,United States of America,"10012, 10014, 11105"
+597808,Shooting Permit,08/24/2021 07:00:00 PM,08/25/2021 07:00:00 AM,08/17/2021 10:04:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH,Queens,"1, 2","108, 114",Film,Feature,United States of America,11101
+597800,Shooting Permit,08/19/2021 09:00:00 AM,08/19/2021 11:00:00 PM,08/17/2021 06:21:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","46 STREET between 43 AVENUE and QUEENS BOULEVARD, DEXTER COURT between 85 DRIVE and 85 ROAD, 50 AVENUE between 5 STREET and 2 STREET, 5 STREET between 50 AVENUE and 51 AVENUE",Queens,"2, 5, 9","102, 108, 75",Film,Feature,United States of America,"11101, 11104, 11208, 11421"
+597797,Shooting Permit,08/20/2021 10:00:00 AM,08/20/2021 11:59:00 PM,08/17/2021 12:20:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+597795,Shooting Permit,08/19/2021 09:00:00 AM,08/19/2021 11:59:00 PM,08/17/2021 12:11:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+597777,Shooting Permit,08/18/2021 09:00:00 AM,08/18/2021 11:00:00 PM,08/16/2021 08:43:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 STREET between QUEENS BOULEVARD and 47 AVENUE, QUEENS BOULEVARD between 48 STREET and 49 STREET, 35 AVENUE between JUNCTION BOULEVARD and 94 STREET, 94 STREET between 35 AVENUE and 34 ROAD, WEST 50 STREET between 5 AVENUE and 6 AVENUE, 7 AVENUE between WEST 49 STREET and WEST 48 STREET, WEST 49 STREET between 7 AVENUE and 6 AVENUE",Queens,"2, 3, 5","108, 115, 18",Film,Feature,United States of America,"10019, 10020, 10022, 10112, 11104, 11372, 11377"
+597754,Shooting Permit,08/19/2021 09:00:00 AM,08/19/2021 10:00:00 PM,08/16/2021 05:56:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between NORMAN AVENUE and NASSAU AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597752,Shooting Permit,08/19/2021 12:00:00 PM,08/20/2021 04:00:00 AM,08/16/2021 05:54:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+597748,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 09:00:00 PM,08/16/2021 05:43:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597746,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 09:00:00 PM,08/16/2021 05:30:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597742,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 11:00:00 PM,08/16/2021 05:05:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+597735,Shooting Permit,08/19/2021 10:00:00 AM,08/20/2021 04:00:00 AM,08/16/2021 04:42:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 90 STREET and EAST 91 STREET, 5 AVENUE between EAST 91 STREET and EAST 92 STREET, 5 AVENUE between EAST 92 STREET and EAST 93 STREET, 5 AVENUE between EAST 93 STREET and EAST 94 STREET, 5 AVENUE between EAST 94 STREET and EAST 95 STREET, 5 AVENUE between EAST 95 STREET and EAST 96 STREET, EAST 93 STREET between 5 AVENUE and MADISON AVENUE, EAST 92 STREET between 5 AVENUE and MADISON AVENUE, EAST 89 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 88 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10128
+597730,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 05:00:00 PM,08/16/2021 04:05:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",MACON STREET between MALCOM X BOULEVARD and PATCHEN AVENUE,Brooklyn,3,81,Commercial,Commercial,United States of America,11233
+597723,Shooting Permit,08/23/2021 06:00:00 PM,08/23/2021 11:59:00 PM,08/16/2021 03:57:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,"14, 18",Still Photography,Not Applicable,United States of America,10036
+597711,Shooting Permit,09/27/2021 12:00:00 AM,09/27/2021 11:59:00 PM,08/16/2021 03:38:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597704,Shooting Permit,09/20/2021 12:00:00 AM,09/20/2021 11:59:00 PM,08/16/2021 03:38:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597705,Shooting Permit,09/21/2021 12:00:00 AM,09/21/2021 11:59:00 PM,08/16/2021 03:38:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597706,Shooting Permit,09/22/2021 12:00:00 AM,09/22/2021 11:59:00 PM,08/16/2021 03:38:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597703,Shooting Permit,09/19/2021 06:00:00 AM,09/19/2021 11:59:00 PM,08/16/2021 03:38:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597698,Shooting Permit,08/19/2021 11:00:00 AM,08/20/2021 04:00:00 AM,08/16/2021 03:26:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MEMORIAL DRIVE between FOREST PARK DRIVE and MYRTLE AVENUE, MYRTLE AVENUE between PARK LANE SOUTH and FREEDOM DRIVE, AUSTIN STREET between 82 DRIVE and LEFFERTS BOULEVARD, 82 DRIVE between AUSTIN STREET and KEW GARDENS ROAD, AUSTIN STREET between LEFFERTS BOULEVARD and 84 ROAD, LEFFERTS BOULEVARD between GRENFELL STREET and AUSTIN STREET, GRENFELL STREET between AUDLEY STREET and 83 AVENUE, 83 AVENUE between BEVERLY ROAD and GRENFELL STREET",Queens,"5, 6, 82, 9","102, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+597697,Shooting Permit,08/20/2021 12:00:00 PM,08/21/2021 03:00:00 AM,08/16/2021 03:14:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, HUTCHINSON RIVER PARKWAY EAST between ZULETTE AVE and E TREMONT AVE, MAYFLOWER AVENUE between WELLMAN AVENUE and DUDLEY AVENUE, ERICSON PLACE between ROEBLING AVENUE and MAITLAND AVENUE, EAST TREMONT AVENUE between LA SALLE AVENUE and MAYFLOWER AVENUE, BRUCKNER BOULEVARD between ARNOW PLACE and WILLOW LANE",Bronx,10,45,Television,Cable-episodic,United States of America,"10461, 10465"
+597696,Shooting Permit,08/20/2021 07:00:00 AM,08/21/2021 01:00:00 AM,08/16/2021 03:13:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","JUNIPER BLVD SOUTH between 75 STREET and 77 STREET, JUNIPER BLVD SOUTH between 81 STREET and DRY HARBOR ROAD, BARCLAY STREET between BROADWAY and CHURCH STREET, BROADWAY between VESEY STREET and FULTON STREET",Queens,"1, 3, 5","1, 104, 5",Television,Children,United States of America,"10007, 10038, 11379"
+597693,Shooting Permit,08/19/2021 05:00:00 PM,08/20/2021 07:00:00 AM,08/16/2021 03:07:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 12 STREET and 9 STREET, 43 AVENUE between 10 STREET and 9 STREET, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 41 AVENUE and 40 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 41 AVENUE",Queens,"1, 2","108, 114",Film,Feature,United States of America,11101
+597692,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 09:00:00 PM,08/16/2021 03:07:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 37 STREET and 36 STREET, CROSBY STREET between GRAND STREET and HOWARD STREET, GRAND STREET between BROADWAY and CROSBY STREET, LAFAYETTE STREET between GRAND STREET and BROOME STREET, GRAND STREET between CROSBY STREET and LAFAYETTE STREET, 35 AVENUE between STEINWAY STREET and 37 STREET",Queens,"1, 2","1, 114, 5",Commercial,Commercial,United States of America,"10013, 11101, 11106"
+597687,Shooting Permit,08/20/2021 07:00:00 AM,08/21/2021 11:00:00 PM,08/16/2021 02:46:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between DUPONT STREET and FREEMAN STREET, PROVOST STREET between GREEN STREET and JAVA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+597686,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 10:00:00 PM,08/16/2021 02:44:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597684,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 11:30:00 PM,08/16/2021 02:43:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST MARKS PLACE between HYATT STREET and VICTORY BOULEVARD, HYATT STREET between ST MARKS PLACE and CENTRAL AVENUE, CENTRAL AVENUE between HYATT STREET and BAY STREET, FORT PLACE between ST MARKS PLACE and MONTGOMERY AVENUE, BEDFORD PARK BOULEVARD between WEBSTER AVENUE and DECATUR AVENUE, WEBSTER AVENUE between BEDFORD PARK BOULEVARD and EAST 199 STREET, WEBSTER AVENUE between BEDFORD PARK BOULEVARD and EAST 201 STREET",Staten Island,"1, 6, 7","120, 48, 52",Commercial,Commercial,United States of America,"10301, 10458"
+597681,Shooting Permit,08/20/2021 01:00:00 AM,08/21/2021 01:00:00 PM,08/16/2021 02:34:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11237
+597679,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 09:00:00 PM,08/16/2021 02:32:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between MORGAN AVENUE and BOGART STREET, BOGART STREET between TEN EYCK STREET and SCHOLES STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, SCHOLES STREET between BOGART STREET and MORGAN AVENUE, MEADOW STREET between BOGART STREET and MORGAN AVENUE, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+597678,Shooting Permit,08/20/2021 06:00:00 AM,08/20/2021 11:59:00 PM,08/16/2021 02:28:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, 47 ROAD between JACKSON AVENUE and 11 STREET, JACKSON AVENUE between 48 AVENUE and 47 AVENUE, 47 AVENUE between JACKSON AVENUE and 11 STREET, 21 STREET between 47 ROAD and 46 ROAD, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+597675,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 10:00:00 PM,08/16/2021 02:19:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597673,Rigging Permit,08/19/2021 08:00:00 AM,08/19/2021 05:00:00 PM,08/16/2021 02:13:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between LEXINGTON AVENUE and PARK AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+597670,Shooting Permit,08/20/2021 06:00:00 AM,08/20/2021 11:30:00 PM,08/16/2021 02:08:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+597668,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 11:30:00 PM,08/16/2021 01:58:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+597667,Shooting Permit,08/20/2021 12:00:00 PM,08/20/2021 04:00:00 PM,08/16/2021 01:57:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 38 STREET between 5 AVENUE and 6 AVENUE, WEST 38 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 39 STREET between BROADWAY and 6 AVENUE, WEST 41 STREET between BROADWAY and 6 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+597666,Shooting Permit,08/20/2021 03:00:00 PM,08/21/2021 04:00:00 AM,08/16/2021 01:55:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 5 AVENUE and 7 AVENUE, 6 AVENUE between 9 STREET and 11 STREET, 5 AVENUE between 12 STREET and 13 STREET, 5 AVENUE between 13 STREET and 14 STREET, 5 AVENUE between 14 STREET and 15 STREET, 15 STREET between 5 AVENUE and 6 AVENUE, 11 STREET between 6 AVENUE and 7 AVENUE, 11 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between 11 STREET and 12 STREET, 5 AVENUE between 15 STREET and 16 STREET, 9 STREET between 5 AVENUE and 6 AVENUE, 14 STREET between 5 AVENUE and 6 AVENUE, 8 AVENUE between 6 STREET and 7 STREET",Brooklyn,"6, 7","72, 78",Film,Feature,United States of America,11215
+597651,Theater Load in and Load Outs,08/19/2021 06:00:00 AM,08/20/2021 11:59:00 PM,08/16/2021 01:02:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+597643,Theater Load in and Load Outs,08/19/2021 05:00:00 AM,08/20/2021 11:59:00 PM,08/16/2021 12:38:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+597642,Shooting Permit,08/20/2021 06:00:00 AM,08/20/2021 08:00:00 PM,08/16/2021 12:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 5 AVENUE, 5 AVENUE between EAST 61 STREET and EAST 62 STREET, WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 59 STREET between GRAND ARMY PLAZA and 6 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between BROADWAY and 7 AVENUE",Manhattan,"5, 64, 8","18, 19, 22",Film,Feature,United States of America,"10019, 10022, 10023, 10065"
+597638,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 10:00:00 PM,08/16/2021 12:24:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+597625,Shooting Permit,08/21/2021 05:00:00 AM,08/21/2021 07:00:00 PM,08/16/2021 11:27:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597621,Shooting Permit,08/18/2021 09:00:00 AM,08/18/2021 09:00:00 PM,08/16/2021 11:21:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+597619,Theater Load in and Load Outs,08/30/2021 12:01:00 AM,09/07/2021 11:59:00 PM,08/16/2021 11:17:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+597585,Shooting Permit,08/18/2021 09:00:00 AM,08/19/2021 03:00:00 AM,08/16/2021 09:15:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between ROOSEVELT AVENUE and 61 STREET, WOODSIDE AVENUE between 62 STREET and 61 STREET, 61 STREET between WOODSIDE AVENUE and 43 AVENUE, 61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between ROOSEVELT AVENUE and WOODSIDE AVENUE, 60 STREET between ROOSEVELT AVENUE and DEAD END, QUEENS BOULEVARD between 51 STREET and 59 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE, ROOSEVELT AVENUE between 60 STREET and 62 STREET, greenpoint ave between railroad ave and newtown creek, railroad ave between greenpoint ave and dead end",Queens,2,108,Television,Episodic series,United States of America,"11101, 11377"
+597582,Shooting Permit,08/18/2021 05:00:00 AM,08/18/2021 09:30:00 PM,08/16/2021 08:43:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597580,Shooting Permit,08/17/2021 05:00:00 AM,08/17/2021 09:30:00 PM,08/16/2021 08:30:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597560,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 09:00:00 PM,08/15/2021 08:34:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 76 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 76 STREET and WEST 77 STREET, COLUMBUS AVENUE between WEST 76 STREET and WEST 79 STREET, WEST 83 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 15 STREET between 6 AVENUE and 7 AVENUE, WEST 15 STREET between 5 AVENUE and 6 AVENUE, WEST 16 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5, 64, 7","13, 20, 22",Television,Made for TV/mini-series,United States of America,"10011, 10023, 10024"
+597521,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 10:00:00 PM,08/15/2021 08:56:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between DOBBIN STREET and BANKER STREET, BANKER STREET between NORMAN AVENUE and MESEROLE AVENUE, 2 AVENUE between 47 STREET and 44 STREET",Brooklyn,"1, 7","72, 94",Commercial,Commercial,United States of America,"11222, 11232"
+597455,Shooting Permit,08/18/2021 07:00:00 AM,08/19/2021 02:00:00 AM,08/13/2021 06:40:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 14 ST between WASHINGTON STREET and 9 AVE, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, 10 AVENUE between GANSEVOORT STREET and WEST STREET, WASHINGTON STREET between HORATIO STREET and JANE STREET, WASHINGTON STREET between JANE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET, JANE STREET between WASHINGTON STREET and WEST STREET, WEST STREET between HORATIO STREET and JANE STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+597446,Shooting Permit,08/22/2021 08:00:00 AM,08/22/2021 08:00:00 PM,08/13/2021 05:33:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOND STREET between 3 STREET and 4 STREET,Brooklyn,6,76,Television,Episodic series,United States of America,11231
+597439,Shooting Permit,08/18/2021 12:00:00 PM,08/19/2021 01:00:00 AM,08/13/2021 05:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE, 41 ST between 1 AVENUE and 2 AVENUE, EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+597432,Shooting Permit,08/18/2021 05:00:00 PM,08/19/2021 07:00:00 AM,08/13/2021 04:44:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 12 STREET and 9 STREET, 43 AVENUE between 10 STREET and 9 STREET, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Film,Feature,United States of America,11101
+597426,Shooting Permit,08/19/2021 09:00:00 AM,08/19/2021 10:00:00 PM,08/13/2021 04:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 139 STREET between ROCKAWAY BEACH BOULEVARD and NEWPORT AVENUE, BEACH 102 STREET between ROCKAWAY BEACH BOULEVARD and SHORE FRONT PARKWAY, SHORE FRONT PARKWAY between BEACH 102 STREET and BEACH 105 STREET, BEACH 105 STREET between SHOREFRONT PARKWAY and ROCKAWAY BEACH BOULEVARD, SHOREFRONT PARKWAY between BEACH 105 STREET and BEACH 108 STREET, BEACH 108 STREET between SHOREFRONT PARKWAY and ROCKAWAY BEACH BOULEVARD",Queens,14,100,Television,Episodic series,United States of America,11694
+597411,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 09:30:00 PM,08/13/2021 02:55:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+597375,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 10:00:00 PM,08/13/2021 12:47:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between ROCKAWAY AVENUE and THOMAS S BOYLAND STREET, FULTON STREET between ROCKAWAY AVENUE and THOMAS S BOYLAND STREET, ROCKAWAY AVENUE between SOMERS STREET and FULTON STREET, ROCKAWAY AVENUE between FULTON STREET and HERKIMER STREET, ROCKAWAY AVENUE between FULTON STREET and HERKIMER STREET, ROCKAWAY AVENUE between HERKIMER STREET and ATLANTIC AVENUE, FULTON STREET between CRESCENT STREET and PINE STREET, FULTON STREET between CRESCENT STREET and PINE STREET, FULTON STREET between PINE STREET and EUCLID AVENUE, PINE STREET between FULTON STREET and ATLANTIC AVENUE, CRESCENT STREET between RIDGEWOOD AVENUE and FULTON STREET, FULTON STREET between CRESCENT STREET and HEMLOCK STREET, FULTON STREET between HEMLOCK STREET and AUTUMN AVENUE, FULTON STREET between AUTUMN AVENUE and LINCOLN AVENUE, FULTON STREET between LINCOLN AVENUE and NICHOLS AVENUE, FULTON STREET between NICHOLS AVENUE and GRANT AVENUE",Brooklyn,"16, 5","73, 75",Film,Feature,United States of America,"11208, 11233"
+597373,Shooting Permit,08/18/2021 12:00:00 AM,08/18/2021 08:00:00 PM,08/13/2021 12:40:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between RUTGERS SLIP and PIKE SLIP,Manhattan,"0, 3","1, 5, 7, 9",Still Photography,Not Applicable,United States of America,10002
+597371,Shooting Permit,08/17/2021 05:00:00 AM,08/18/2021 03:00:00 AM,08/13/2021 12:35:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, FLUSHING AVENUE between IRVING AVENUE and SCOTT AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11222, 11237"
+597370,Shooting Permit,08/20/2021 08:00:00 AM,08/20/2021 11:00:00 PM,08/13/2021 12:33:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 12 STREET and JANE STREET, 8 AVENUE between WEST 12 STREET and BLEEKER STREET, WEST 12 STREET between 8 AVENUE and WEST 4 STREET, WEST 12 STREET between 8 AVENUE and HUDSON STREET, DEXTER COURT between 85 DRIVE and 85 ROAD, 50 AVENUE between 5 STREET and 2 STREET, 5 STREET between 51 AVENUE and 50 AVENUE",Manhattan,"2, 5, 9","102, 108, 6, 75",Film,Feature,United States of America,"10014, 11101, 11208, 11421"
+597353,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 09:00:00 PM,08/13/2021 11:26:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 29 STREET and 31 STREET, 30 STREET between 35 AVENUE and 34 AVENUE, 21 STREET between 28 AVENUE and 27 AVENUE",Queens,1,114,Film,Feature,United States of America,"11102, 11106"
+597347,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 09:00:00 PM,08/13/2021 11:13:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 87 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 88 STREET and WEST 89 STREET, RIVERSIDE DRIVE between WEST 85 STREET and WEST 87 STREET, RIVERSIDE DRIVE between WEST 87 STREET and WEST 88 STREET, WEST END AVENUE between WEST 85 STREET and WEST 89 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+597331,Shooting Permit,08/19/2021 07:00:00 AM,08/19/2021 11:00:00 PM,08/13/2021 10:40:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+597325,Shooting Permit,08/16/2021 06:00:00 AM,08/17/2021 12:00:00 AM,08/13/2021 10:24:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597305,Shooting Permit,08/19/2021 06:00:00 AM,08/19/2021 08:00:00 PM,08/13/2021 09:09:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 75 STREET and EAST 76 STREET, EAST 76 STREET between LEXINGTON AVENUE and 2 AVENUE, 3 AVENUE between EAST 75 STREET and EAST 76 STREET, LEXINGTON AVENUE between EAST 75 STREET and EAST 76 STREET, 3 AVENUE between EAST 76 STREET and EAST 77 STREET, LEXINGTON AVENUE between EAST 74 STREET and EAST 75 STREET, EAST 75 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 76 STREET and EAST 77 STREET, LEXINGTON AVENUE between EAST 77 STREET and EAST 78 STREET, LEXINGTON AVENUE between EAST 78 STREET and EAST 79 STREET, EAST 75 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Film,Feature,United States of America,"10021, 10075"
+597304,Shooting Permit,08/15/2021 07:00:00 AM,08/15/2021 11:00:00 AM,08/13/2021 08:52:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+597299,Rigging Permit,08/17/2021 08:00:00 AM,08/17/2021 05:00:00 PM,08/13/2021 06:39:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between LEXINGTON AVENUE and PARK AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+597286,Shooting Permit,08/17/2021 01:00:00 PM,08/18/2021 04:00:00 AM,08/12/2021 09:03:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between UNION STREET and LINCOLN PLACE, 8 AVENUE between LINCOLN PLACE and ST JOHNS PLACE, LINCOLN PLACE between 7 AVENUE and PLAZA ST WEST, PLAZA STREET WEST between ST. JOHNS PLACE and BERKELEY PLACE, BERKELEY PLACE between 7 AVENUE and 8 AVENUE, VANDERBILT AVENUE between MYRTLE AVENUE and DEKALB AVENUE, CLINTON AVENUE between WILLOUGHBY AVENUE and DEKALB AVENUE",Brooklyn,"2, 55, 6","78, 88",Television,Episodic series,United States of America,"11205, 11217, 11238"
+597274,Shooting Permit,08/17/2021 10:00:00 AM,08/17/2021 09:00:00 PM,08/12/2021 06:34:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",PERRY STREET between WEST 4 STREET and BLEECKER STREET,Manhattan,2,6,Commercial,Commercial,United States of America,"10011, 10014"
+597275,Shooting Permit,08/18/2021 10:00:00 AM,08/18/2021 02:00:00 PM,08/12/2021 06:34:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE between EAST 67 STREET and EAST 66 STREET,Manhattan,"5, 8","18, 19",Commercial,Commercial,United States of America,"10022, 10065"
+597272,Shooting Permit,08/21/2021 06:00:00 AM,08/21/2021 11:59:00 PM,08/12/2021 06:23:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Film,Feature,United States of America,10038
+597257,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 11:30:00 PM,08/12/2021 05:27:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+597255,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 08:00:00 PM,08/12/2021 05:00:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between MADISON AVENUE and 5 AVENUE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 39 STREET and EAST 40 STREET, PARK AVENUE between EAST 37 STREET and EAST 39 STREET, EAST 40 STREET between PARK AVENUE and MADISON AVENUE, EAST 38 STREET between MADISON AVENUE and FIFTH AVENUE, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET, MADISON AVENUE between EAST 38 STREET and EAST 39 STREET, EAST 40 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"5, 6","14, 17",Film,Feature,United States of America,"10016, 10017, 10018"
+597252,Shooting Permit,08/20/2021 12:00:00 AM,08/20/2021 11:59:00 PM,08/12/2021 04:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597251,Shooting Permit,08/19/2021 08:00:00 AM,08/19/2021 11:59:00 PM,08/12/2021 04:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597253,Shooting Permit,08/27/2021 08:00:00 AM,08/27/2021 08:00:00 PM,08/12/2021 04:50:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+597243,DCAS Prep/Shoot/Wrap Permit,08/17/2021 06:30:00 AM,08/17/2021 03:00:00 PM,08/12/2021 04:34:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",COURT STREET between MONTAGUE STREET and JORALEMON STREET,Brooklyn,2,84,Television,Episodic series,United States of America,11201
+597234,Shooting Permit,08/17/2021 08:00:00 AM,08/18/2021 01:00:00 AM,08/12/2021 04:16:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","PLAZA STREET EAST between EASTERN PARKWAY and ST. JOHNS PLACE, PLAZA STREET EAST between VANDERBILT AVENUE and FLATBUSH AVENUE, CENTRAL AVENUE between GROVE STREET and LINDEN STREET, GROVE STREET between CENTRAL AVENUE and EVERGREEN AVENUE, LINDEN STREET between CENTRAL AVENUE and EVERGREEN AVENUE, LINDEN STREET between CENTRAL AVENUE and WILSON AVENUE, MENAHAN STREET between CENTRAL AVENUE and WILSON AVENUE",Brooklyn,"4, 55, 8","77, 78, 83",Film,Feature,United States of America,"11217, 11221, 11238"
+597233,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 07:00:00 PM,08/12/2021 04:12:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 133 STREET between FREDERICK DOUGLAS BOULEVARD and ST NICHOLAS AVENUE, FREDERICK DOUGLAS BOULEVARD between WEST 133 STREET and WEST 134 STREET, ST NICHOLAS AVENUE between WEST 130 STREET and WEST 138 STREET, WEST 135 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, WEST 134 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, FREDERICK DOUGLAS BOULEVARD between WEST 134 STREET and WEST 135 STREET, FREDERICK DOUGLAS BOULEVARD between WEST 132 STREET and WEST 133 STREET",Manhattan,"10, 9","26, 32",Television,Episodic series,United States of America,"10027, 10030"
+597214,Theater Load in and Load Outs,09/10/2021 12:01:00 AM,09/14/2021 11:00:00 AM,08/12/2021 03:31:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 60 STREET between BROADWAY and COLUMBUS AVENUE,Manhattan,"4, 7","18, 20",Television,Cable-other,United States of America,"10019, 10023"
+597188,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 08:00:00 PM,08/12/2021 02:46:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Television,Made for TV/mini-series,United States of America,"10021, 10023"
+597186,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 09:30:00 PM,08/12/2021 02:41:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, MONTAGUE STREET between CLINTON STREET and COURT STREET, REMSEN STREET between HENRY STREET and COURT STREET, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, HENRY STREET between JORALEMON STREET and HUNTS LANE",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+597183,Shooting Permit,08/17/2021 10:30:00 AM,08/17/2021 05:00:00 PM,08/12/2021 02:29:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between HANCOCK STREET and JEFFERSON AVENUE, BEDFORD AVENUE between HANCOCK STREET and FULTON STREET, FULTON STREET between CLAVER PLACE and NOSTRAND AVENUE, HALSEY STREET between BEDFORD AVENUE and NOSTRAND AVENUE",Brooklyn,3,79,Television,Episodic series,United States of America,"11216, 11238"
+597172,Shooting Permit,08/15/2021 10:00:00 AM,08/16/2021 12:00:00 AM,08/12/2021 02:10:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEBROSSES STREET between HUDSON STREET and GREENWICH STREET,Manhattan,"1, 3","1, 5",WEB,Not Applicable,United States of America,"10002, 10013"
+597171,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 11:30:00 PM,08/12/2021 02:08:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+597166,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 10:00:00 PM,08/12/2021 01:51:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 19 STREET",Manhattan,5,13,Commercial,Promo,United States of America,10003
+597163,Shooting Permit,08/17/2021 09:00:00 AM,08/17/2021 11:00:00 PM,08/12/2021 01:45:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, Soundview Ave between Rosedale Ave and St. Lawrence Ave, Soundview Ave between ST LAWRENCE AVENUE and Thieriot Ave, LAFAYETTE AVENUE between SOUNDVIEW AVENUE and BEACH AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+597159,Shooting Permit,08/19/2021 04:00:00 PM,08/20/2021 02:00:00 AM,08/12/2021 01:32:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 57 STREET between 8 AVENUE and BROADWAY,Brooklyn,"1, 5","18, 94",Music Video,Signed Artist,United States of America,"10019, 11222"
+597148,Shooting Permit,08/17/2021 09:00:00 AM,08/17/2021 11:30:00 PM,08/12/2021 12:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+597146,Shooting Permit,08/16/2021 08:00:00 AM,08/16/2021 10:00:00 PM,08/12/2021 12:39:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+597137,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 11:00:00 PM,08/12/2021 12:19:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 10 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 9 STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 12 STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 13 STREET between KENT AVENUE and BERRY STREET, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+597129,Shooting Permit,08/20/2021 09:00:00 AM,08/20/2021 11:00:00 PM,08/12/2021 11:44:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597125,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 01:00:00 PM,08/12/2021 11:38:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597120,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 09:00:00 PM,08/12/2021 11:24:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between MORGAN AVENUE and BOGART STREET, BOGART STREET between TEN EYCK STREET and SCHOLES STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, SCHOLES STREET between BOGART STREET and MORGAN AVENUE, MEADOW STREET between BOGART STREET and MORGAN AVENUE, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+597119,Shooting Permit,08/16/2021 06:30:00 AM,08/16/2021 09:30:00 PM,08/12/2021 11:18:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between CALYER STREET and MESEROLE AVENUE, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597113,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 09:00:00 PM,08/12/2021 11:04:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597106,Shooting Permit,08/13/2021 01:00:00 AM,08/13/2021 01:00:00 PM,08/12/2021 10:52:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597101,Shooting Permit,08/19/2021 09:00:00 AM,08/19/2021 11:00:00 PM,08/12/2021 10:34:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, BROADWAY between 34 STREET and 35 STREET, 34 STREET between BROADWAY and 34 AVENUE, 34 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 31 AVENUE, 35 STREET between BROADWAY and 34 AVENUE, BROADWAY between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+597091,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 10:00:00 PM,08/12/2021 09:56:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+597088,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 10:00:00 PM,08/12/2021 09:20:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE,Brooklyn,1,94,WEB,Not Applicable,United States of America,11222
+597081,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 09:00:00 PM,08/12/2021 09:01:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 106 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 103 STREET and EAST 104 STREET, PARK AVENUE between EAST 104 STREET and EAST 103 STREET, 3 AVENUE between EAST 104 STREET and EAST 110 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+597073,Shooting Permit,08/14/2021 11:00:00 AM,08/15/2021 01:00:00 AM,08/12/2021 08:27:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+597069,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 09:00:00 PM,08/12/2021 06:25:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 21 STREET and 23 STREET, 23 STREET between BROADWAY and 31 DRIVE, 21 STREET between BROADWAY and 31 DRIVE, 31 STREET between 23 AVENUE and DITMARS BOULEVARD, 30 STREET between 35 AVENUE and 34 AVENUE, 34 AVENUE between 29 STREET and 30 STREET",Queens,1,114,Film,Feature,United States of America,"11105, 11106"
+597065,Shooting Permit,08/17/2021 08:00:00 AM,08/18/2021 01:00:00 AM,08/11/2021 11:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, VAN DAM STREET between GREENPOINT AVENUE and 35 STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, 35 STREET between REVIEW AVENUE and VAN DAM STREET, REVIEW AVENUE between 35 STREET and VAN DAM STREET, GREENPOINT AVE between RAILROAD AVE and REVIEW AVE, REVIEW AVE between GREENPOINT AVE and LAUREL HILL BLVD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+597059,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 08:00:00 PM,08/11/2021 10:12:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Television,Made for TV/mini-series,United States of America,"10021, 10023"
+597043,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 07:00:00 PM,08/11/2021 08:44:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between COFFEY STREET and DIKEMAN STREET, VAN BRUNT STREET between DIKEMAN STREET and COFFEY STREET, CONOVER STREET between COFFEY STREET and DIKEMAN STREET, COFFEY STREET between CONOVER STREET and FERRIS STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+597041,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 11:00:00 PM,08/11/2021 08:38:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 STREET between QUEENS BOULEVARD and 47 AVENUE, 41ST ST between QUEENS BOULEVARD and 47 AVENUE, QUEENS BOULEVARD between 39 PLACE and 41 STREET, 39 PLACE between QUEENS BOULEVARD and 47 AVENUE, 47 AVENUE between 39 STREET and 40 STREET, 43 AVENUE between 39 STREET and 39 PLACE, 39 PLACE between QUEENS BOULEVARD and 43 AVENUE, 40 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11104
+597027,Shooting Permit,08/18/2021 06:00:00 AM,08/18/2021 07:00:00 PM,08/11/2021 06:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND ARMY PLAZA between WEST 58 STREET and WEST 59 STREET, 6 AVENUE between WEST 57 STREET and WEST 58 STREET, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between GRAND ARMY PLAZA and 5 AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 60 STREET, WEST 68 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 59 STREET between GRAND ARMY PLAZA and 6 AVENUE, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 64, 7, 8","18, 19, 20, 22",Film,Feature,United States of America,"10019, 10022, 10023"
+597023,Shooting Permit,08/15/2021 07:00:00 AM,08/15/2021 08:30:00 PM,08/11/2021 06:00:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","PACIFIC STREET between CLINTON STREET and HENRY STREET, CLINTON STREET between ATLANTIC AVENUE and PACIFIC STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11201
+597019,Shooting Permit,08/14/2021 02:00:00 PM,08/14/2021 10:00:00 PM,08/11/2021 05:39:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 79 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 79 STREET and EAST 78 STREET",Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065, 10075"
+597011,Shooting Permit,08/14/2021 07:30:00 AM,08/14/2021 09:00:00 PM,08/11/2021 04:54:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between DAHILL ROAD and OCEAN PARKWAY, MCDONALD AVENUE between 18 AVENUE and WEBSTER AVENUE, 18 AVENUE between 45 STREET and EAST 5 STREET, WEBSTER AVENUE between MCDONALD AVENUE and SETON PLACE, SETON PLACE between WEBSTER AVENUE and 18 AVENUE, EAST SECOND STREET between AVENUE F and 18 AVENUE, MCDONALD AVENUE between AVENUE F and 18 AVENUE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11204, 11218, 11230"
+597000,Shooting Permit,08/17/2021 01:00:00 PM,08/18/2021 02:00:00 AM,08/11/2021 04:28:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between TOMPKINS AVENUE and THROOP AVENUE, THROOP AVENUE between FLUSHING AVENUE and HOPKINS STREET, THROOP AVENUE between HOPKINS STREET and PARK AVENUE, PARK AVENUE between TOMPKINS AVENUE and MARCUS GARVEY BOULEVARD, PARK AVENUE between MARCY AVENUE and TOMPKINS AVENUE, WHIPPLE STREET between THROOP AVENUE and FLUSHING AVENUE, GERRY ST between HARRISON AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between GERRY STREET and BARTLETT STREET, BARTLETT STREET between HARRISON AVENUE and FLUSHING AVENUE, HARRISON AVENUE between GERRY STREET and BARTLETT STREET, THROOP AVENUE between WHIPPLE STREET and THORNTON STREET",Brooklyn,"1, 3","79, 90",Television,Episodic series,United States of America,11206
+596984,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 11:59:00 PM,08/11/2021 03:34:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, EAST 4 STREET between LAFAYETTE STREET and BOWERY, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, COOPER SQUARE between EAST 4 STREET and STABLE COURT, BOWERY between EAST 4 STREET and GREAT JONES STREET, EAST 4 STREET between BOWERY and 2 AVENUE, EAST 4 STREET between 2 AVENUE and 1 AVENUE, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 81 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 76 STREET and WEST 77 STREET, COLUMBUS AVENUE between WEST 77 STREET and WEST 78 STREET, COLUMBUS AVENUE between WEST 78 STREET and WEST 79 STREET, COLUMBUS AVENUE between WEST 79 STREET and WEST 80 STREET, WEST 79 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE",Manhattan,"2, 3, 64, 7","20, 22, 9",Television,Episodic series,United States of America,"10003, 10012, 10024"
+596976,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 11:30:00 PM,08/11/2021 03:06:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+596960,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 08:00:00 PM,08/11/2021 02:16:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 5 AVENUE and 6 AVENUE, WEST 38 STREET between BROADWAY and 6 AVENUE, 6 AVENUE between WEST 38 STREET and WEST 39 STREET, WEST 39 STREET between BROADWAY and 6 AVENUE, WEST 41 STREET between BROADWAY and 6 AVENUE, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+596959,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 09:00:00 PM,08/11/2021 02:15:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 58 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Film,Feature,United States of America,10019
+596952,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 09:00:00 PM,08/11/2021 01:56:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between MORGAN AVENUE and BOGART STREET, BOGART STREET between TEN EYCK STREET and SCHOLES STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, SCHOLES STREET between BOGART STREET and MORGAN AVENUE, MEADOW STREET between BOGART STREET and MORGAN AVENUE, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+596951,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 09:00:00 PM,08/11/2021 01:56:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between MORGAN AVENUE and BOGART STREET, BOGART STREET between TEN EYCK STREET and SCHOLES STREET, BOGART STREET between SCHOLES STREET and MESEROLE STREET, SCHOLES STREET between BOGART STREET and MORGAN AVENUE, MEADOW STREET between BOGART STREET and MORGAN AVENUE, STAGG STREET between BUSHWICK AVENUE and WATERBURY STREET, WATERBURY STREET between STAGG STREET and MAUJER STREET",Brooklyn,1,90,Film,Feature,United States of America,11206
+596947,Shooting Permit,08/13/2021 06:30:00 AM,08/13/2021 10:00:00 PM,08/11/2021 01:50:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+596923,Shooting Permit,08/16/2021 09:00:00 AM,08/16/2021 10:00:00 PM,08/11/2021 12:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 46 ROAD and 50 AVENUE, JACKSON AVENUE between 47 AVENUE and 48 AVENUE, 49 AVENUE between 11 PLACE and 21 STREET, SKILLMAN AVENUE between PEARSON PLACE and 28 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+596911,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 08:30:00 PM,08/11/2021 11:59:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOULEVARD between POINT CRESCENT and MALBA DRIVE, POINT CRESCENT between BOULEVARD and DEAD END, THIRD AVENUE between WHITESTONE EXPRESSWAY and 147 STREET",Queens,7,109,Television,Episodic series,United States of America,11357
+596884,Shooting Permit,08/20/2021 11:00:00 AM,08/21/2021 01:00:00 AM,08/11/2021 10:47:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+596874,Theater Load in and Load Outs,08/13/2021 12:01:00 AM,08/25/2021 11:59:00 PM,08/11/2021 10:20:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 85 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE,Manhattan,"64, 7","20, 22",Television,Cable-other,United States of America,10024
+596870,Theater Load in and Load Outs,09/10/2021 12:01:00 AM,09/11/2021 06:00:00 AM,08/11/2021 09:36:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+596868,Theater Load in and Load Outs,08/18/2021 12:01:00 AM,08/21/2021 06:00:00 AM,08/11/2021 09:24:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONTAGUE STREET between CLINTON STREET and HENRY STREET,Brooklyn,2,84,Theater,Theater,United States of America,11201
+596867,Theater Load in and Load Outs,08/27/2021 12:01:00 AM,08/29/2021 06:00:00 AM,08/11/2021 09:10:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+596866,Theater Load in and Load Outs,08/26/2021 12:01:00 AM,08/26/2021 11:59:00 PM,08/11/2021 09:09:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+596862,Shooting Permit,08/13/2021 09:00:00 AM,08/14/2021 02:00:00 AM,08/11/2021 08:40:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, 51 AVENUE between 25 STREET and 27 STREET, 50 AVENUE between 25 STREET and 27 STREET, 25 STREET between BORDEN AVENUE and 50 AVENUE, 27 STREET between BORDEN AVENUE and 51 AVENUE, BORDEN AVENUE between 25 STREET and 27 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+596836,DCAS Prep/Shoot/Wrap Permit,08/15/2021 06:00:00 AM,08/16/2021 02:00:00 AM,08/10/2021 09:05:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WHITE STREET and WALKER STREET, CENTRE STREET between WHITE STREET and HOGAN PLACE, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, HOGAN PLACE between CENTRE STREET and BAXTER STREET, BAXTER STREET between HOGAN PLACE and WORTH STREET, EAST BROADWAY between CATHERINE STREET and PIKE STREET, EAST BROADWAY between PIKE STREET and RUTGERS STREET, PIKE STREET between EAST BROADWAY and HENRY STREET",Manhattan,"1, 3","5, 7",Television,Episodic series,United States of America,"10002, 10013"
+596833,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 08:00:00 PM,08/10/2021 09:00:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONTAGUE STREET between CADMAN PLAZA WEST and HENRY STREET,Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,11201
+596810,Shooting Permit,08/13/2021 06:00:00 AM,08/13/2021 09:00:00 PM,08/10/2021 05:55:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",LIBERTY STREET between BROADWAY and TRINITY PLACE,Manhattan,1,1,Television,Episodic series,United States of America,"10006, 10007"
+596807,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 07:00:00 PM,08/10/2021 05:49:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","MACDONALD AVENUE between CHURCH AVENUE and CATON AVENUE, ALBERMARLE ROAD between DAHILL ROAD and EAST SECOND STREET, EAST SECOND STREET between ALBEMARLE ROAD and CHURCH AVENUE, DITMAS AVENUE between DAHILL ROAD and OCEAN PARKWAY, MCDONALD AVENUE between 18 AVENUE and WEBSTER AVENUE",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11204, 11218, 11230"
+596798,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 08:00:00 PM,08/10/2021 04:54:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",PEARL STREET between STATE STREET and WHITEHALL STREET,Manhattan,1,1,WEB,Not Applicable,United States of America,"10004, 10005, 10038, 10041"
+596796,Shooting Permit,08/13/2021 05:00:00 AM,08/13/2021 11:30:00 PM,08/10/2021 04:52:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between CHURCH STREET and WEST BROADWAY, WALKER STREET between CHURCH STREET and 6 AVENUE, BEACH STREET between ST JOHNS LANE and VARICK STREET, WEST BROADWAY between WHITE STREET and WALKER STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, NORTH MOORE STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between LEONARD STREET and FRANKLIN STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, VARICK ST between LEONARD ST and FRANKLIN ST, HUDSON STREET between NORTH MOORE STREET and ERICSSON PLACE, 6 AVENUE between WHITE STREET and WALKER STREET",Manhattan,1,1,Film,Feature,United States of America,10013
+596794,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 09:00:00 PM,08/10/2021 04:48:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 72 STREET and EAST 70 STREET,Manhattan,"64, 8","19, 22",Commercial,Promo,United States of America,"10021, 10023"
+596790,Shooting Permit,08/13/2021 06:00:00 AM,08/13/2021 11:00:00 PM,08/10/2021 04:41:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 35 STREET and 30 STREET, STARR AVENUE between VAN DAM STREET and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+596770,Shooting Permit,08/13/2021 05:00:00 PM,08/14/2021 07:00:00 AM,08/10/2021 03:51:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","157 STREET between 115 DRIVE and FOCH BOULEVARD, 157 STREET between 116 AVENUE and FOCH BOULEVARD, 116 AVENUE between BARRON STREET and 160 STREET, BARRON STREET between 116 AVENUE and FOCH BOULEVARD, FOCH BOULEVARD between BARRON STREET and 157 STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and ROCKAWAY BOULEVARD",Queens,12,113,Television,Cable-episodic,United States of America,11434
+596768,Shooting Permit,08/13/2021 08:00:00 AM,08/13/2021 11:59:00 PM,08/10/2021 03:43:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 120 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 117 STREET and WEST 118 STREET, WEST 116 STREET between FREDERICK DOUGLASS BOULEVARD and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 116 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+596767,Shooting Permit,08/12/2021 12:00:00 PM,08/12/2021 08:00:00 PM,08/10/2021 03:40:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEONARD STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+596765,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 10:00:00 PM,08/10/2021 03:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 120 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 117 STREET and WEST 118 STREET, WEST 116 STREET between FREDERICK DOUGLASS BOULEVARD and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 116 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+596753,Shooting Permit,08/18/2021 08:00:00 AM,08/18/2021 10:00:00 PM,08/10/2021 03:05:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+596751,Theater Load in and Load Outs,08/11/2021 07:00:00 AM,08/18/2021 10:00:00 PM,08/10/2021 03:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+596746,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 10:00:00 PM,08/10/2021 02:50:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDER ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+596741,Shooting Permit,08/13/2021 10:30:00 AM,08/13/2021 11:30:00 PM,08/10/2021 02:27:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, 5 AVENUE between EAST 72 STREET and EAST 73 STREET",Manhattan,"64, 8","19, 22",Television,Made for TV/mini-series,United States of America,"10021, 10023"
+596731,Shooting Permit,08/13/2021 08:00:00 AM,08/13/2021 09:00:00 PM,08/10/2021 01:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","STILLWELL AVENUE between SURF AVENUE and BOARDWALK, WEST 15 STREET between SURF AVENUE and BOARDWALK",Brooklyn,13,60,Commercial,Promo,United States of America,11224
+596729,Shooting Permit,08/13/2021 02:00:00 PM,08/14/2021 03:00:00 AM,08/10/2021 01:52:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between HAVEMEYER AVENUE and CASTLE HILL AVENUE, HAVEMEYER AVENUE between WATSON AVENUE and CROSS BRONX SERVICE ROAD NORTH, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, ZEREGA AVENUE between HAVILAND AVENUE and WATSON AVENUE, COMMERCE AVE between ZEREGA AVENUE and GLEASON AVE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, WILLIAMSBRIDGE ROAD between NEILL AVENUE and RHINELANDER AVENUE, TOMLINSON AVENUE between LYDIG AVENUE and NEILL AVENUE, NEILL AVENUE between TOMLINSON AVENUE and WILLIAMSBRIDGE ROAD, TOMLINSON AVENUE between NEILL AVENUE and RHINELANDER AVENUE, NEILL AVENUE between WILLIAMSBRIDGE ROAD and YATES AVENUE, NEILL AVENUE between YATES AVENUE and HERING AVENUE, TOMLINSON AVENUE between NEILL AVENUE and RHINELANDER AVENUE, RHINELANDER AVENUE between TOMLINSON AVENUE and YATES AVENUE, TOMLINSON AVENUE between RHINELANDER AVENUE and MORRIS PARK AVENUE, MORRIS PARK AVENUE between FOWLER AVENUE and BOGART AVENUE, MORRIS PARK AVENUE between BOGART AVENUE and RADCLIFF AVENUE, MORRIS PARK AVENUE between RADCLIFF AVENUE and HAIGHT AVENUE, MORRIS PARK AVENUE between HAIGHT AVENUE and TOMLINSON AVENUE, NEILL AVENUE between TOMLINSON AVENUE and WILLIAMSBRIDGE ROAD",Bronx,"10, 11, 9","43, 45, 49",Television,Episodic series,United States of America,"10461, 10462"
+596727,Shooting Permit,08/14/2021 09:00:00 AM,08/14/2021 09:00:00 PM,08/10/2021 01:42:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WATER STREET and PLYMOUTH STREET, WASHINGTON STREET between FRONT STREET and YORK STREET, WATER STREET between ADAMS STREET and MAIN STREET",Brooklyn,2,84,Commercial,Promo,United States of America,11201
+596718,Shooting Permit,08/13/2021 04:00:00 PM,08/14/2021 06:00:00 AM,08/10/2021 01:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and NEVINS STREET, SMITH STREET between ATLANTIC AVENUE and WARREN STREET, HOYT STREET between BERGEN STREET and DEAN STREET, HOYT STREET between BERGEN STREET and WYCKOFF STREET, BERGEN STREET between SMITH STREET and HOYT STREET, COURT STREET between CONGRESS STREET and WARREN STREET, COURT STREET between WYCKOFF STREET and WARREN STREET, BERGEN STREET between HOYT STREET and BOND STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,"11201, 11217"
+596717,Shooting Permit,08/13/2021 08:00:00 AM,08/13/2021 11:00:00 PM,08/10/2021 01:09:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 122 STREET and TIEMANN PLACE, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, RIVERSIDE DRIVE between TIEMANN PLACE and ST CLAIR PLACE, RIVERSIDE DRIVE between ST CLAIR PLACE and WEST 130 STREET, RIVERSIDE DRIVE between WEST 130 STREET and WEST 131 STREET, RIVERSIDE DRIVE between WEST 131 STREET and WEST 132 STREET, RIVERSIDE DRIVE between WEST 132 STREET and WEST 133 STREET, RIVERSIDE DRIVE between WEST 133 STREET and WEST 134 STREET, RIVERSIDE DRIVE between WEST 134 STREET and WEST 135 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,10027
+596706,Shooting Permit,08/12/2021 08:00:00 AM,08/12/2021 09:00:00 PM,08/10/2021 12:45:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 122 STREET and TIEMANN PLACE, RIVERSIDE DRIVE between TIEMANN PLACE and WEST 122 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, RIVERSIDE DRIVE between TIEMANN PLACE and ST CLAIR PLACE, RIVERSIDE DRIVE between ST CLAIR PLACE and WEST 130 STREET, RIVERSIDE DRIVE between WEST 130 STREET and WEST 131 STREET, RIVERSIDE DRIVE between WEST 131 STREET and WEST 132 STREET, RIVERSIDE DRIVE between WEST 132 STREET and WEST 133 STREET, RIVERSIDE DRIVE between WEST 133 STREET and WEST 134 STREET, RIVERSIDE DRIVE between WEST 134 STREET and WEST 135 STREET",Manhattan,9,26,Television,Cable-episodic,United States of America,"10024, 10027"
+596699,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 11:00:00 PM,08/10/2021 12:22:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+596674,Shooting Permit,08/12/2021 09:30:00 AM,08/12/2021 07:30:00 PM,08/10/2021 12:05:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 46 AVENUE and 50 AVENUE, JACKSON AVENUE between 47 AVENUE and 48 AVENUE, 46 ROAD between 11 STREET and 21 STREET, 49 AVENUE between 11 PLACE and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+596673,DCAS Prep/Shoot/Wrap Permit,08/12/2021 07:00:00 AM,08/12/2021 10:00:00 AM,08/10/2021 12:04:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between THOMSON AVENUE and JACKSON AVENUE, THOMSON AVENUE between COURT SQUARE EAST and 44 DRIVE, COURT SQUARE EAST between THOMSON AVENUE and DEAD END, THOMSON AVENUE between COURT SQUARE EAST and JACKSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+596659,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 10:00:00 PM,08/10/2021 11:34:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERT ST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+596650,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 10:00:00 PM,08/10/2021 11:19:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between ELDERT ST and COVERTST",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+596648,Rigging Permit,08/16/2021 08:00:00 AM,08/16/2021 05:00:00 PM,08/10/2021 11:17:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+596643,Rigging Permit,08/13/2021 08:00:00 AM,08/13/2021 05:00:00 PM,08/10/2021 11:06:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between LEXINGTON AVENUE and PARK AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+596623,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 09:00:00 PM,08/10/2021 09:57:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 135 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, EDGECOMBE AVENUE between WEST 136 STREET and WEST 135 STREET, WEST 136 STREET between EDGECOMBE AVENUE and FREDERICK DOUGLASS BOULEVARD, EDGECOMBE AVENUE between WEST 137 STREET and WEST 136 STREET",Manhattan,10,32,Film,Feature,United States of America,10030
+596613,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 10:00:00 PM,08/10/2021 09:27:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 26 STREET and WEST 27 STREET, WEST 26 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 25 STREET and WEST 26 STREET, 11 AVENUE between WEST 28 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 28 STREET, 10 AVENUE between WEST 28 STREET and WEST 29 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10001
+596591,Shooting Permit,08/12/2021 09:00:00 AM,08/13/2021 03:00:00 AM,08/10/2021 02:01:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between DEGRAW STREET and UNION STREET, COURT STREET between UNION STREET and PRESIDENT STREET, COURT STREET between PRESIDENT STREET and CARROLL STREET, COURT STREET between CARROLL STREET and 3 PLACE, PRESIDENT STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between UNION STREET and PRESIDENT STREET, CLINTON STREET between PRESIDENT STREET and CARROLL STREET, CLINTON STREET between CARROLL STREET and 1 PLACE, CARROLL STREET between CLINTON STREET and HENRY STREET, BUTLER STREET between 3 AVENUE and 4 AVENUE, BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11217, 11231"
+596579,Shooting Permit,08/12/2021 06:00:00 AM,08/13/2021 12:00:00 AM,08/09/2021 10:09:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","SULLIVAN STREET between BLEECKER STREET and WEST 3 STREET, EAST HOUSTON STREET between AVENUE B and AVENUE C",Manhattan,"2, 3","6, 7, 9",WEB,Not Applicable,United States of America,"10002, 10009, 10012, 10014"
+596564,Shooting Permit,08/21/2021 07:00:00 AM,08/21/2021 11:59:00 PM,08/09/2021 08:12:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Television,Special/Awards Show,United States of America,10474
+596563,Shooting Permit,08/23/2021 11:00:00 AM,08/24/2021 03:00:00 AM,08/09/2021 08:08:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELAVAN STREET between DWIGHT STREET and RICHARDS STREET, COLUMBIA STREET between NELSON STREET and LUQUER STREET, HICKS STREET between NELSON STREET and LUQUER STREET, NELSON STREET between COLUMBIA STREET and HICKS STREET, NELSON STREET between HICKS STREET and HAMILTON AVENUE, BAY STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between BAY STREET and HALLECK STREET, RICHARDS STREET between VERONA STREET and VISITATION PLACE",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+596561,Shooting Permit,08/20/2021 07:00:00 AM,08/20/2021 11:59:00 PM,08/09/2021 08:06:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARRETTO STREET between LAFAYETTE AVENUE and GARRISON AVENUE,Bronx,2,41,Television,Special/Awards Show,United States of America,10474
+596552,Shooting Permit,08/13/2021 06:00:00 AM,08/14/2021 02:00:00 AM,08/09/2021 07:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between MONTGOMERY STREET and CROWN STREET, WASHINGTON AVENUE between MONTGOMERY STREET and SULLIVAN PLACE",Brooklyn,"55, 9","71, 78",Television,Variety,United States of America,11225
+596551,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 11:59:00 PM,08/09/2021 07:12:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between MONTGOMERY STREET and CROWN STREET, WASHINGTON AVENUE between MONTGOMERY STREET and SULLIVAN PLACE",Brooklyn,"55, 9","71, 78",Television,Variety,United States of America,11225
+596546,Shooting Permit,08/12/2021 07:00:00 AM,08/13/2021 02:30:00 AM,08/09/2021 06:39:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between HUMBOLDT STREET and MOULTRIE STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KENT AVENUE between NORTH 8 STREET and NORTH 9 STREET, KENT AVENUE between NORTH 9 STREET and NORTH 10 STREET, NORTH 9 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 9 STREET and NORTH 10 STREET, WYTHE AVENUE between NORTH 8 STREET and NORTH 9 STREET, NORTH 9 STREET between WYTHE AVENUE and BERRY STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+596541,Shooting Permit,08/12/2021 08:00:00 AM,08/13/2021 01:30:00 AM,08/09/2021 06:18:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between BAY RIDGE AVENUE and 72 STREET, OVINGTON AVENUE between 5 AVENUE and 4 AVENUE, OVINGTON AVENUE between 5 AVENUE and 6 AVENUE, 72 STREET between 4 AVENUE and 5 AVENUE, BAY RIDGE AVENUE between 4 AVENUE and 5 AVENUE, 4 AVENUE between OVINGTON AVENUE and BAY RIDGE AVENUE, 4 AVENUE between BAY RIDGE AVENUE and 68 STREET, 4 AVENUE between 68 STREET and SENATOR STREET, 4TH AVE between SENATOR STREET and 67TH ST, HARBOR VIEW TERRACE between 82 STREET and HARBOR LANE, 82 STREET between HARBOR VIEW TERRACE and SHORE ROAD, 82 STREET between HARBOR VIEW TERRACE and NARROWS AVENUE, NARROWS AVENUE between 83 STREET and 81 STREET, 82 STREET between NARROWS AVENUE and COLONIAL ROAD, SHORE ROAD between 79 STREET and 83 STREET",Brooklyn,10,68,Television,Episodic series,United States of America,"11209, 11220"
+596535,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 11:00:00 PM,08/09/2021 05:30:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVE and IRVING AVE, IRVING AVENUE between ELDERT STREET and COVERT STREET, LAFAYETTE STREET between WORTH STREET and DUANE STREET",Queens,"1, 4, 5","104, 5, 83",Television,Episodic series,United States of America,"10007, 11237, 11385"
+596520,Shooting Permit,08/12/2021 09:00:00 AM,08/13/2021 01:00:00 AM,08/09/2021 04:52:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",MELBOURNE AVENUE between KISSENA BOULEVARD and 149 STREET,Queens,8,107,Television,Episodic series,United States of America,11367
+596513,Shooting Permit,08/13/2021 12:30:00 PM,08/14/2021 02:30:00 AM,08/09/2021 04:33:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, CLARK STREET between HENRY STREET and CADMAN PLAZA WEST, DOCK STREET between WATER STREET and FRONT STREET, FRONT STREET between DOCK STREET and MAIN STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+596512,DCAS Prep/Shoot/Wrap Permit,08/12/2021 05:00:00 PM,08/12/2021 09:00:00 PM,08/09/2021 04:30:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WALKER STREET and WORTH STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET, CENTRE STREET between CANAL STREET and HESTER STREET",Manhattan,"1, 2, 3",5,Television,Episodic series,United States of America,"10007, 10013, 10038"
+596491,Shooting Permit,08/13/2021 06:00:00 AM,08/13/2021 08:00:00 PM,08/09/2021 03:15:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 254 STREET between ARLINGTON AVENUE and INDEPENDENCE AVENUE, ARLINGTON AVENUE between WEST 254 STREET and WEST 252 STREET",Bronx,8,50,WEB,Not Applicable,United States of America,10471
+596486,Theater Load in and Load Outs,08/13/2021 12:01:00 AM,08/15/2021 06:00:00 AM,08/09/2021 02:55:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+596482,Shooting Permit,08/14/2021 08:00:00 AM,08/14/2021 02:00:00 PM,08/09/2021 02:46:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+596477,Shooting Permit,08/13/2021 08:00:00 AM,08/13/2021 05:00:00 PM,08/09/2021 02:41:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+596465,Shooting Permit,08/11/2021 09:00:00 AM,08/11/2021 11:00:00 PM,08/09/2021 02:24:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, CLARK STREET between HENRY STREET and CADMAN PLAZA WEST, DOCK STREET between WATER STREET and FRONT STREET, FRONT STREET between MAIN STREET and DOCK STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+596440,Shooting Permit,08/25/2021 07:00:00 AM,08/25/2021 09:00:00 PM,08/09/2021 12:56:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+596439,Shooting Permit,08/13/2021 12:00:00 PM,08/14/2021 02:00:00 AM,08/09/2021 12:56:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+596437,Shooting Permit,08/24/2021 06:00:00 AM,08/24/2021 08:00:00 PM,08/09/2021 12:51:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+596435,Shooting Permit,08/12/2021 11:00:00 AM,08/13/2021 01:00:00 AM,08/09/2021 12:50:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+596434,Shooting Permit,08/23/2021 06:00:00 AM,08/23/2021 08:00:00 PM,08/09/2021 12:48:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+596432,Shooting Permit,08/11/2021 10:00:00 AM,08/11/2021 11:59:00 PM,08/09/2021 12:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+596426,Theater Load in and Load Outs,09/09/2021 12:01:00 AM,09/09/2021 11:59:00 PM,08/09/2021 12:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+596425,Theater Load in and Load Outs,09/08/2021 12:01:00 AM,09/08/2021 11:59:00 PM,08/09/2021 12:33:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+596422,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 07:00:00 PM,08/09/2021 12:27:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 50 STREET and WEST 51 STREET, 10 AVENUE between WEST 51 STREET and WEST 52 STREET, 10 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 9 AVENUE and 10 AVENUE, WEST 49 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,18,Television,Made for TV/mini-series,United States of America,10019
+596421,Shooting Permit,08/12/2021 06:00:00 AM,08/12/2021 08:00:00 PM,08/09/2021 12:27:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between WHITE STREET and FRANKLIN ST.,Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+596418,Shooting Permit,08/12/2021 06:00:00 AM,08/12/2021 10:00:00 PM,08/09/2021 12:16:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 36 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10018
+596399,Shooting Permit,08/17/2021 07:00:00 AM,08/17/2021 11:00:00 PM,08/09/2021 11:37:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+596398,Shooting Permit,08/12/2021 04:00:00 PM,08/13/2021 06:00:00 AM,08/09/2021 11:34:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and NEVINS STREET, SMITH STREET between ATLANTIC AVENUE and WARREN STREET, HOYT STREET between BERGEN STREET and DEAN STREET, HOYT STREET between BERGEN STREET and WYCKOFF STREET, BERGEN STREET between SMITH STREET and HOYT STREET, COURT STREET between CONGRESS STREET and WARREN STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,"11201, 11217"
+596397,Shooting Permit,08/16/2021 07:00:00 AM,08/16/2021 11:00:00 PM,08/09/2021 11:28:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+596385,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 10:00:00 PM,08/09/2021 11:00:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between GRAND STREET and HOWARD STREET, CROSBY STREET between HOWARD STREET and GRAND STREET",Manhattan,2,5,WEB,Not Applicable,United States of America,10013
+596382,Shooting Permit,09/10/2021 06:00:00 AM,09/10/2021 11:59:00 PM,08/09/2021 10:58:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between 6 AVENUE and 7 AVENUE,Manhattan,2,6,Television,Cable-daily,United States of America,10011
+596383,Shooting Permit,09/11/2021 06:00:00 AM,09/11/2021 06:00:00 PM,08/09/2021 10:58:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between 6 AVENUE and 7 AVENUE,Manhattan,2,6,Television,Cable-daily,United States of America,10011
+596379,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 07:00:00 PM,08/09/2021 10:56:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between BAY STREET and HALLECK STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+596376,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 07:00:00 PM,08/09/2021 10:52:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between BAY STREET and HALLECK STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+596352,Shooting Permit,08/11/2021 10:00:00 AM,08/11/2021 10:00:00 PM,08/09/2021 09:56:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between BAY STREET and HALLECK STREET,Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+596348,Shooting Permit,08/12/2021 08:00:00 AM,08/12/2021 10:30:00 PM,08/09/2021 09:37:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+596345,Shooting Permit,08/13/2021 09:00:00 AM,08/13/2021 11:00:00 PM,08/09/2021 09:24:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+596320,Shooting Permit,08/20/2021 05:00:00 PM,08/21/2021 06:00:00 AM,08/08/2021 09:31:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOMPKINS PLACE between DEGRAW STREET and KANE STREET, DEGRAW STREET between TOMPKINS PLACE and COURT STREET, DOUGLAS STREET between COURT STREET and SMITH STREET, COURT STREET between DEGRAW STREET and KANE STREET, COURT STREET between SACKETT STREET and DEGRAW STREET, KANE STREET between COURT STREET and TOMPKINS PLACE",Brooklyn,6,76,Film,Feature,United States of America,"11201, 11231"
+596318,Shooting Permit,08/19/2021 07:00:00 PM,08/20/2021 07:00:00 AM,08/08/2021 09:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between CONOVER STREET and VAN BRUNT STREET, CONOVER STREET between COFFEY STREET and DIKEMAN STREET, COFFEY STREET between VAN BRUNT STREET and RICHARDS STREET, DIKEMAN STREET between CONOVER STREET and VAN BRUNT STREET, VAN BRUNT STREET between COFFEY STREET and DIKEMAN STREET, VAN BRUNT STREET between DIKEMAN STREET and WOLCOTT STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+596317,Shooting Permit,08/18/2021 07:00:00 PM,08/19/2021 07:00:00 AM,08/08/2021 08:42:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 2 AVENUE and 1 AVENUE, EAST 6 STREET between 1 AVENUE and AVENUE A, 1 AVENUE between EAST 5 STREET and EAST 6 STREET",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+596316,Shooting Permit,08/17/2021 12:00:00 PM,08/18/2021 02:00:00 AM,08/08/2021 08:27:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 2 AVENUE and 1 AVENUE, EAST 6 STREET between 1 AVENUE and AVENUE A, 1 AVENUE between EAST 5 STREET and EAST 6 STREET",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+596312,Shooting Permit,08/16/2021 09:00:00 AM,08/16/2021 11:00:00 PM,08/08/2021 08:04:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between 2 AVENUE and 1 AVENUE, EAST 6 STREET between 1 AVENUE and AVENUE A",Manhattan,3,9,Film,Feature,United States of America,"10003, 10009"
+596183,Shooting Permit,08/10/2021 09:00:00 AM,08/10/2021 11:00:00 PM,08/06/2021 04:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+596167,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/06/2021 04:16:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 50 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10154"
+596164,Shooting Permit,08/18/2021 10:00:00 AM,08/18/2021 11:59:00 PM,08/06/2021 04:12:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between FLUSHING AVENUE and GRAND AVENUE, METROPOLITAN AVENUE between TROUTMAN STREET and STARR STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE",Queens,5,104,Television,Cable-episodic,United States of America,"11378, 11385"
+596162,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 10:00:00 PM,08/06/2021 04:12:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 ROAD between 21 STREET and 14 STREET, 31 DRIVE between 14 STREET and 21 STREET, 14TH ST between 31 ROAD and 32ND AVE, 21 STREET between 31 ROAD and BROADWAY, 31 AVENUE between 29 STREET and 23 STREET, 34 AVENUE between 24 STREET and 12 STREET, ASTORIA BOULEVARD between 28 STREET and CRESCENT STREET",Queens,1,114,Television,Episodic series,United States of America,"11102, 11106"
+596155,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 11:00:00 PM,08/06/2021 03:48:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and GREENPOINT AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+596148,Shooting Permit,08/12/2021 07:00:00 PM,08/12/2021 11:00:00 PM,08/06/2021 03:29:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and GREENPOINT AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+596146,Shooting Permit,08/17/2021 08:00:00 AM,08/17/2021 09:30:00 PM,08/06/2021 03:26:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between FLUSHING AVENUE and GRAND AVENUE, METROPOLITAN AVENUE between TROUTMAN STREET and STARR STREET, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE",Queens,5,104,Television,Cable-episodic,United States of America,"11378, 11385"
+596141,Shooting Permit,08/12/2021 06:30:00 AM,08/12/2021 10:00:00 PM,08/06/2021 03:19:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between STARR STREET and GRANDVIEW AVENUE, STARR STREET between METROPOLITAN AVENUE and WOODWARD AVENUE, 54 STREET between FLUSHING AVENUE and GRAND AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+596129,Shooting Permit,08/12/2021 10:00:00 AM,08/12/2021 11:00:00 PM,08/06/2021 02:46:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+596127,Shooting Permit,08/11/2021 11:00:00 AM,08/12/2021 02:00:00 AM,08/06/2021 02:43:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, Hutchinson River Parkway E between ROEBLING AVENUE and E Tremont Ave, MAYFLOWER AVENUE between WELLMAN AVENUE and DUDLEY AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, ERICSON PLACE between ROEBLING AVENUE and MAITLAND AVENUE, EAST TREMONT AVENUE between LA SALLE AVENUE and MAYFLOWER AVENUE, BRUCKNER BOULEVARD between ARNOW PLACE and WILLOW LANE",Bronx,10,45,Television,Cable-episodic,United States of America,"10461, 10465"
+596114,Shooting Permit,08/08/2021 12:00:00 PM,08/09/2021 02:30:00 AM,08/06/2021 02:25:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUTLAND ROAD between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between RUTLAND ROAD and MIDWOOD STREET, NOSTRAND AVENUE between MIDWOOD STREET and MAPLE STREET",Brooklyn,9,71,Film,Feature,United States of America,11225
+596101,Shooting Permit,08/11/2021 08:00:00 AM,08/11/2021 10:00:00 PM,08/06/2021 01:56:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between VARICK AVENUE and GARDNER AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between INGRAHAM STREET and FLUSHING AVENUE, INGRAHAM STREET between PORTER AVENUE and VARICK AVENUE, JOHNSON AVE between PORTER AVE and VARICK AVE, VARICK ST between JOHNSON AVE and THAMES ST",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+596093,Shooting Permit,08/09/2021 01:00:00 PM,08/09/2021 09:00:00 PM,08/06/2021 01:41:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, 3 AVENUE between EAST 47 STREET and EAST 48 STREET, 3 AVENUE between EAST 48 STREET and EAST 49 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10154"
+596090,Shooting Permit,08/07/2021 11:30:00 AM,08/08/2021 02:30:00 AM,08/06/2021 01:35:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUTLAND ROAD between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between RUTLAND ROAD and MIDWOOD STREET, NOSTRAND AVENUE between MIDWOOD STREET and MAPLE STREET, NOSTRAND AVENUE between FENIMORE STREET and HAWTHORNE STREET",Brooklyn,9,71,Film,Feature,United States of America,11225
+596079,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 10:00:00 PM,08/06/2021 01:06:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH END AVENUE between ALBANY STREET and DEAD END, ALBANY STREET between SOUTH END AVENUE and DEAD END, WEST STREET between CHAMBERS STREET and NORTH MOORE STREET, NORTH MOORE STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10013, 10280, 10281, 10282"
+596053,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/06/2021 11:37:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, 3 AVENUE between EAST 25 STREET and EAST 26 STREET, 3 AVENUE between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 26 STREET between 2 AVENUE and 3 AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, EAST 26 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Film,Feature,United States of America,"10010, 10016"
+596044,Shooting Permit,08/12/2021 06:30:00 AM,08/12/2021 08:30:00 PM,08/06/2021 11:15:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+596043,Shooting Permit,08/11/2021 06:30:00 AM,08/11/2021 08:30:00 PM,08/06/2021 11:14:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","10, 14",Film,Feature,United States of America,"10018, 10036"
+596026,Shooting Permit,08/13/2021 06:00:00 PM,08/14/2021 06:30:00 AM,08/06/2021 09:28:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELAVAN STREET between RICHARDS STREET and VAN BRUNT STREET, VERONA STREET between DWIGHT STREET and VAN BRUNT STREET, RICHARDS STREET between VERONA STREET and KING STREET, RICHARDS STREET between DELAVAN STREET and VERONA STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+596013,Shooting Permit,08/11/2021 07:00:00 AM,08/11/2021 09:00:00 PM,08/06/2021 07:31:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOOSTER STREET between SPRING STREET and BROOME STREET, YORK STREET between WASHINGTON STREET and ADAMS STREET",Manhattan,2,"1, 84",Still Photography,Not Applicable,United States of America,"10012, 10013, 11201"
+595980,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 08:00:00 PM,08/05/2021 09:03:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 26 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 29 STREET",Manhattan,5,13,Television,Made for TV/mini-series,United States of America,"10010, 10016"
+595955,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 09:00:00 PM,08/05/2021 06:05:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","80 STREET between JUNIPER BLVD NORTH and JUNIPER BLVD SOUTH, JUNIPER BLVD NORTH between 79 STREET and 78 STREET, 79 STREET between JUNIPER BLVD NORTH and 62 AVENUE",Queens,5,104,Television,Children,United States of America,11379
+595954,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/05/2021 06:05:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","68 AVENUE between 64 PLACE and 64 STREET, FRESH POND ROAD between 68 AVENUE and CATALPA AVENUE, CATALPA AVENUE between FRESH POND ROAD and 64 STREET, 64 STREET between CATALPA AVENUE and 68 AVENUE",Queens,5,104,Television,Children,United States of America,11385
+595930,Shooting Permit,08/10/2021 08:00:00 AM,08/10/2021 10:00:00 PM,08/05/2021 04:50:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, GARDNER AVENUE between INGRAHAM STREET and FLUSHING AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, JOHNSON AVENUE between PORTER AVENUE and VARICK AVENUE, INGRAHAM STREET between PORTER AVENUE and VARICK AVENUE, VARICK AVENUE between JOHNSON AVENUE and THAMES STREET, JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+595922,Shooting Permit,08/10/2021 01:00:00 AM,08/10/2021 10:00:00 PM,08/05/2021 04:36:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONTAGUE STREET between HENRY STREET and CLINTON STREET,Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11201, 11231"
+595916,Shooting Permit,08/12/2021 08:00:00 AM,08/12/2021 11:00:00 PM,08/05/2021 04:25:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 153 STREET and WEST 155 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET",Manhattan,"12, 9","30, 33",Film,Feature,United States of America,10032
+595912,Shooting Permit,08/09/2021 08:00:00 AM,08/09/2021 10:00:00 PM,08/05/2021 03:58:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+595908,Shooting Permit,08/10/2021 06:00:00 AM,08/10/2021 11:00:00 PM,08/05/2021 03:53:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between WILLIAM STREET and NASSAU STREET, FULTON STREET between NASSAU STREET and BROADWAY, GOLD STREET between SPRUCE STREET and FULTON STREET, FULTON STREET between PEARL STREET and GOLD STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between SOUTH STREET and FRONT STREET, WATER STREET between PINE STREET and JOHN STREET, SOUTH STREET between MAIDEN LANE and JOHN STREET, MAIDEN LANE between WATER STREET and FRONT STREET, BEEKMAN STREET between PARK ROW and WILLIAM STREET, NASSAU STREET between ANN STREET and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+595899,Shooting Permit,08/11/2021 07:00:00 AM,08/11/2021 09:00:00 PM,08/05/2021 03:40:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, PARK AVENUE between EAST 41 STREET and EAST 40 STREET, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 39 STREET and EAST 36 STREET, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 40 STREET and EAST 39 STREET, MADISON AVENUE between EAST 40 STREET and EAST 41 STREET",Brooklyn,"1, 5, 6","14, 17, 94",Television,Cable-episodic,United States of America,"10016, 10017, 11222"
+595894,Shooting Permit,08/11/2021 07:00:00 AM,08/11/2021 09:00:00 PM,08/05/2021 03:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595893,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/05/2021 03:26:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595891,Shooting Permit,08/11/2021 08:00:00 AM,08/11/2021 11:00:00 PM,08/05/2021 03:20:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 153 STREET and WEST 155 STREET, AMSTERDAM AVENUE between WEST 153 STREET and WEST 155 STREET",Manhattan,"12, 9","30, 33",Film,Feature,United States of America,10032
+595887,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 10:00:00 PM,08/05/2021 03:02:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",MACON STREET between THROOP AVENUE and MARCUS GARVEY BOULEVARD,Brooklyn,3,79,Still Photography,Not Applicable,United States of America,11216
+595885,Shooting Permit,08/11/2021 11:00:00 AM,08/12/2021 08:00:00 PM,08/05/2021 03:00:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","14 PLACE between 26 AVENUE and ASTORIA PARK SOUTH, 26 AVENUE between 18 STREET and 14 PLACE, 14 PLACE between 26 AVENUE and DEAD END, ASTORIA PARK SOUTH between 21 STREET and SHORE BOULEVARD, HOYT AVENUE NORTH between 21 STREET and 19 STREET, 19 STREET between 24 AVENUE and HOYT AVENUE NORTH, 14 STREET between 27 AVENUE and 26 AVENUE, ASTORIA PARK SOUTH between SHORE BOULEVARD and 14 STREET, 26 AVENUE between 18 STREET and 14 PLACE",Brooklyn,1,114,Television,Episodic series,United States of America,"11102, 11105"
+595883,Shooting Permit,08/06/2021 11:45:00 AM,08/07/2021 02:30:00 AM,08/05/2021 02:40:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUTLAND ROAD between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between RUTLAND ROAD and MIDWOOD STREET, NOSTRAND AVENUE between MIDWOOD STREET and MAPLE STREET, NOSTRAND AVENUE between FENIMORE STREET and HAWTHORNE STREET",Brooklyn,9,71,Film,Feature,United States of America,11225
+595879,Shooting Permit,08/13/2021 07:00:00 AM,08/13/2021 08:00:00 PM,08/05/2021 02:26:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595875,Shooting Permit,08/12/2021 07:00:00 AM,08/12/2021 08:00:00 PM,08/05/2021 02:18:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595871,Shooting Permit,08/07/2021 08:00:00 AM,08/07/2021 12:00:00 PM,08/05/2021 02:02:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+595867,Shooting Permit,08/11/2021 05:00:00 PM,08/12/2021 07:00:00 AM,08/05/2021 01:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between STATE STREET and WHITEHALL STREET, BRIDGE STREET between WHITEHALL STREET and BROAD STREET, STATE STREET between BRIDGE STREET and PEARL STREET, WHITEHALL STREET between BEAVER STREET and STONE STREET, WHITEHALL STREET between BRIDGE STREET and STONE STREET, PEARL STREET between STATE STREET and MOORE STREET, BEAVER STREET between BROADWAY and NEW STREET, BEAVER STREET between NEW STREET and BROAD STREET, BROADWAY between MORRIS STREET and BATTERY PLACE, BROADWAY between EXCHANGE PLACE and BEAVER STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005, 10006"
+595859,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 10:00:00 PM,08/05/2021 01:33:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595854,Shooting Permit,08/12/2021 06:00:00 PM,08/13/2021 05:30:00 AM,08/05/2021 01:21:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between SOUTH 2 STREET and SOUTH 3 STREET, KENT AVENUE between SOUTH 4 STREET and SOUTH 5 STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11249
+595851,Shooting Permit,08/11/2021 08:00:00 AM,08/11/2021 11:00:00 PM,08/05/2021 01:18:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 120 STREET and WEST 119 STREET, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, WEST 116 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 115 STREET",Manhattan,10,28,Film,Feature,United States of America,10026
+595844,Shooting Permit,08/10/2021 05:00:00 PM,08/11/2021 07:00:00 AM,08/05/2021 12:59:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRIDGE STREET between STATE STREET and WHITEHALL STREET, BRIDGE STREET between WHITEHALL STREET and BROAD STREET, STATE STREET between BRIDGE STREET and PEARL STREET, WHITEHALL STREET between BEAVER STREET and STONE STREET, WHITEHALL STREET between BRIDGE STREET and STONE STREET, PEARL STREET between STATE STREET and MOORE STREET, BEAVER STREET between BROADWAY and NEW STREET, BEAVER STREET between NEW STREET and BROAD STREET, BROADWAY between MORRIS STREET and BATTERY PLACE, BROADWAY between EXCHANGE PLACE and BEAVER STREET, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET",Manhattan,1,1,Film,Feature,United States of America,"10004, 10005, 10006"
+595821,Shooting Permit,08/10/2021 05:00:00 PM,08/11/2021 03:00:00 AM,08/05/2021 12:07:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between WORTH STREET and READE STREET",Manhattan,1,"1, 5",Film,Short,United States of America,10007
+595810,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 11:00:00 PM,08/05/2021 11:45:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595796,Shooting Permit,08/13/2021 11:00:00 AM,08/14/2021 02:00:00 AM,08/05/2021 11:08:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+595795,Shooting Permit,08/12/2021 10:00:00 AM,08/13/2021 01:00:00 AM,08/05/2021 11:06:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+595793,Shooting Permit,08/11/2021 09:00:00 AM,08/11/2021 11:59:00 PM,08/05/2021 11:03:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+595790,Shooting Permit,08/10/2021 08:00:00 AM,08/10/2021 08:00:00 PM,08/05/2021 10:51:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",YORK STREET between ST JOHN'S LANE and 6 AVENUE,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+595783,Shooting Permit,08/10/2021 08:00:00 AM,08/10/2021 10:00:00 PM,08/05/2021 10:28:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+595781,Shooting Permit,08/12/2021 06:00:00 AM,08/12/2021 11:59:00 PM,08/05/2021 10:01:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, EAST 43 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,6,17,Commercial,Commercial,United States of America,10017
+595729,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/04/2021 09:15:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 40 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 43 STREET between MADISON AVENUE and FIFTH AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 41 STREET between 5 AVENUE and MADISON AVENUE, WEST 40 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 6","14, 17",Television,Made for TV/mini-series,United States of America,"10016, 10017, 10018, 10036"
+595724,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 10:00:00 PM,08/04/2021 08:47:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 114 STREET and WEST 113 STREET, ST NICHOLAS AVENUE between WEST 113 STREET and WEST 112 STREET, WEST 113 STREET between LENOX AVENUE and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 113 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 113 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 114 STREET and WEST 115 STREET, WEST 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 115 STREET",Manhattan,10,28,Film,Feature,United States of America,10026
+595718,Shooting Permit,08/09/2021 08:00:00 AM,08/09/2021 11:00:00 PM,08/04/2021 07:36:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 113 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 113 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 114 STREET and WEST 115 STREET, WEST 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 116 STREET, ST NICHOLAS AVENUE between WEST 114 STREET and WEST 113 STREET, ST NICHOLAS AVENUE between WEST 113 STREET and WEST 112 STREET, WEST 113 STREET between ST NICHOLAS AVENUE and LENOX AVENUE",Manhattan,10,28,Film,Feature,United States of America,10026
+595713,Shooting Permit,08/10/2021 08:30:00 AM,08/10/2021 10:00:00 PM,08/04/2021 05:47:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, CLARK STREET between HENRY STREET and CADMAN PLAZA WEST, DOCK STREET between WATER STREET and FRONT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+595702,Shooting Permit,08/20/2021 09:00:00 AM,08/20/2021 11:00:00 PM,08/04/2021 05:08:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+595695,Shooting Permit,08/19/2021 08:00:00 AM,08/19/2021 11:00:00 PM,08/04/2021 04:57:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+595691,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 09:00:00 PM,08/04/2021 04:52:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between FLUSHING AVENUE and PARK AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+595690,Shooting Permit,08/18/2021 07:00:00 AM,08/18/2021 11:00:00 PM,08/04/2021 04:49:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+595689,Shooting Permit,08/08/2021 07:00:00 AM,08/08/2021 09:00:00 PM,08/04/2021 04:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between FLUSHING AVENUE and PARK AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+595688,Shooting Permit,08/17/2021 06:00:00 AM,08/17/2021 10:00:00 PM,08/04/2021 04:45:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+595684,Shooting Permit,08/16/2021 06:00:00 AM,08/16/2021 10:00:00 PM,08/04/2021 04:38:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+595675,Shooting Permit,08/11/2021 05:30:00 PM,08/12/2021 06:00:00 AM,08/04/2021 04:09:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between SOUTH 4 STREET and SOUTH 5 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11249
+595668,Shooting Permit,08/07/2021 06:00:00 AM,08/07/2021 09:00:00 PM,08/04/2021 03:57:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",DELANCEY STREET NORTH between BARUCH DRIVE and F D R DRIVE,Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+595666,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 10:00:00 PM,08/04/2021 03:56:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 64 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 64 STREET, EAST 63 STREET between PARK AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 63 STREET and EAST 62 STREET, PARK AVENUE between EAST 61 STREET and EAST 63 STREET, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 63 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 63 STREET and EAST 64 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10065
+595660,Shooting Permit,08/08/2021 06:00:00 AM,08/08/2021 12:00:00 PM,08/04/2021 03:30:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORFOLK STREET between RIVINGTON STREET and DELANCEY STREET,Brooklyn,"1, 3","7, 90",WEB,Not Applicable,United States of America,"10002, 11211"
+595652,Shooting Permit,08/13/2021 06:00:00 PM,08/14/2021 06:00:00 AM,08/04/2021 03:08:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between 72 DRIVE and 72 ROAD,Queens,"5, 6, 9","112, 75",Television,Episodic series,United States of America,"11375, 11385, 11415, 11421"
+595648,Shooting Permit,08/06/2021 06:00:00 AM,08/06/2021 08:30:00 AM,08/04/2021 02:57:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between BEDFORD AVENUE and BERRY STREET,Brooklyn,1,90,Film,Short,United States of America,11249
+595641,Shooting Permit,08/09/2021 08:00:00 AM,08/09/2021 10:00:00 PM,08/04/2021 02:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+595640,Shooting Permit,08/11/2021 07:00:00 AM,08/11/2021 08:00:00 PM,08/04/2021 02:41:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595638,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 08:00:00 PM,08/04/2021 02:38:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595634,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 08:00:00 PM,08/04/2021 02:33:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",43 AVENUE between VERNON BOULEVARD and 9 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595632,Shooting Permit,08/09/2021 11:00:00 AM,08/10/2021 03:00:00 AM,08/04/2021 02:32:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between BEDFORD AVENUE and KENT AVENUE, WYTHE AVENUE between SOUTH 6 STREET and BROADWAY, WYTHE AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,90,Film,Feature,United States of America,11249
+595627,Shooting Permit,08/11/2021 12:00:00 PM,08/12/2021 03:00:00 AM,08/04/2021 02:22:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between WITHERS STREET and FROST STREET, LORIMER STREET between FROST STREET and RICHARDSON STREET, FROST STREET between UNION AVENUE and LORIMER STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET, MEEKER AVE between UNION AVENUE and WITHERS STREET, BAYARD STREET between UNION AVENUE and LEONARD STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+595625,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 09:00:00 PM,08/04/2021 02:18:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between BROOME STREET and SPRING STREET, CROSBY STREET between PRINCE STREET and SPRING STREET, LAFAYETTE STREET between SPRING STREET and PRINCE STREET, MULBERRY STREET between PRINCE STREET and EAST HOUSTON STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, BOWERY between PRINCE STREET and SPRING STREET, BOWERY between SPRING STREET and KENMARE STREET, PRINCE STREET between LAFAYETTE STREET and MULBERRY STREET, PRINCE STREET between MULBERRY STREET and MOTT STREET, PRINCE STREET between MOTT STREET and ELIZABETH STREET, PRINCE STREET between ELIZABETH STREET and BOWERY",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+595624,Shooting Permit,08/10/2021 07:00:00 AM,08/11/2021 03:00:00 AM,08/04/2021 02:15:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MEEKER AVE between GRAHAM AVE and MCGUINNESS BLVD, GRAHAM AVENUE between NEWTON STREET and BAYARD STREET, BAYARD STREET between LEONARD STREET and GRAHAM AVENUE, BAYARD STREET between GRAHAM AVENUE and MCGUINNESS BOULEVARD, GRAHAM AVENUE between HERBERT STREET and MEEKER AVENUE, MANHATTAN AVENUE between BAYARD STREET and MEEKER AVENUE, MEEKER AVENUE between GRAHAM AVENUE and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595615,Shooting Permit,08/06/2021 06:00:00 AM,08/06/2021 10:00:00 PM,08/04/2021 01:50:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",MASPETH AVENUE between 60 STREET and 61 STREET,Brooklyn,"13, 5","104, 60",Commercial,Commercial,United States of America,"11224, 11378"
+595597,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 10:00:00 PM,08/04/2021 01:10:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+595596,Shooting Permit,08/09/2021 06:30:00 AM,08/09/2021 09:00:00 PM,08/04/2021 01:10:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 79 STREET and EAST 80 STREET, PARK AVENUE between EAST 80 STREET and EAST 81 STREET, LEXINGTON AVENUE between EAST 79 STREET and EAST 80 STREET, LEXINGTON AVENUE between EAST 80 STREET and EAST 81 STREET, LEXINGTON AVENUE between EAST 81 STREET and EAST 82 STREET, LEXINGTON AVENUE between EAST 82 STREET and EAST 83 STREET, EAST 80 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 81 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 81 STREET and EAST 82 STREET, PARK AVENUE between EAST 82 STREET and EAST 83 STREET, PARK AVENUE between EAST 83 STREET and EAST 84 STREET, PARK AVENUE between EAST 84 STREET and EAST 85 STREET, EAST 83 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 84 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10023, 10028, 10075"
+595591,Shooting Permit,08/11/2021 07:00:00 AM,08/11/2021 10:00:00 PM,08/04/2021 01:02:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595588,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 10:00:00 PM,08/04/2021 12:54:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595583,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 08:00:00 PM,08/04/2021 12:40:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 ROAD and 22 ROAD, 19 STREET between 22 ROAD and DITMARS BOULEVARD, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 19 STREET and 21 STREET",Queens,1,114,Television,Children,United States of America,11105
+595573,Shooting Permit,08/07/2021 02:00:00 PM,08/08/2021 04:00:00 AM,08/04/2021 12:16:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+595560,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 10:00:00 PM,08/04/2021 11:56:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595556,Theater Load in and Load Outs,08/20/2021 12:01:00 AM,08/26/2021 08:00:00 AM,08/04/2021 11:49:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 7 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+595553,Shooting Permit,08/06/2021 06:00:00 AM,08/06/2021 10:00:00 PM,08/04/2021 11:42:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE,Queens,2,108,Commercial,Commercial,United States of America,11101
+595540,Shooting Permit,08/13/2021 01:00:00 PM,08/13/2021 11:59:00 PM,08/04/2021 11:09:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 54 STREET and WEST 53 STREET, WEST 53 STREET between BROADWAY and 8 AVENUE",Manhattan,5,18,Television,Talk Show,United States of America,10019
+595527,Theater Load in and Load Outs,10/23/2021 12:01:00 AM,11/05/2021 11:59:00 PM,08/04/2021 10:27:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595526,Theater Load in and Load Outs,10/08/2021 12:01:00 AM,10/22/2021 11:59:00 PM,08/04/2021 10:27:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595525,Theater Load in and Load Outs,09/23/2021 12:01:00 AM,10/07/2021 11:59:00 PM,08/04/2021 10:27:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595524,Theater Load in and Load Outs,08/24/2021 12:01:00 AM,08/28/2021 11:59:00 PM,08/04/2021 10:27:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595523,Theater Load in and Load Outs,08/09/2021 12:01:00 AM,08/23/2021 11:59:00 PM,08/04/2021 10:26:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595521,Shooting Permit,08/06/2021 09:00:00 AM,08/06/2021 10:00:00 PM,08/04/2021 10:23:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+595513,Shooting Permit,08/10/2021 05:30:00 PM,08/11/2021 05:30:00 AM,08/04/2021 10:19:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 1 STREET between KENT AVENUE and RIVER STREET, RIVER STREET between NORTH 1 STREET and GRAND STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11249
+595507,Shooting Permit,08/06/2021 07:00:00 AM,08/06/2021 06:00:00 PM,08/04/2021 10:08:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between TENTH AVENUE and ELEVENTH AVENUE, WEST 20 STREET between TENTH AVENUE and ELEVENTH AVENUE, ELEVENTH AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 17 STREET between TENTH AVENUE and NINTH AVENUE, WEST 18 STREET between TENTH AVENUE and NINTH AVENUE, NINTH AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 20 STREET between TENTH AVENUE and NINTH AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+595500,Shooting Permit,08/09/2021 08:30:00 AM,08/09/2021 10:00:00 PM,08/04/2021 09:35:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, TILLARY STREET between CADMAN PLAZA WEST and CADMAN PLAZA EAST, CLARK STREET between HENRY STREET and CADMAN PLAZA WEST, DOCK STREET between WATER STREET and FRONT STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+595495,Shooting Permit,08/10/2021 08:00:00 AM,08/10/2021 11:00:00 PM,08/04/2021 08:31:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 39 STREET between 5 AVENUE and 6 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, EAST 47 STREET between 5 AVENUE and MADISON AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10016, 10017, 10018, 10036"
+595455,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 10:00:00 PM,08/03/2021 08:02:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+595437,Shooting Permit,08/10/2021 06:00:00 AM,08/10/2021 08:00:00 PM,08/03/2021 05:25:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+595436,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 08:00:00 PM,08/03/2021 05:25:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10018, 10036"
+595409,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 11:00:00 PM,08/03/2021 04:16:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,17,Commercial,Commercial,United States of America,10017
+595399,Shooting Permit,08/06/2021 08:00:00 AM,08/06/2021 08:00:00 PM,08/03/2021 03:47:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 8 AVENUE and 7 AVENUE, 7 AVENUE between WEST 16 STREET and WEST 15 STREET",Manhattan,4,"10, 13",Television,Children,United States of America,10011
+595392,Shooting Permit,08/06/2021 02:00:00 PM,08/07/2021 04:00:00 AM,08/03/2021 03:27:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 69 STREET and EAST 73 STREET, EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 72 STREET and EAST 68 STREET, EAST 72 STREET between 2 AVENUE and PARK AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+595377,Shooting Permit,08/05/2021 10:00:00 AM,08/06/2021 01:00:00 AM,08/03/2021 02:44:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUTLAND ROAD between NOSTRAND AVENUE and ROGERS AVENUE, NOSTRAND AVENUE between RUTLAND ROAD and MIDWOOD STREET, NOSTRAND AVENUE between MIDWOOD STREET and MAPLE STREET, NOSTRAND AVENUE between FENIMORE STREET and HAWTHORNE STREET",Brooklyn,9,71,Film,Feature,United States of America,11225
+595368,Shooting Permit,08/06/2021 03:00:00 PM,08/07/2021 06:00:00 AM,08/03/2021 02:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","TUDOR CITY PLACE between EAST 43 STREET and EAST 42 STREET, TUDOR CITY PLACE between EAST 42 STREET and EAST 41 STREET, LEXINGTON AVENUE between EAST 33 STREET and EAST 31 STREET, EAST 29 STREET between PARK AVENUE SOUTH and 3 AVENUE, 3 AVENUE between EAST 29 STREET and EAST 28 STREET, EAST 31 STREET between LEXINGTON AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 30 STREET and EAST 29 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE, TUDOR CITY PLACE between DEAD END and EAST 41 STREET, EAST 32 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","13, 14, 17",Television,Episodic series,United States of America,"10016, 10017"
+595362,Shooting Permit,08/05/2021 01:00:00 PM,08/06/2021 01:00:00 AM,08/03/2021 01:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 71 STREET between AMSTERDAM AVENUE and WEST END AVENUE, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 69 STREET and WEST 70 STREET, WEST 67 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 68 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 66 STREET and WEST 69 STREET, WEST 72 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 72 STREET between BROADWAY and WEST END AVENUE, WEST 73 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 74 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 74 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 73 STREET and WEST 74 STREET, WEST 87 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 87 STREET and WEST 88 STREET, WEST 87 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 86 STREET and WEST 87 STREET, WEST 88 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 88 STREET between AMSTERDAM AVENUE and BROADWAY, BROADWAY between WEST 85 STREET and WEST 88 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10023, 10024"
+595361,Shooting Permit,08/08/2021 09:00:00 PM,08/09/2021 07:00:00 AM,08/03/2021 01:44:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between BROADWAY and CROSBY STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between BROOME STREET and SPRING STREET, CROSBY STREET between SPRING STREET and PRINCE STREET, LAFAYETTE STREET between SPRING STREET and PRINCE STREET, BOWERY between KENMARE STREET and SPRING STREET, BOWERY between SPRING STREET and PRINCE STREET, BOWERY between PRINCE STREET and EAST HOUSTON STREET, CLEVELAND PLACE between SPRING STREET and KENMARE STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+595354,Shooting Permit,08/06/2021 08:00:00 AM,08/07/2021 12:00:00 AM,08/03/2021 01:31:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between MANHATTAN AVENUE and LORIMER STREET, MESEROLE AVENUE between MANHATTAN AVENUE and MCGUINNESS BOULEVARD, LEONARD STREET between MESEROLE AVENUE and NORMAN AVENUE, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595350,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 09:00:00 PM,08/03/2021 01:25:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between BROADWAY and PARK AVENUE SOUTH, BROADWAY between EAST 18 STREET and EAST 21 STREET, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 21 STREET and EAST 23 STREET, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 18 STREET between BROADWAY and 5 AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+595344,Shooting Permit,08/06/2021 08:00:00 AM,08/06/2021 10:00:00 PM,08/03/2021 01:01:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between COVERT STREET and ELDERT STREET, SCHAEFER STREET between WYCKOFF AVENUE and DEAD END",Queens,5,104,Television,Episodic series,United States of America,"11237, 11385"
+595318,Shooting Permit,08/05/2021 10:00:00 AM,08/05/2021 11:00:00 PM,08/03/2021 11:49:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+595316,Shooting Permit,08/06/2021 11:00:00 AM,08/07/2021 02:00:00 AM,08/03/2021 11:45:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","ROSEDALE AVENUE between LACOMBE AVENUE and RANDALL AVENUE, COMMONWEALTH AVENUE between RANDALL AVENUE and LACOMBE AVENUE, Commonwealth Ave between LACOMBE AVENUE and Dead End, Lacombe ave between ROSEDALE AVENUE and Dead End, SOUNDVIEW AVENUE between LACOMBE AVENUE and UNDERHILL AVENUE, MYRTLE AVENUE between 116 STREET and JAMAICA AVENUE, JAMAICA AVENUE between 115 STREET and MYRTLE AVENUE, HILLSIDE AVENUE between MYRTLE AVENUE and BABBAGE STREET, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, 117 STREET between JAMAICA AVENUE and 89 AVENUE, MYRTLE AVENUE between PARK LN SOUTH and WOODHAVEN BOULEVARD, 111 STREET between 86 AVENUE and JAMAICA AVENUE, LEFFERTS BOULEVARD between JAMAICA AVENUE and HILLSIDE AVENUE, 157 STREET between 115 DRIVE and FOCH BOULEVARD, 116 AVENUE between BARRON STREET and BEDELL STREET, BARRON STREET between FOCH BOULEVARD and 116 DRIVE, FOCH BOULEVARD between BARRON STREET and 157 STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and ROCKAWAY BOULEVARD",Bronx,"12, 9","102, 113, 43",Television,Cable-episodic,United States of America,"10473, 11418, 11434"
+595308,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 10:00:00 PM,08/03/2021 11:27:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 55 STREET and EAST 58 STREET, MADISON AVENUE between EAST 48 STREET and EAST 50 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 52 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022"
+595307,Shooting Permit,08/06/2021 05:00:00 PM,08/07/2021 07:00:00 AM,08/03/2021 11:26:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DOBBIN STREET and GEM STREET, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, BANKER STREET between NORMAN AVENUE and CALYER STREET, GEM STREET between MESEROLE AVENUE and NORTH 15 STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+595304,Theater Load in and Load Outs,09/08/2021 12:01:00 AM,09/22/2021 11:59:00 PM,08/03/2021 11:20:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+595288,Shooting Permit,08/06/2021 07:00:00 AM,08/06/2021 04:00:00 PM,08/03/2021 10:52:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 6 AVENUE and 7 AVENUE, VERONA STREET between VAN BRUNT STREET and RICHARDS STREET",Manhattan,"5, 6","18, 76",Commercial,Commercial,United States of America,"10019, 11231"
+595253,Shooting Permit,08/10/2021 07:00:00 AM,08/10/2021 11:00:00 PM,08/03/2021 08:44:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+595252,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 09:00:00 PM,08/03/2021 08:38:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595235,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 09:00:00 PM,08/02/2021 11:41:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between ALBEMARLE ROAD and REGENT PLACE, ALBEMARLE ROAD between EAST 21 STREET and FLATBUSH AVENUE, WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK",Brooklyn,"13, 14","60, 70",Still Photography,Not Applicable,United States of America,"11224, 11226"
+595233,Shooting Permit,08/09/2021 07:00:00 AM,08/09/2021 08:00:00 PM,08/02/2021 11:30:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, 8 AVENUE between WEST 46 STREET and WEST 47 STREET, WEST 46 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5",18,Television,Made for TV/mini-series,United States of America,10036
+595229,Shooting Permit,08/05/2021 08:00:00 PM,08/06/2021 03:00:00 AM,08/02/2021 11:08:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAYVIEW AVENUE between WEST 33 STREET and NEPTUNE AVENUE,Brooklyn,13,60,Student,Student Film,United States of America,11224
+595215,Shooting Permit,08/13/2021 04:00:00 PM,08/14/2021 05:00:00 AM,08/02/2021 08:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PRESIDENT STREET between COURT STREET and SMITH STREET, PRESIDENT STREET between SMITH STREET and HOYT STREET, SMITH STREET between PRESIDENT STREET and CARROLL STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+595214,Shooting Permit,08/12/2021 01:30:00 PM,08/13/2021 02:30:00 AM,08/02/2021 08:10:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PRESIDENT STREET between COURT STREET and SMITH STREET, PRESIDENT STREET between SMITH STREET and HOYT STREET, SMITH STREET between CARROLL STREET and PRESIDENT STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+595207,Shooting Permit,08/11/2021 12:30:00 PM,08/12/2021 09:00:00 PM,08/02/2021 07:43:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOUGLASS STREET between HOYT STREET and BOND STREET, DOUGLASS STREET between BOND STREET and DEAD END, BOND STREET between DEGRAW STREET and DOUGLASS STREET, DEGRAW STREET between BOND STREET and DEAD END, UNION STREET between BOND STREET and NEVINS STREET, SACKETT STREET between HOYT STREET and BOND STREET, SACKETT STREET between HOYT STREET and BOND STREET",Brooklyn,6,76,Film,Feature,United States of America,"11217, 11231"
+595203,Shooting Permit,08/10/2021 08:30:00 AM,08/10/2021 10:00:00 PM,08/02/2021 07:01:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","PRESIDENT STREET between COURT STREET and SMITH STREET, PRESIDENT STREET between SMITH STREET and HOYT STREET, SMITH STREET between PRESIDENT STREET and CARROLL STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+595202,Shooting Permit,08/05/2021 12:00:00 PM,08/05/2021 11:59:00 PM,08/02/2021 06:57:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",CEDAR STREET between BROADWAY and NASSAU STREET,Manhattan,1,1,Television,Cable-other,United States of America,"10005, 10007"
+595198,Shooting Permit,08/09/2021 06:30:00 AM,08/09/2021 08:00:00 PM,08/02/2021 06:48:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","DITMAS AVENUE between EAST 16 STREET and EAST 17 STREET, NEWKIRK AVENUE between EAST 16 STREET and EAST 17 STREET, EAST 16 STREET between NEWKIRK AVENUE and FOSTER AVENUE, EAST 16 STREET between DITMAS AVENUE and NEWKIRK AVENUE, EAST 16 STREET between DITMAS AVENUE and NEWKIRK AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11226
+595189,Shooting Permit,08/05/2021 01:30:00 PM,08/06/2021 02:30:00 AM,08/02/2021 06:27:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between NEWKIRK AVENUE and FOSTER AVENUE, NEWKIRK AVENUE between EAST 18 STREET and EAST 19 STREET, NEWKIRK AVENUE between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between NEWKIRK AVENUE and FOSTER AVENUE, EAST 18 STREET between NEWKIRK AVENUE and FOSTER AVENUE, FOSTER AVENUE between EAST 17 STREET and EAST 18 STREET",Brooklyn,14,70,Film,Feature,United States of America,"11226, 11230"
+595168,Shooting Permit,08/05/2021 10:00:00 AM,08/06/2021 02:00:00 AM,08/02/2021 05:15:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+595137,Shooting Permit,08/05/2021 08:00:00 AM,08/05/2021 11:59:00 PM,08/02/2021 04:15:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, KNICKERBOCKER AVENUE between HALSEY STREET and ELDERT STREET, KNICKERBOCKER AVENUE between ELDERT STREET and COVERT STREET, KNICKERBOCKER AVENUE between ELDERT STREET and COVERT STREET, COVERT STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, KNICKERBOCKER AVENUE between COVERT STREET and SCHAEFER STREET, KNICKERBOCKER AVENUE between COVERT STREET and SCHAEFER STREET, KNICKERBOCKER ST between SCHAEFER ST and DECATUR ST, SCHAEFER STREET between KNICKERBOCKER AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+595129,Shooting Permit,08/06/2021 07:00:00 AM,08/07/2021 03:00:00 AM,08/02/2021 04:03:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 50 AVENUE and 48 AVENUE, 49 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 11 STREET and VERNON BOULEVARD, 49 AVENUE between JACKSON AVENUE and VERNON BOULEVARD, JACKSON AVENUE between 49 AVENUE and 50 AVENUE, 48 AVENUE between 5 STREET and VERNON BOULEVARD, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+595128,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 10:00:00 PM,08/02/2021 04:00:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between MADISON AVENUE and FIFTH AVENUE, MADISON AVENUE between EAST 27 STREET and EAST 26 STREET, MADISON AVENUE between EAST 25 STREET and EAST 24 STREET, MADISON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 24 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 22 STREET, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 26 STREET between FIRST AVENUE and SECOND AVENUE, EAST 25 STREET between FIRST AVENUE and SECOND AVENUE, FIRST AVENUE between EAST 28 STREET and EAST 26 STREET, EAST 28 STREET between FIRST AVE and MT CARMEL PLACE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+595123,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 07:00:00 PM,08/02/2021 03:53:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",JACKSON AVE between 46 ROAD and 46 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+595121,Shooting Permit,08/06/2021 09:30:00 AM,08/07/2021 01:00:00 AM,08/02/2021 03:51:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 5 AVENUE, WEST 45 STREET between 7 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 6 AVENUE and 5 AVENUE, EAST 43 STREET between 3 AVENUE and 2 AVENUE, EAST 44 STREET between LEXINGTON AVENUE and 2 AVENUE, 2 AVENUE between EAST 46 STREET and EAST 43 STREET, EAST 45 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 45 STREET between 3 AVENUE and 2 AVENUE, EAST 46 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 47 STREET and EAST 45 STREET, EAST 47 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Cable-episodic,United States of America,"10017, 10036"
+595120,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 10:00:00 PM,08/02/2021 03:49:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 24 STREET and EAST 25 STREET, EAST 25 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, 3 AVENUE between EAST 25 STREET and EAST 26 STREET, 3 AVENUE between EAST 24 STREET and EAST 25 STREET, LEXINGTON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 26 STREET between 2 AVENUE and 3 AVENUE, EAST 27 STREET between MADISON AVENUE and 5 AVENUE, EAST 26 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH",Manhattan,"5, 6",13,Film,Feature,United States of America,"10010, 10016"
+595113,Shooting Permit,08/06/2021 10:00:00 AM,08/06/2021 11:00:00 PM,08/02/2021 03:25:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+595108,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 10:00:00 PM,08/02/2021 03:14:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595104,Shooting Permit,08/05/2021 09:00:00 AM,08/05/2021 10:00:00 PM,08/02/2021 03:00:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+595103,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 10:00:00 PM,08/02/2021 02:57:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 41 STREET and EAST 43 STREET",Manhattan,5,14,Television,Episodic series,United States of America,10017
+595093,Shooting Permit,08/05/2021 06:00:00 PM,08/06/2021 06:00:00 AM,08/02/2021 02:47:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and NEVINS STREET, SMITH STREET between ATLANTIC AVENUE and WARREN STREET, BERGEN STREET between SMITH STREET and BOERUM PLACE, HOYT STREET between BERGEN STREET and DEAN STREET, BERGEN STREET between SMITH STREET and HOYT STREET, COURT STREET between CONGRESS STREET and WARREN STREET",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,"11201, 11217"
+595073,Shooting Permit,08/09/2021 07:30:00 AM,08/09/2021 09:00:00 PM,08/02/2021 01:57:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAY STREET between HYATT STREET and SLOSSON TERRACE, CENTRAL AVENUE between HYATT STREET and SLOSSON TERRACE, HYATT STREET between SAINT MARKS PLACE and CENTRAL AVENUE, SAINT MARKS PLACE between HYATT STREET and VICTORY BOULEVARD",Staten Island,1,"120, 121",Television,Cable-episodic,United States of America,"10301, 10302"
+595039,Theater Load in and Load Outs,08/18/2021 12:01:00 AM,08/20/2021 06:00:00 AM,08/02/2021 01:09:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+595028,Shooting Permit,08/10/2021 06:00:00 AM,08/10/2021 05:00:00 PM,08/02/2021 12:49:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between MCGUINNESS BLVD SOUTH and HUMBOLDT STREET, HUMBOLDT STREET between DRIGGS AVENUE and BROOME STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+595013,Shooting Permit,08/10/2021 06:00:00 AM,08/10/2021 11:59:00 PM,08/02/2021 12:09:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+595009,Shooting Permit,08/04/2021 09:00:00 AM,08/04/2021 11:00:00 PM,08/02/2021 11:58:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 18 STREET and OCEAN AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11230
+595006,Shooting Permit,08/04/2021 11:00:00 AM,08/05/2021 12:00:00 AM,08/02/2021 11:53:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET, WILLOUGHBY STREET between DUFFIELD STREET and BRIDGE STREET, DEKALB AVENUE between ROCKWELL PLACE and ASHLAND PLACE, DEKALB AVENUE between ROCKWELL PLACE and HUDSON AVENUE",Brooklyn,2,"84, 88",Film,Feature,United States of America,11201
+594999,Shooting Permit,08/04/2021 09:00:00 AM,08/04/2021 11:59:00 PM,08/02/2021 11:44:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 7 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+594996,Shooting Permit,08/03/2021 08:00:00 AM,08/03/2021 11:00:00 PM,08/02/2021 11:35:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 7 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+594980,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 08:00:00 PM,08/02/2021 11:09:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 59 STREET and EAST 60 STREET, 3 AVENUE between EAST 60 STREET and EAST 61 STREET, EAST 59 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 60 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 60 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 53 STREET and EAST 57 STREET, PARK AVENUE between EAST 59 STREET and EAST 60 STREET, EAST 59 STREET between PARK AVENUE and MADISON AVENUE, WEST 58 STREET between 5 AVENUE and 6 AVENUE, WEST 57 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 59 STREET between GRAND ARMY PLAZA and 6 AVENUE, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, WEST 58 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"5, 6, 64, 8","17, 18, 19, 22",Television,Episodic series,United States of America,"10019, 10022, 10065"
+594968,Shooting Permit,08/07/2021 05:00:00 AM,08/07/2021 09:00:00 PM,08/02/2021 10:29:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","N.14T TH ST between WYTHE ST and NASSUA AVE, BANKER STREET between NORTH 15 STREET and NASSAU AVENUE",Brooklyn,1,94,WEB,Not Applicable,United States of America,"11211, 11222, 11249"
+594945,Shooting Permit,08/06/2021 11:00:00 AM,08/07/2021 02:00:00 AM,08/02/2021 09:50:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 99 STREET between 2 AVENUE and 1 AVENUE, EAST 99 STREET between 3 AVENUE and 2 AVENUE",Manhattan,11,23,Film,Feature,United States of America,10029
+594940,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 09:00:00 PM,08/02/2021 09:39:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, WYCKOFF AVENUE between GREENE AVENUE and BLEECKER STREET, WYCKOFF AVENUE between BLEECKER STREET and MENAHAN STREET, WYCKOFF AVENUE between MENAHAN STREET and GROVE STREET, MENAHAN STREET between WYCKOFF AVENUE and IRVING AVENUE, GROVE STREET between WYCKOFF AVENUE and IRVING AVENUE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+594929,Shooting Permit,08/06/2021 01:00:00 PM,08/07/2021 05:00:00 AM,08/02/2021 08:58:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between ROOSEVELT AVENUE and 61 STREET, WOODSIDE AVENUE between 61 STREET and 62 STREET, 61 STREET between WOODSIDE AVENUE and 43 AVENUE, 61 STREET between 39 AVENUE and ROOSEVELT AVENUE, 61 STREET between ROOSEVELT AVENUE and WOODSIDE AVENUE, 60 STREET between ROOSEVELT AVENUE and DEAD END, QUEENS BOULEVARD between 51 STREET and 59 STREET, 58 STREET between QUEENS BOULEVARD and 48 AVENUE, ROOSEVELT AVENUE between 59 STREET and 60 STREET",Queens,2,108,Television,Episodic series,United States of America,11377
+594866,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 09:00:00 PM,08/01/2021 01:54:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELIZABETH STREET between EAST HOUSTON STREET and BLEECKER STREET, ST JOHNS PLACE between ROGERS AVENUE and NOSTRAND AVENUE",Manhattan,"2, 8","77, 9",Commercial,Promo,United States of America,"10012, 11216"
+594863,Shooting Permit,08/05/2021 06:00:00 AM,08/05/2021 09:00:00 PM,08/01/2021 01:39:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",ARGYLE ROAD between BEVERLEY ROAD and CORTELYOU ROAD,Brooklyn,14,70,Commercial,Promo,United States of America,11218
+594796,Shooting Permit,08/11/2021 06:00:00 AM,08/11/2021 09:00:00 PM,07/31/2021 01:00:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT ST between JAY ST and BRIDGE ST, BRIDGE STREET between PROSPECT STREET and YORK STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+594787,Shooting Permit,08/05/2021 08:00:00 AM,08/05/2021 08:00:00 PM,07/31/2021 08:34:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVE between WASHINGTON PARK and CARLTON AVE, WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,"11201, 11205"
+594754,Shooting Permit,08/05/2021 12:00:00 PM,08/06/2021 04:00:00 AM,07/30/2021 06:52:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 64 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 67 STREET and EAST 64 STREET, EAST 63 STREET between PARK AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 63 STREET and EAST 62 STREET, PARK AVENUE between EAST 62 STREET and EAST 63 STREET, EAST 62 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,10065
+594743,Shooting Permit,08/04/2021 08:00:00 AM,08/04/2021 05:30:00 PM,07/30/2021 04:58:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and GOUVERNEUR LANE, MAIDEN LANE between PEARL STREET and FRONT STREET, PEARL STREET between MAIDEN LANE and PINE STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, PINE STREET between WILLIAM STREET and NASSAU STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045, 10271"
+594737,Shooting Permit,08/04/2021 02:00:00 PM,08/05/2021 02:00:00 AM,07/30/2021 04:31:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 10 AVENUE and 9 AVENUE, WEST 38 STREET between 10 AVENUE and 11 AVENUE, 12 AVENUE between WEST 135 STREET and WEST 138 STREET",Manhattan,"4, 9","10, 30",Still Photography,Not Applicable,United States of America,"10018, 10027, 10031"
+594732,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 11:59:00 PM,07/30/2021 04:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, DEKALB AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, CLINTON AVENUE between PARK AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between ADELPHI STREET and CLERMONT AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, MYRTLE AVENUE between VANDERBILT AVENUE and CLINTON AVENUE, MYRTLE AVENUE between CLINTON AVENUE and WAVERLY AVENUE, CLINTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11205, 11217, 11251"
+594728,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 11:00:00 PM,07/30/2021 03:48:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CENTER BOULEVARD between N BASIN RD. and 46TH AVENUE, NORTH BASIN RD. between 5TH STREET and CENTER BOULEVARD, 5TH STREET between NORTH BASIN RD. and 46TH ROAD, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 45 ROAD and 45 AVENUE, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 46 AVENUE between 11 STREET and VERNON BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+594725,Shooting Permit,08/05/2021 10:00:00 AM,08/06/2021 02:00:00 AM,07/30/2021 03:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+594710,Shooting Permit,08/04/2021 06:30:00 AM,08/04/2021 06:30:00 PM,07/30/2021 03:07:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between PRINCE STREET and JERSEY STREET, WEST 56 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"2, 5","13, 18, 5",Commercial,Commercial,United States of America,"10010, 10012, 10019"
+594706,Shooting Permit,08/05/2021 06:30:00 AM,08/05/2021 11:00:00 AM,07/30/2021 02:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MAIDEN LANE and LIBERTY STREET, LIBERTY STREET between BROADWAY and NASSAU STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10005, 10006, 10038"
+594695,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 10:00:00 PM,07/30/2021 02:03:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",Washington Street between BARROW STREET and Avenue of Americas,Manhattan,2,6,Film,Feature,United States of America,10014
+594688,Shooting Permit,08/05/2021 11:00:00 AM,08/06/2021 01:00:00 AM,07/30/2021 01:45:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between 6 AVENUE and 5 AVENUE, WEST 17 STREET between 6 AVENUE and 5 AVENUE, EAST 16 STREET between 5 AVENUE and UNION SQUARE WEST, 6 AVENUE between WEST 17 STREET and WEST 14 STREET, 5 AVENUE between EAST 17 STREET and EAST 16 STREET, 5 AVENUE between EAST 16 STREET and EAST 14 STREET, WEST 15 STREET between 6 AVENUE and 5 AVENUE, WEST 16 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 15 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 69 STREET, EAST 69 STREET between PARK AVENUE and 3 AVENUE, EAST 70 STREET between PARK AVENUE and 3 AVENUE, PARK AVENUE between EAST 72 STREET and EAST 69 STREET, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"4, 5, 8","10, 13, 19",Television,Cable-episodic,United States of America,"10003, 10011, 10021"
+594687,Shooting Permit,08/06/2021 08:00:00 AM,08/06/2021 11:59:00 PM,07/30/2021 01:44:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MC GUINNESS BLVD, PROVOST STREET between INDIA STREET and DUPONT STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+594676,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 10:00:00 PM,07/30/2021 01:12:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Pilot,United States of America,11217
+594674,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 10:00:00 PM,07/30/2021 01:11:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 71 STREET and EAST 69 STREET, EAST 70 STREET between LEXINGTON AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 69 STREET and EAST 68 STREET, EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 69 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 68 STREET, EAST 68 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 67 STREET and EAST 66 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+594670,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 10:00:00 PM,07/30/2021 01:02:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Pilot,United States of America,11217
+594661,Shooting Permit,08/05/2021 10:30:00 AM,08/05/2021 11:59:00 PM,07/30/2021 12:33:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between PRINCE STREET and SPRING STREET, BOWERY between SPRING STREET and KENMARE STREET, BOWERY between KENMARE STREET and BROOME STREET, BOWERY between BROOME STREET and GRAND STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, BOND STREET between BROADWAY and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3","5, 9",Television,Cable-episodic,United States of America,"10002, 10003, 10012, 10013"
+594658,Shooting Permit,08/06/2021 12:00:00 PM,08/07/2021 03:00:00 PM,07/30/2021 12:19:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+594657,Shooting Permit,08/05/2021 11:00:00 AM,08/06/2021 02:00:00 AM,07/30/2021 12:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+594656,Shooting Permit,08/04/2021 06:00:00 PM,08/05/2021 06:00:00 AM,07/30/2021 12:16:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 90 STREET and EAST 96 STREET, FIFTH AVENUE between EAST 87 STREET and EAST 89 STREET, EAST 89 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 88 STREET between FIFTH AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 85 STREET and EAST 89 STREET, MADISON AVENUE between EAST 89 STREET and EAST 90 STREET, FIFTH AVENUE between EAST 89 STREET and EAST 90 STREET, PARK AVENUE between EAST 84 STREET and EAST 85 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10028, 10128"
+594655,Shooting Permit,08/03/2021 06:00:00 PM,08/04/2021 06:00:00 AM,07/30/2021 12:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 90 STREET and EAST 96 STREET, FIFTH AVENUE between EAST 87 STREET and EAST 89 STREET, EAST 89 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 88 STREET between FIFTH AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 85 STREET and EAST 89 STREET, MADISON AVENUE between EAST 89 STREET and EAST 90 STREET, FIFTH AVENUE between EAST 89 STREET and EAST 90 STREET, PARK AVENUE between EAST 84 STREET and EAST 85 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10028, 10128"
+594651,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 11:00:00 PM,07/30/2021 11:57:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594649,Shooting Permit,08/09/2021 06:00:00 AM,08/09/2021 11:00:00 PM,07/30/2021 11:43:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between WEST 110 STREET and WEST 114 STREET, WEST 112 STREET between MANHATTAN AVENUE and FREDERICK DOUGLAS BOULEVARD, WEST 113 STREET between MANHATTAN AVENUE and FREDERICK DOUGLAS BOULEVARD, WEST 116 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, 7 AVENUE between WEST 117 STREET and WEST 121 STREET, WEST 119 STREET between 7 AVENUE and LENOX AVENUE, LENOX AVENUE between WEST 115 STREET and WEST 118 STREET, WEST 118 STREET between 7 AVENUE and LENOX AVENUE, WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD",Manhattan,"10, 9","26, 28",Television,Episodic series,United States of America,"10026, 10027"
+594648,Shooting Permit,07/31/2021 05:00:00 AM,07/31/2021 10:00:00 AM,07/30/2021 11:40:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+594646,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 11:00:00 PM,07/30/2021 11:34:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594641,Shooting Permit,08/05/2021 09:00:00 AM,08/05/2021 11:59:00 PM,07/30/2021 11:23:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET, LENOX AVENUE between WEST 120 STREET and WEST 119 STREET, LENOX AVENUE between WEST 120 STREET and WEST 119 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+594633,Shooting Permit,08/04/2021 09:00:00 AM,08/04/2021 11:00:00 PM,07/30/2021 10:49:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 120 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 119 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Film,Feature,United States of America,"10026, 10027"
+594624,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 09:00:00 PM,07/30/2021 10:34:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, ST NICHOLAS AVENUE between WEST 114 STREET and WEST 113 STREET, WEST 113 STREET between ST NICHOLAS AVENUE and LENOX AVENUE, ST NICHOLAS AVENUE between WEST 113 STREET and WEST 112 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 115 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 114 STREET and WEST 113 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 113 STREET and WEST 112 STREET, W 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 115 STREET",Manhattan,10,28,Film,Feature,United States of America,10026
+594615,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 11:59:00 PM,07/30/2021 10:16:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",DUANE STREET between WEST BROADWAY and CHURCH STREET,Manhattan,1,1,Commercial,Industrial/Corporate,United States of America,10013
+594616,Shooting Permit,08/05/2021 06:00:00 AM,08/05/2021 11:59:00 PM,07/30/2021 10:16:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",DUANE STREET between WEST BROADWAY and CHURCH STREET,Manhattan,1,1,Commercial,Industrial/Corporate,United States of America,10013
+594609,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 10:00:00 PM,07/30/2021 09:54:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCOKOFF AVE and IRVING AVE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+594607,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 06:00:00 PM,07/30/2021 09:52:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","CARMINE STREET between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between 6 AVENUE and CARMINE STREET",Manhattan,2,6,Documentary,Not Applicable,United States of America,"10012, 10014"
+594605,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 10:00:00 PM,07/30/2021 09:35:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between COVERT STREET and ELDERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+594595,Shooting Permit,08/06/2021 06:00:00 AM,08/06/2021 09:00:00 PM,07/30/2021 06:24:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 16 STREET between NEWKIRK AVENUE and FOSTER AVENUE,Brooklyn,14,70,Commercial,Promo,United States of America,11226
+594577,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 09:00:00 PM,07/29/2021 09:58:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBIA STREET between KANE STREET and DEGRAW STREET,Brooklyn,6,76,Commercial,Promo,United States of America,11231
+594572,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 07:00:00 PM,07/29/2021 08:59:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",ESSEX STREET between GRAND STREET and CANAL STREET,Manhattan,3,7,Still Photography,Not Applicable,United States of America,10002
+594564,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 09:00:00 PM,07/29/2021 07:53:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between PIONEER STREET and VISITATION PLACE, VAN BRUNT STREET between PIONEER STREET and KING STREET, PIONEER STREET between VAN BRUNT STREET and IMLAY STREET, IMLAY STREET between PIONEER STREET and VERONA STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+594544,Shooting Permit,08/04/2021 11:00:00 AM,08/05/2021 03:00:00 AM,07/29/2021 05:37:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between HAVEMEYER AVENUE and CROSS BRONX SERVICE ROAD NORTH, HAVEMEYER AVENUE between WATSON AVENUE and CROSS BRONX SERVICE ROAD NORTH, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, ZEREGA AVENUE between HAVILAND AVENUE and WATSON AVENUE, COMMERCE AVE between ZEREGA AVE and GLEASON AVE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE, EAST TREMONT AVENUE between UNIONPORT ROAD and PURDY STREET, POPLAR STREET between BRONXDALE AVENUE and PAULDING AVENUE, BRONXDALE AVENUE between POPLAR STREET and EAST TREMONT AVENUE, EAST TREMONT AVENUE between BRONXDALE AVENUE and PAULDING AVENUE, CASTLE HILL AVENUE between EAST TREMONT AVENUE and METROPOLITAN AVENUE, LYVERE STREET between EAST TREMONT AVENUE and ZEREGA AVENUE, PAULDING AVENUE between POPLAR STREET and EAST TREMONT AVENUE",Bronx,"10, 11, 9","43, 45, 49",Television,Episodic series,United States of America,"10461, 10462"
+594532,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 09:00:00 PM,07/29/2021 04:54:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, RIVER STREET between GRAND STREET and NORTH 1 STREET",Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,11249
+594523,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 07:00:00 PM,07/29/2021 04:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",HUNTER STREET between 42 ROAD and 43 AVENUE,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+594521,Shooting Permit,08/03/2021 09:00:00 AM,08/03/2021 10:00:00 PM,07/29/2021 04:40:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 18 STREET and OCEAN AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11230
+594514,Shooting Permit,08/04/2021 06:00:00 AM,08/05/2021 01:00:00 AM,07/29/2021 04:33:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 55 STREET, EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10022, 10152"
+594511,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 09:00:00 PM,07/29/2021 04:28:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 18 STREET and OCEAN AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11230
+594498,Shooting Permit,08/07/2021 06:00:00 AM,08/07/2021 08:00:00 PM,07/29/2021 04:01:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+594497,Shooting Permit,08/06/2021 06:00:00 AM,08/06/2021 08:00:00 PM,07/29/2021 04:00:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+594496,Shooting Permit,08/05/2021 06:00:00 AM,08/05/2021 08:00:00 PM,07/29/2021 04:00:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+594495,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 08:00:00 PM,07/29/2021 03:59:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+594492,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 08:00:00 PM,07/29/2021 03:57:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+594461,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 09:00:00 PM,07/29/2021 02:58:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594459,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 09:00:00 PM,07/29/2021 02:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594457,Shooting Permit,08/04/2021 10:00:00 AM,08/05/2021 01:00:00 AM,07/29/2021 02:57:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 37 STREET between 5 AVENUE and MADISON AVENUE, EAST 38 STREET between MADISON AVENUE and 5 AVENUE, WEST 38 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 37 STREET and EAST 40 STREET, WEST 39 STREET between 6 AVENUE and 5 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between 1 AVENUE and FDR DRIVE, 1 AVENUE between EAST 41 STREET and EAST 40 STREET, EAST 40 STREET between 2 AVENUE and TUNNEL APPROACH STREET, EAST 39 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 41 STREET and EAST 39 STREET, EAST 41 STREET between 3 AVENUE and 2 AVENUE, EAST 39 STREET between TUNNEL EXIT STREET and 2 AVENUE, 2 AVENUE between EAST 42 STREET and EAST 41 STREET, EAST 40 STREET between TUNNEL APPROACH STREET and 1 AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,"10016, 10017, 10018"
+594452,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 08:00:00 PM,07/29/2021 02:29:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594449,Shooting Permit,08/03/2021 06:30:00 AM,08/03/2021 08:00:00 PM,07/29/2021 02:21:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NEWEL STREET and MCGUINNESS BOULEVARD, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between HUMBOLDT STREET and MOULTRIE STREET, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594425,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 12:30:00 PM,07/29/2021 01:32:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 67 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,20,Television,Variety,United States of America,10023
+594402,Shooting Permit,08/03/2021 12:00:00 PM,08/03/2021 08:00:00 PM,07/29/2021 12:25:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between DEAD END and FERRIS STREET,Brooklyn,6,76,Student,Student Film,United States of America,11231
+594390,Shooting Permit,08/06/2021 07:00:00 AM,08/06/2021 07:00:00 PM,07/29/2021 11:58:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",3RD AVENUE between WHITESTONE EXPRESSWAY and 147TH STREET,Queens,7,109,WEB,Not Applicable,United States of America,11357
+594382,Rigging Permit,08/04/2021 08:00:00 AM,08/04/2021 04:00:00 PM,07/29/2021 11:37:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+594369,Shooting Permit,08/03/2021 09:00:00 AM,08/03/2021 11:00:00 PM,07/29/2021 11:04:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+594353,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 10:00:00 PM,07/29/2021 10:20:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEKALB AVENUE between FORT GREENE PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between FT GREENE PLACE and ROCKWELL PLACE, ASHLAND PLACE between DEKALB AVENUE and WILLOUGHBY STREET, DEKALB AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET, SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 21 STREET, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE",Brooklyn,"2, 4","10, 88",Television,Episodic series,United States of America,"10011, 11201, 11217"
+594352,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 11:00:00 PM,07/29/2021 10:12:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between GUERNSEY STREET and MANHATTAN AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, LORIMER STREET between NORMAN AVENUE and NASSAU AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, NORMAN AVENUE between MANHATTAN AVENUE and LEONARD STREET, WYTHE AVENUE between NORTH 15 STREET and BANKER STREET, BANKER STREET between NORMAN AVENUE and NORTH 15 STREET, NORTH 15 STREET between WYTHE AVENUE and BANKER STREET, NORTH 15 STREET between WYTHE AVENUE and FRANKLIN STREET, WYTHE AVENUE between NORTH 15 STREET and NORTH 14 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222, 11249"
+594351,Shooting Permit,07/30/2021 07:30:00 PM,07/31/2021 01:00:00 AM,07/29/2021 10:07:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",39 STREET between NORTHERN BOULEVARD and SKILLMAN AVENUE,Queens,2,108,Film,Feature,United States of America,11101
+594348,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 07:00:00 PM,07/29/2021 09:42:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Documentary,Not Applicable,United States of America,10011
+594345,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 07:00:00 PM,07/29/2021 09:25:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",VARET STREET between BOGART STREET and WHITE STREET,Brooklyn,1,90,Documentary,Not Applicable,United States of America,11206
+594342,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 08:00:00 PM,07/29/2021 08:35:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 115 STREET between LENOX AVENUE and 5 AVENUE, LENOX AVENUE between WEST 115 STREET and WEST 116 STREET, WEST 116 STREET between LENOX AVENUE and 5 AVENUE, WEST 116TH STREET between LENOX AVENUE and ST NICHOLAS AVENUE, 5 AVENUE between EAST 115 STREET and EAST 116 STREET, EAST 116 STREET between 5 AVENUE and MADISON AVENUE, WEST 114 STREET between LENOX AVENUE and ST NICHOLAS AVENUE, LENOX AVENUE between WEST 113 STREET and WEST 114 STREET",Manhattan,"10, 11","25, 28",Film,Feature,United States of America,"10026, 10029"
+594341,Shooting Permit,08/03/2021 07:00:00 AM,08/03/2021 09:00:00 PM,07/29/2021 08:09:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 167 STREET between FINDLAY AVENUE and COLLEGE AVENUE, EAST 167 STREET between TELLER AVENUE and CLAY AVENUE, WEBSTER AVENUE between EAST 167 STREET and EAST 166 STREET, FINDLAY AVENUE between EAST 167 STREET and EAST 168 STREET, TELLER AVENUE between EAST 168 STREET and EAST 169 STREET, FINDLAY AVENUE between EAST 168 STREET and EAST 169 STREET, WEBSTER AVENUE between EAST 170 STREET and CLAREMONT PARKWAY",Bronx,"3, 4","42, 44",Television,Cable-episodic,United States of America,"10456, 10457"
+594314,Shooting Permit,07/31/2021 12:00:00 PM,08/01/2021 02:30:00 AM,07/28/2021 11:00:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 42 STREET and 43 STREET",Queens,2,108,Film,Feature,United States of America,11104
+594312,Shooting Permit,08/06/2021 04:00:00 PM,08/07/2021 05:00:00 AM,07/28/2021 10:22:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 34 STREET and WEST 40 STREET,Manhattan,"1, 2, 4","1, 10, 18, 6",Film,Feature,United States of America,"10001, 10007, 10011, 10013, 10014, 10018, 10019, 10280, 10281, 10282"
+594311,Shooting Permit,07/30/2021 11:00:00 AM,07/31/2021 01:00:00 AM,07/28/2021 10:15:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 42 STREET and 43 STREET",Queens,2,108,Film,Feature,United States of America,11104
+594306,Shooting Permit,08/04/2021 11:00:00 AM,08/05/2021 01:00:00 AM,07/28/2021 09:33:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between TROUTMAN STREET and JEFFERSON STREET, BROADWAY between JEFFERSON STREET and STOCKTON STREET, MYRTLE AVENUE between BROADWAY and LEWIS AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,"11206, 11221"
+594304,Shooting Permit,08/03/2021 10:00:00 AM,08/04/2021 12:00:00 AM,07/28/2021 09:20:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between TROUTMAN STREET and JEFFERSON STREET, BROADWAY between JEFFERSON STREET and STOCKTON STREET, MYRTLE AVENUE between BROADWAY and LEWIS AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,"11206, 11221"
+594300,Shooting Permit,08/02/2021 08:00:00 AM,08/02/2021 10:00:00 PM,07/28/2021 09:02:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between TROUTMAN STREET and JEFFERSON STREET, BROADWAY between JEFFERSON STREET and STOCKTON STREET, MYRTLE AVENUE between BROADWAY and LEWIS AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,"11206, 11221"
+594295,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 11:00:00 PM,07/28/2021 08:11:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594270,Shooting Permit,08/04/2021 09:00:00 AM,08/04/2021 11:59:00 PM,07/28/2021 04:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between CHURCH AVENUE and ALBEMARLE ROAD, ALBEMARLE ROAD between MCDONALD AVENUE and DAHILL ROAD, MCDONALD AVENUE between ALBEMARLE ROAD and CATON AVENUE, 14 AVENUE between 37 STREET and 36 STREET",Brooklyn,12,66,Film,Feature,United States of America,11218
+594257,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 10:00:00 PM,07/28/2021 04:08:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between FRONT STREET and YORK STREET, YORK STREET between ADAMS STREET and PEARL STREET, ADAMS STREET between YORK STREET and PROSPECT STREET, YORK STREET between ADAMS STREET and WASHINGTON STREET, WASHINGTON STREET between FRONT STREET and YORK STREET, DUFFIELD STREET between MYRTLE AVENUE and WILLOUGHBY STREET, DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET, WILLOUGHBY STREET between DUFFIELD STREET and BRIDGE STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+594229,DCAS Prep/Shoot/Wrap Permit,08/02/2021 08:00:00 AM,08/02/2021 10:00:00 PM,07/28/2021 03:00:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CENTRE STREET and ELK STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CHURCH STREET between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+594222,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 10:00:00 PM,07/28/2021 02:49:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594221,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 11:00:00 PM,07/28/2021 02:49:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+594217,Shooting Permit,08/04/2021 10:00:00 AM,08/04/2021 11:59:00 PM,07/28/2021 02:42:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+594214,Shooting Permit,07/31/2021 07:00:00 AM,07/31/2021 09:00:00 PM,07/28/2021 02:26:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,13,Still Photography,Not Applicable,United States of America,10001
+594213,Shooting Permit,08/03/2021 08:30:00 AM,08/04/2021 12:30:00 AM,07/28/2021 02:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 29 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 28 STREET, WEST 28 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+594208,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 08:00:00 PM,07/28/2021 02:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 11 AVENUE and 10 AVENUE, WEST 26 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 23 STREET between 10 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 8 AVENUE, WEST 23 STREET between 8 AVENUE and 7 AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10011"
+594192,Shooting Permit,08/04/2021 07:00:00 AM,08/04/2021 07:00:00 PM,07/28/2021 01:40:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11249
+594193,Shooting Permit,08/06/2021 08:00:00 AM,08/06/2021 08:00:00 PM,07/28/2021 01:40:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLT STREET between NORMAN AVENUE and MESEROLE AVENUE, PACIFIC STREET between 4 AVENUE and FLATBUSH AVENUE",Brooklyn,"1, 2, 6","78, 94",Still Photography,Not Applicable,United States of America,"11217, 11222"
+594187,Shooting Permit,07/30/2021 03:30:00 PM,07/31/2021 06:00:00 AM,07/28/2021 01:35:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY STREET between SOUTH END AVENUE and DEAD END, SOUTH END AVENUE between LIBERTY STREET and WEST THAMES STREET, SOUTH END AVENUE between WEST THAMES STREET and DEAD END, ALBANY STREET between SOUTH END AVENUE and WEST STREET, RECTOR PL between SOUTH END AVENUE and DEAD END, BROADWAY between EXCHANGE ALLEY and MORRIS STREET, BATTERY PLACE between LITTLE WEST STREET and 1 PLACE, BATTERY PLACE between 2 PLACE and 1 PLACE, BATTERY PLACE between 3 PLACE and 2 PLACE, BATTERY PLACE between WEST THAMES STREET and 3 PLACE",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10006, 10280, 10281"
+594164,Shooting Permit,08/02/2021 01:00:00 PM,08/03/2021 02:00:00 AM,07/28/2021 12:55:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MORTON STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between CARMINE STREET and BLEECKER STREET, LEROY STREET between BEDFORD STREET and BLEECKER STREET, BLEECKER STREET between CARMINE STREET and LEROY STREET, 6 AVENUE between WEST 3 STREET and WEST 4 STREET, 6 AVENUE between MINETTA LANE and BLEECKER STREET, 6 AVENUE between BLEECKER STREET and BEDFORD STREET, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET",Brooklyn,"2, 3","6, 81",Television,Episodic series,United States of America,"10011, 10014, 11233"
+594157,Shooting Permit,08/03/2021 09:00:00 AM,08/03/2021 11:00:00 PM,07/28/2021 12:46:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BAYARD STREET between BAXTER STREET and MULBERRY STREET, BAXTER STREET between WHITE STREET and HOGAN PLACE, BAXTER STREET between HOGAN PLACE and WORTH STREET, CENTRE STREET between WALKER STREET and WORTH STREET, CENTRE STREET between HESTER STREET and HOWARD STREET, WALKER STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between CANAL STREET and FRANKLIN STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 69 STREET and EAST 68 STREET, PARK AVENUE between EAST 69 STREET and EAST 67 STREET, EAST 67 STREET between MADISON AVENUE and PARK AVENUE, EAST 69 STREET between MADISON AVENUE and PARK AVENUE, EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 71 STREET and EAST 69 STREET, EAST 70 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 69 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"1, 2, 3, 8","19, 5",Television,Cable-episodic,United States of America,"10013, 10021, 10065"
+594155,Shooting Permit,07/30/2021 12:00:00 PM,07/31/2021 03:00:00 AM,07/28/2021 12:45:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 9 AVENUE and 10 AVENUE, WEST 48 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 46 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5",18,Music Video,Signed Artist,United States of America,"10019, 10036"
+594144,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 11:59:00 PM,07/28/2021 12:32:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET",Manhattan,1,1,Television,Cable-other,United States of America,10013
+594143,Shooting Permit,08/01/2021 06:00:00 AM,08/01/2021 11:59:00 PM,07/28/2021 12:32:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between LAIGHT STREET and VESTRY STREET",Manhattan,1,1,Television,Cable-other,United States of America,10013
+594118,Shooting Permit,08/04/2021 12:00:00 AM,08/04/2021 06:00:00 PM,07/28/2021 11:30:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 47 STREET and WEST 49 STREET, WEST 47 STREET between 8 AVENUE and BROADWAY",Manhattan,5,"14, 18",WEB,Not Applicable,United States of America,"10019, 10036"
+594107,Shooting Permit,09/03/2021 01:00:00 AM,09/03/2021 03:00:00 PM,07/28/2021 11:01:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+594104,Shooting Permit,09/02/2021 06:00:00 AM,09/02/2021 11:59:00 PM,07/28/2021 10:54:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+594073,Shooting Permit,08/03/2021 01:30:00 PM,08/04/2021 02:00:00 AM,07/28/2021 09:48:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRACE COURT between DEAD END and HICKS STREET, REMSEN STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and JORALEMON STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, COURT STREET between JORALEMON STREET and MONTAGUE STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+594072,Shooting Permit,07/30/2021 12:00:00 PM,07/30/2021 11:30:00 PM,07/28/2021 09:47:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, FULTON STREET between NASSAU STREET and BROADWAY, GOLD STREET between SPRUCE STREET and ANN STREET, FULTON STREET between GOLD STREET and PEARL STREET, PEARL STREET between FULTON STREET and BEEKMAN STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET, WEST ST between FULTON ST and MURRAY ST, NASSAU STREET between SPRUCE STREET and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10038"
+594056,Shooting Permit,07/30/2021 10:00:00 AM,07/30/2021 11:59:00 PM,07/28/2021 09:15:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between CHURCH STREET and BROADWAY, AVENUE OF AMERICAS between LISPENARD STREET and WALKER STREET, WALKER STREET between AVENUE OF AMERICAS and CHURCH STREET, AVENUE OF AMERICAS between WALKER STREET and WHITE STREET, WALKER STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between WHITE STREET and FRANKLIN STREET, WHITE STREET between BROADWAY and CHURCH STREET, FRANKLIN STREET between BROADWAY and LAFAYETTE STREET, WHITE STREET between BROADWAY and LAFAYETTE STREET",Manhattan,1,"1, 5",Film,Feature,United States of America,10013
+594053,Shooting Permit,08/02/2021 01:00:00 PM,08/03/2021 04:00:00 AM,07/28/2021 08:53:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HICKS STREET and HENRY STREET, ATLANTIC AVENUE between HENRY STREET and CLINTON STREET, COLUMBIA STREET between CONGRESS STREET and DEGRAW STREET, COLUMBIA STREET between DEGRAW STREET and SACKETT STREET, CLINTON STREET between ATLANTIC AVENUE and PACIFIC STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE",Brooklyn,"2, 6","76, 84",Film,Feature,United States of America,"11201, 11231"
+594052,Shooting Permit,08/04/2021 05:00:00 PM,08/05/2021 05:00:00 AM,07/28/2021 08:50:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between BROADWAY and GREAT JONES ALLEY, BOND STREET between LAFAYETTE STREET and GREAT JONES ALLEY, BROADWAY between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BLEEKER STREET and BOND STREET",Manhattan,2,"6, 9",Commercial,Commercial,United States of America,10012
+593998,Shooting Permit,07/30/2021 08:00:00 AM,07/30/2021 10:00:00 PM,07/27/2021 07:15:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 8 STREET and EAST 10 STREET",Manhattan,3,9,Film,Feature,United States of America,10009
+593994,Shooting Permit,08/02/2021 08:00:00 AM,08/02/2021 09:00:00 PM,07/27/2021 06:35:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",EMERSON PLACE between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+593987,Theater Load in and Load Outs,08/01/2021 12:01:00 AM,08/02/2021 06:00:00 AM,07/27/2021 06:03:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 55 STREET and WEST 56 STREET",Manhattan,4,18,Theater,Theater,United States of America,10019
+593957,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 10:00:00 PM,07/27/2021 04:25:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between WILLETT STREET and PITT STREET, HENRY STREET between JACKSON STREET and GOUVERNEUR STREET, WILLETT STREET between GRAND STREET and DELANCY STREET, EAST BROADWAY between SAMUEL DICKSTEIN PLAZA and MONTGOMERY STREET, GRAND STREET between COLUMBIA STREET and WILLETT STREET, EAST BROADWAY between GRAND STREET and SAMUEL DICKSTEIN PLAZA, SAMUEL DICKSTEIN PLAZA between HENRY STREET and GRAND STREET",Manhattan,3,7,Film,Feature,United States of America,10002
+593946,Shooting Permit,07/30/2021 11:00:00 AM,07/31/2021 03:00:00 AM,07/27/2021 04:06:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, BORDEN AVENUE between 29 STREET and 27 STREET, REVIEW AVENUE between BORDEN AVENUE and 35 STREET, 29 STREET between REVIEW AVENUE and BORDEN AVENUE, BORDEN AVENUE between 30 STREET and DEAD END",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+593938,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 09:00:00 PM,07/27/2021 03:55:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",MACOMBS PLACE between FREDERICK DOUGLAS BOULEVARD and WEST 151 STREET,Manhattan,10,"30, 32",WEB,Not Applicable,United States of America,10039
+593919,Shooting Permit,07/31/2021 07:00:00 AM,07/31/2021 07:00:00 PM,07/27/2021 03:24:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",UNION STREET between 5 AVENUE and 4 AVENUE,Brooklyn,6,78,Commercial,Commercial,United States of America,"11215, 11217"
+593912,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 06:00:00 PM,07/27/2021 03:07:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","CONOVER STREET between REED STREET and VAN DYKE STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET, CONOVER STREET between REED STREET and VAN DYKE STREET, COFFEY STREET between FERRIS STREET and CONOVER STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+593885,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 11:00:00 PM,07/27/2021 01:44:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 66 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 67 STREET and WEST 66 STREET",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,"10023, 10024, 10025"
+593859,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 10:00:00 PM,07/27/2021 01:01:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+593852,Shooting Permit,07/31/2021 06:00:00 AM,07/31/2021 08:00:00 PM,07/27/2021 12:51:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET, WEST 41 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",14,Film,Feature,United States of America,"10018, 10036"
+593851,Shooting Permit,07/29/2021 10:30:00 AM,07/29/2021 10:30:00 PM,07/27/2021 12:42:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN DYKE STREET between DEAD END and CONOVER STREET, COFFEY STREET between DEAD END and FERRIS STREET, FERRIS STREET between COFFEY STREET and VAN DYKE STREET, FERRIS STREET between WOLCOTT STREET and DIKEMAN STREET",Brooklyn,"5, 6","104, 76",Television,Cable-episodic,United States of America,"11231, 11385"
+593847,Shooting Permit,07/30/2021 06:00:00 AM,07/30/2021 06:00:00 PM,07/27/2021 12:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 8 AVENUE and 7 AVENUE,Manhattan,4,10,Television,Children,United States of America,10011
+593834,Shooting Permit,07/29/2021 01:30:00 PM,07/30/2021 04:00:00 AM,07/27/2021 11:54:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","DYCKMAN STREET between SEAMAN AVENUE and DEAD END, PAYSON AVENUE between DYCKMAN STREET and RIVERSIDE DRIVE, RIVERSIDE DRIVE between HENSHAW STREET and DYCKMAN STREET, MARGARET CORBIN PLAZA between CABRINI BOULEVARD and MARGARET CORBIN DRIVE, CABRINI BOULEVARD between MARGARET CORBIN PLAZA and WEST 190 STREET, FORT WASHINGTON AVENUE between MARGARET CORBIN PLAZA and WEST 190 STREET, FORT WASHINGTON AVENUE between WEST 190 STREET and WEST 187 STREET",Manhattan,12,34,Television,Episodic series,United States of America,"10034, 10040"
+593825,Shooting Permit,07/29/2021 08:00:00 AM,07/29/2021 08:00:00 PM,07/27/2021 11:37:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, GREENE STREET between PRINCE STREET and SPRING STREET",Brooklyn,2,"1, 84",Still Photography,Not Applicable,United States of America,"10012, 10013, 11201"
+593817,Shooting Permit,08/03/2021 08:00:00 AM,08/03/2021 10:00:00 PM,07/27/2021 11:20:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET, 35 STREET between BROADWAY and 34 AVENUE, BROADWAY between 35 STREET and 36 STREET, BROADWAY between 36 STREET and 37 STREET, 36 STREET between BROADWAY and 34 AVENUE, 37 STREET between BROADWAY and 34 AVENUE",Queens,1,114,Television,Episodic series,United States of America,"11101, 11103, 11106"
+593807,Shooting Permit,07/29/2021 03:00:00 PM,07/30/2021 04:30:00 AM,07/27/2021 11:02:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WHITEHALL STREET between BRIDGE STREET and PEARL STREET, BRIDGE STREET between STATE STREET and BROAD STREET, PEARL STREET between WHITEHALL STREET and STATE STREET, WHITEHALL ST between BEAVER ST and STONE ST, BEAVER ST between WHITEHALL ST and NEW ST, BEAVER STREET between NEW STREET and BROAD STREET, BROADWAY between EXCHANGE ALLEY and MORRIS STREET, BROADWAY between MORRIS STREET and BATTERY PL, BROAD STREET between PEARL STREET and WATER STREET, WATER STREET between MAIDEN LANE and OLD SLIP, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between PEARL STREET and WATER STREET, BATTERY PLACE between LITTLE WEST STREET and 1 PLACE, BATTERY PLACE between 2 PLACE and 1 PLACE, BATTERY PLACE between 3 PLACE and 2 PLACE, BATTERY PLACE between WEST THAMES STREET and 3 PLACE",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10006, 10038, 10280"
+593782,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 10:00:00 PM,07/27/2021 09:43:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 132 STREET and WEST 131 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 131 STREET and WEST 130 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 130 STREET and WEST 129 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 129 STREET and WEST 128 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 128 STREET and WEST 127 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 127 STREET and WEST 126 STREET, WEST 130 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,10,"28, 32",Film,Feature,United States of America,10027
+593773,Shooting Permit,07/29/2021 08:00:00 AM,07/30/2021 01:00:00 AM,07/27/2021 09:26:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 11 STREET and 21 STREET, 21 STREET between 44 DRIVE and 44 ROAD, 44 DRIVE between 21 STREET and HUNTER STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, HUNTER STREET between 44 DRIVE and 43 AVENUE, CRESCENT STREET between 44 ROAD and 43 AVENUE, 44 ROAD between 24 STREET and CRESCENT STREET, SKILLMAN AVENUE between 47 AVENUE and 29 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+593771,Shooting Permit,07/29/2021 08:00:00 AM,07/29/2021 10:00:00 PM,07/27/2021 09:15:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",CRANSTON STREET between 135 AVENUE and NORTH CONDUIT AVENUE,Queens,"12, 83",113,Film,Feature,United States of America,"11430, 11434"
+593765,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 11:00:00 PM,07/27/2021 08:48:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 42 STREET and 43 STREET",Queens,2,108,Film,Feature,United States of America,11104
+593761,Rigging Permit,08/03/2021 08:00:00 AM,08/03/2021 05:00:00 PM,07/27/2021 07:44:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE,Manhattan,11,23,Television,Talk Show,United States of America,10029
+593750,Shooting Permit,07/30/2021 10:00:00 AM,07/30/2021 07:00:00 PM,07/26/2021 10:29:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between VARICK STREET and HUDSON STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, VARICK STREET between FRANKLIN STREET and LEONARD STREET",Manhattan,1,"1, 5",Film,Feature,United States of America,10013
+593739,Shooting Permit,07/31/2021 08:00:00 AM,07/31/2021 09:00:00 PM,07/26/2021 07:50:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","OLINVILLE AVENUE between PELHAM PARKWAY NORTH and THWAITES PLACE, PELHAM PARKWAY NORTH between OLINVILLE AVENUE and BARKER AVENUE, BARKER AVENUE between PELHAM PARKWAY NORTH and THWAITES PLACE",Bronx,"11, 27",49,Commercial,Commercial,United States of America,10467
+593726,Shooting Permit,07/30/2021 02:00:00 PM,07/31/2021 04:00:00 AM,07/26/2021 06:20:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between SOUNDVIEW AVENUE and BEACH AVENUE, SOUNDVIEW AVENUE between LAFAYETTE AVENUE and ST LAWRENCE AVENUE, SOUNDVIEW AVENUE between ST LAWRENCE AVENUE and TAYLOR AVENUE, Soundview Ave between RANDALL AVENUE and Thieriot Ave, Soundview Ave between Leland Ave and Underhill Ave, UNDERHILL AVENUE between SOUNDVIEW AVENUE and PATTERSON AVENUE, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE, LACOMBE AVENUE between BEACH AVENUE and THIERIOT AVENUE, TAYLOR AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, BEACH AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, PATTERSON AVENUE between ST LAWRENCE AVENUE and BEACH AVENUE, Beach Ave between PATTERSON AVENUE and Dead End, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between TAYLOR AVENUE and THIERIOT AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+593709,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 09:00:00 PM,07/26/2021 05:00:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between MONTAGUE ST and LIVINGSTON ST, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, PIERREPONT STREET between HENRY STREET and CLINTON STREET, BOERUM PLACE between JORALEMON STREET and LIVINGSTON STREET, CLINTON STREET between PIERREPONT STREET and MONTAGUE STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+593699,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 08:00:00 PM,07/26/2021 04:36:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 39 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 39 STREET and WEST 40 STREET",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+593697,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 10:00:00 PM,07/26/2021 04:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593685,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 11:00:00 PM,07/26/2021 03:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 42 STREET and 43 STREET",Queens,2,108,Film,Feature,United States of America,11104
+593673,Shooting Permit,08/04/2021 08:00:00 PM,08/05/2021 02:30:00 AM,07/26/2021 03:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, BEVERLEY ROAD between ARGYLE ROAD and EAST 8 STREET, CATON AVENUE between STRATFORD ROAD and RUGBY ROAD",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226"
+593672,Shooting Permit,07/27/2021 09:00:00 AM,07/28/2021 03:00:00 AM,07/26/2021 03:17:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between SUTTON STREET and MORGAN AVENUE, SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, NASSAU AVENUE between KINGSLAND AVENUE and SUTTON STREET, CALYER STREET between MCGUINNESS BOULEVARD and DIAMOND STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE, ECKFORD STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between ECKFORD STREET and MCGUINNESS BOULEVARD, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between LORIMER STREET and MANHATTAN AVENUE, LORIMER STREET between MESEROLE AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593661,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 08:00:00 PM,07/26/2021 02:49:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",UNION STREET between SMITH STREET and HOYT STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+593662,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 08:00:00 PM,07/26/2021 02:49:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and EAST 8 STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE",Manhattan,"1, 3","9, 90",Still Photography,Not Applicable,United States of America,"10009, 11249"
+593658,Theater Load in and Load Outs,08/22/2021 12:01:00 AM,08/23/2021 06:00:00 AM,07/26/2021 02:40:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+593653,Theater Load in and Load Outs,08/21/2021 12:01:00 AM,08/21/2021 11:59:00 PM,07/26/2021 02:34:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+593649,Theater Load in and Load Outs,08/11/2021 12:01:00 AM,08/12/2021 06:00:00 AM,07/26/2021 02:19:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+593633,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 09:00:00 PM,07/26/2021 01:43:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+593616,Shooting Permit,07/30/2021 06:00:00 AM,07/30/2021 09:00:00 PM,07/26/2021 12:46:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, NARROWS AVENUE between 88 STREET and 89 STREET, NARROWS AVENUE between 87 STREET and 88 STREET, 88 STREET between NARROWS AVENUE and COLONIAL ROAD",Manhattan,"10, 2","68, 9",Commercial,Commercial,United States of America,"10003, 11209"
+593615,Shooting Permit,07/30/2021 01:00:00 AM,07/30/2021 09:00:00 PM,07/26/2021 12:42:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 8 AVENUE and 9 AVENUE, WEST 38 STREET between 8 AVENUE and 9 AVENUE, WEST 38 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,14,WEB,Not Applicable,United States of America,10018
+593593,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 09:00:00 PM,07/26/2021 11:59:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",19 AVENUE between 45 STREET and HAZEN STREET,Queens,"1, 80",114,Television,Episodic series,United States of America,11105
+593581,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 11:59:00 PM,07/26/2021 11:39:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",11 AVENUE between WEST 53 STREET and WEST 54 STREET,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+593573,Rigging Permit,07/28/2021 06:00:00 AM,07/28/2021 06:00:00 PM,07/26/2021 11:24:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 130 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD,Manhattan,10,32,Film,Feature,United States of America,10027
+593571,Shooting Permit,07/30/2021 08:00:00 AM,07/31/2021 03:00:00 PM,07/26/2021 11:21:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between BOND STREET and NEVINS STREET, BALTIC STREET between NEVINS STREET and THIRD AVENUE, NEVINS STREET between BALTIC STREET and WARREN STREET, NEVINS STREET between BALTIC STREET and BUTLER STREET, BUTLER STREET between NEVINS STREET and THIRD AVENUE, ATLANTIC AVENUE between SMITH STREET and NEVINS STREET, NEVINS STREET between DOUGLASS STREET and DEGRAW STREET",Brooklyn,"2, 6","76, 78, 84",Film,Feature,United States of America,"11201, 11217"
+593568,Shooting Permit,07/29/2021 10:00:00 AM,07/29/2021 11:00:00 PM,07/26/2021 11:17:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+593567,Shooting Permit,07/28/2021 09:00:00 AM,07/28/2021 10:00:00 PM,07/26/2021 11:14:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+593564,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 11:00:00 PM,07/26/2021 11:12:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+593558,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 08:00:00 PM,07/26/2021 11:03:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 135 STREET between LENOX AVENUE and 5 AVENUE,Manhattan,10,32,Film,Feature,United States of America,10037
+593528,Shooting Permit,07/30/2021 11:00:00 AM,07/31/2021 02:00:00 AM,07/26/2021 07:51:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+593527,Shooting Permit,07/28/2021 09:00:00 AM,07/28/2021 11:00:00 PM,07/26/2021 07:48:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+593526,Shooting Permit,07/27/2021 08:00:00 AM,07/27/2021 10:00:00 PM,07/26/2021 07:45:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+593518,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 10:00:00 PM,07/26/2021 02:19:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET, JORALEMON STREET between HICKS STREET and GARDEN PLACE, AMITY STREET between HENRY STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,11201
+593511,Shooting Permit,07/28/2021 07:00:00 PM,07/29/2021 05:00:00 AM,07/25/2021 11:07:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, DELANCEY STREET between CHRYSTIE STREET and FORSYTH STREET, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET",Manhattan,"1, 2, 3","1, 5, 7, 84, 90",Commercial,Commercial,United States of America,"10002, 10006, 10007, 10012, 10013, 10038, 10048, 11201, 11211"
+593503,Shooting Permit,07/28/2021 06:00:00 AM,07/29/2021 11:59:00 PM,07/25/2021 07:55:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",11 AVENUE between WEST 53 STREET and WEST 54 STREET,Manhattan,4,18,WEB,Not Applicable,United States of America,10019
+593468,Shooting Permit,07/29/2021 02:00:00 AM,07/29/2021 09:00:00 PM,07/25/2021 12:55:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 8 AVENUE and 9 AVENUE, EAST 77 STREET between 1 AVENUE and YORK AVENUE",Manhattan,"4, 8","14, 19",WEB,Not Applicable,United States of America,"10018, 10075"
+593465,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 07:00:00 PM,07/25/2021 12:24:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",92 STREET between MARINE AVENUE and RIDGE BOULEVARD,Brooklyn,10,68,Documentary,Not Applicable,United States of America,11209
+593463,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 07:00:00 PM,07/25/2021 12:19:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",92 STREET between MARINE AVENUE and RIDGE BOULEVARD,Brooklyn,10,68,Documentary,Not Applicable,United States of America,11209
+593460,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 08:00:00 PM,07/25/2021 12:12:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",92 STREET between MARINE AVENUE and RIDGE BOULEVARD,Brooklyn,10,68,Documentary,Not Applicable,United States of America,11209
+593438,Theater Load in and Load Outs,08/01/2021 06:00:00 AM,08/03/2021 11:59:00 PM,07/25/2021 03:46:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET",Manhattan,7,20,Theater,Theater,United States of America,10023
+593379,Shooting Permit,07/29/2021 09:00:00 AM,07/29/2021 11:59:00 PM,07/23/2021 06:59:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROSEDALE AVENUE between LACOMBE AVENUE and RANDALL AVENUE, COMMONWEALTH AVENUE between RANDALL AVENUE and LACOMBE AVENUE, Commonwealth Ave between LACOMBE AVENUE and Dead End, Lacombe Ave between ROSEDALE AVENUE and Dead End, SOUNDVIEW AVENUE between LACOMBE AVENUE and UNDERHILL AVENUE, MYRTLE AVENUE between 116 STREET and JAMAICA AVENUE, Jamaica Ave between 115 STREET and Myrtle Ave, HILLSIDE AVENUE between MYRTLE AVENUE and BABBAGE STREET, 117 STREET between MYRTLE AVENUE and JAMAICA AVENUE, 117 STREET between JAMAICA AVENUE and 89 AVENUE, MYRTLE AVENUE between PARK LN SOUTH and WOODHAVEN BOULEVARD, 157 STREET between 115 DRIVE and FOCH BOULEVARD, 116 AVENUE between BARRON STREET and BEDELL STREET, BARRON STREET between FOCH BOULEVARD and 116 DRIVE, FOCH BOULEVARD between BARRON STREET and 157 STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and ROCKAWAY BOULEVARD, 111 STREET between 86 AVENUE and JAMAICA AVENUE, LEFFERTS BOULEVARD between JAMAICA AVENUE and HILLSIDE AVENUE",Bronx,"12, 82, 9","102, 113, 43",Television,Cable-episodic,United States of America,"10473, 11385, 11418, 11434"
+593363,Shooting Permit,07/27/2021 02:00:00 AM,07/27/2021 11:00:00 AM,07/23/2021 06:01:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+593346,Shooting Permit,07/30/2021 12:00:00 PM,07/30/2021 11:59:00 PM,07/23/2021 04:51:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 8 AVENUE and 7 AVENUE, FULTON STREET between CLIFF STREET and GOLD STREET",Manhattan,"1, 5","1, 14",Commercial,Industrial/Corporate,United States of America,"10018, 10038"
+593343,Shooting Permit,07/28/2021 10:00:00 AM,07/29/2021 03:00:00 AM,07/23/2021 04:45:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and HOYT STREET, ATLANTIC AVENUE between HOYT STREET and BOND STREET, ATLANTIC AVENUE between BOND STREET and NEVINS STREET, ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11217, 11251"
+593340,Shooting Permit,07/29/2021 12:00:00 PM,07/30/2021 06:00:00 AM,07/23/2021 04:44:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between CLIFF STREET and GOLD STREET, WEST 40 STREET between 8 AVENUE and 7 AVENUE",Manhattan,"1, 5","1, 14",Commercial,Industrial/Corporate,United States of America,"10018, 10038"
+593336,Shooting Permit,07/27/2021 06:30:00 AM,07/27/2021 09:00:00 PM,07/23/2021 04:41:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between COURT STREET and CLINTON STREET, JORALEMON STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+593334,Shooting Permit,07/28/2021 12:00:00 PM,07/29/2021 06:00:00 AM,07/23/2021 04:38:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between east 39th street and EAST 40 STREET, 3 AVENUE between EAST 56 STREET and EAST 57 STREET",Manhattan,6,17,Commercial,Industrial/Corporate,United States of America,"10017, 10022"
+593330,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 11:00:00 PM,07/23/2021 04:12:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and NEVINS STREET, UNION STREET between NEVINS STREET and THIRD AVENUE, THIRD STREET between THIRD AVENUE and BOND STREET, THIRD STREET between BOND STREET and HOYT STREET",Brooklyn,6,"76, 78",Film,Feature,United States of America,"11215, 11231"
+593322,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 08:00:00 PM,07/23/2021 03:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 83 STREET and WEST 82 STREET, WEST 82 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, BROADWAY between WEST 82 STREET and WEST 81 STREET, BROADWAY between WEST 83 STREET and WEST 82 STREET, BROADWAY between WEST 84 STREET and WEST 83 STREET, BROADWAY between WEST 85 STREET and WEST 84 STREET, WEST 84 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 84 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 84 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,20,Television,Cable-episodic,United States of America,10024
+593311,Shooting Permit,07/28/2021 08:00:00 AM,07/29/2021 02:00:00 AM,07/23/2021 02:50:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","HAVILAND AVENUE between HAVEMEYER AVENUE and ZEREGA AVENUE, HAVEMEYER AVENUE between POWELL AVENUE and HAVILAND AVENUE, HAVEMEYER AVENUE between HAVILAND AVENUE and WATSON AVENUE, WATSON AVENUE between HAVEMEYER AVENUE and CROSS BRONX SERVICE ROAD NORTH, HAVEMEYER AVENUE between WATSON AVENUE and CROSS BRONX SERVICE ROAD NORTH, ZEREGA AVENUE between POWELL AVENUE and HAVILAND AVENUE, ZEREGA AVENUE between HAVILAND AVENUE and WATSON AVENUE, COMMERCE AVE between ZEREGA AVE and GLEASON AVE, HALSEY STREET between SEABURY AVENUE and COMMERCE AVENUE, COMMERCE AVENUE between HALSEY STREET and NEWBOLD AVENUE, WATERBURY AVENUE between SEABURY AVENUE and COMMERCE AVENUE",Bronx,"10, 9","43, 45",Television,Episodic series,United States of America,"10461, 10462"
+593301,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 11:59:00 PM,07/23/2021 01:56:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between CHARLES STREET and WEST 10 STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+593298,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 11:59:00 PM,07/23/2021 01:46:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between CHARLES STREET and WEST 10 STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+593273,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 10:00:00 PM,07/23/2021 12:28:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+593271,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 11:00:00 PM,07/23/2021 12:24:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593263,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 10:00:00 PM,07/23/2021 12:02:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+593260,Shooting Permit,07/28/2021 08:00:00 AM,07/29/2021 02:00:00 AM,07/23/2021 11:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between 6 AVENUE and WATTS STREET, 6 AVENUE between THOMPSON STREET and GRAND STREET, GRAND STREET between 6 AVENUE and VARICK STREET, VARICK STREET between CANAL STREET and WATTS STREET, SPRING STREET between WEST BROADWAY and MERCER STREET, WOOSTER STREET between SPRING STREET and BROOME STREET, CHERRY STREET between PIKE STREET and CLINTON STREET, RUTGERS STREET between CHERRY STREET and MADISON STREET, CHERRY STREET between CLINTON STREET and MONTGOMERY STREET, MONTGOMERY STREET between MADISON STREET and CHERRY STREET, 6 AVENUE between CANAL STREET and WEST BROADWAY",Manhattan,"1, 2, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10012, 10013, 10038"
+593259,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 10:00:00 PM,07/23/2021 11:24:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 107 STREET and EAST 108 STREET, EAST 107 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 108 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 109 STREET and EAST 108 STREET, 3 AVENUE between EAST 110 STREET and EAST 109 STREET, 3 AVENUE between EAST 108 STREET and EAST 106 STREET, EAST 108 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,11,23,Film,Feature,United States of America,10029
+593258,Shooting Permit,07/27/2021 12:00:00 PM,07/28/2021 03:00:00 AM,07/23/2021 11:22:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 6 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 46 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+593254,Shooting Permit,07/27/2021 03:00:00 AM,07/27/2021 10:00:00 PM,07/23/2021 11:14:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 78 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 78 STREET and EAST 77 STREET, EAST 77 STREET between 5 AVENUE and MADISON AVENUE, DEAD RD between TERRACE DR and CENTER DR",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,"10023, 10024, 10025, 10075"
+593231,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 10:00:00 PM,07/23/2021 09:33:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and JOHN STREET, JOHN STREET between SOUTH STREET and FRONT STREET, JOHN STREET between FRONT STREET and WATER STREET, WATER STREET between FULTON STREET and PINE STREET, MAIDEN LANE between FRONT STREET and PEARL STREET, FULTON STREET between WATER STREET and GOLD STREET, FRONT STREET between JOHN STREET and FLETCHER STREET",Manhattan,1,1,Film,Feature,United States of America,"10005, 10038"
+593223,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 10:00:00 PM,07/23/2021 08:55:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593222,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 11:00:00 PM,07/23/2021 08:26:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between CALYER STREET and MESEROLE AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between MOULTRIE STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593220,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 07:00:00 PM,07/23/2021 07:51:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Documentary,Not Applicable,United States of America,10011
+593216,Theater Load in and Load Outs,07/29/2021 06:00:00 AM,08/06/2021 11:59:00 PM,07/23/2021 05:36:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020"
+593198,Shooting Permit,07/27/2021 08:00:00 AM,07/27/2021 10:00:00 PM,07/22/2021 09:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between WILLIAM STREET and NASSAU STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between LIBERTY STREET and PINE STREET",Manhattan,1,1,Commercial,Commercial,United States of America,"10005, 10045"
+593191,Shooting Permit,07/26/2021 10:00:00 AM,07/26/2021 09:00:00 PM,07/22/2021 06:54:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","ECKFORD STREET between DRIGGS AVENUE and MANHATTAN AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, ENGERT AVENUE between ECKFORD STREET and GRAHAM AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+593187,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 09:00:00 PM,07/22/2021 06:36:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","HILLCREST AVENUE between HILLSIDE AVENUE and CHERRY STREET, CHERRY STREET between HILLCREST AVENUE and PROSPECT AVENUE, CHERRY STREET between DOUGLASTON PARKWAY and HILLCREST AVENUE",Queens,11,111,WEB,Not Applicable,United States of America,11363
+593162,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 11:00:00 PM,07/22/2021 04:51:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+593157,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 11:00:00 PM,07/22/2021 04:45:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+593153,Shooting Permit,07/27/2021 10:00:00 AM,07/28/2021 01:00:00 AM,07/22/2021 04:34:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between 12 STREET and 13 STREET, 12 STREET between 40 AVENUE and 38 AVENUE, 10 STREET between 40 AVENUE and 41 AVENUE, 40 AVENUE between 9 STREET and 11 STREET, 11 STREET between 40 AVENUE and 38 AVENUE, 10 STREET between 40 AVENUE and 38 AVENUE, 9 STREET between 40 AVENUE and 38 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 30 STREET between BORDEN AVENUE and 49 AVENUE, 27 STREET between 51 AVENUE and 49 AVENUE, PEARSON PLACE between 27 STREET and SKILLMAN AVENUE, 38 AVENUE between 12 STREET and 13 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+593147,Shooting Permit,08/12/2021 06:00:00 AM,08/12/2021 11:59:00 PM,07/22/2021 04:24:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 124 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD,Manhattan,10,28,Television,Cable-other,United States of America,10027
+593141,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 09:00:00 PM,07/22/2021 04:13:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between HILLCREST AVENUE and PROSPECT AVENUE, CHERRY STREET between DOUGLASTON PARKWAY and HILLCREST AVENUE, HILLCREST AVENUE between HILLSIDE AVENUE and CHERRY STREET",Queens,11,111,WEB,Not Applicable,United States of America,11363
+593137,Shooting Permit,07/28/2021 10:00:00 AM,07/29/2021 01:00:00 AM,07/22/2021 03:59:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","Queens Blvd between Grand Central Parkway and Van Wyck Expressway, 82 AVENUE between QUEENS BOULEVARD and 132 STREET",Queens,9,102,Television,Cable-episodic,United States of America,11415
+593097,Shooting Permit,07/30/2021 11:30:00 AM,07/31/2021 02:30:00 AM,07/22/2021 02:39:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE",Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+593091,Shooting Permit,07/26/2021 12:00:00 PM,07/27/2021 03:00:00 AM,07/22/2021 02:31:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 6 AVENUE and 8 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 46 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+593086,Shooting Permit,07/23/2021 09:00:00 AM,07/24/2021 02:00:00 AM,07/22/2021 02:19:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","159 STREET between 29 AVENUE and 32 AVENUE, 32 AVENUE between 159 STREET and 158 STREET, 32 AVENUE between 158 STREET and 157 STREET, 32 AVENUE between 157 STREET and 156 STREET, 159 STREET between 32 AVENUE and 33 AVENUE, 161 STREET between 29 AVENUE and 32 AVENUE, 161 STREET between 32 AVENUE and 33 AVENUE, 33 AVENUE between 159 STREET and 160 STREET, 33 AVENUE between 160 STREET and 161 STREET, 160 STREET between 32 AVENUE and 33 AVENUE, 162 STREET between NORTHERN BOULEVARD and STATION ROAD, 162 STREET between STATION ROAD and SANFORD AVENUE, 162 STREET between SANFORD AVENUE and 43 AVENUE, 160 STREET between 17 ROAD and 18 AVENUE, 160 ST between 18 AVENUE and FRANCIS LEWIS BOULEVARD, 18 AVENUE between 160 STREET and FRANCIS LEWIS BOULEVARD, FRANCIS LEWIS BOULEVARD between 18 AVENUE and 160 STREET, FRANCIS LEWIS BOULEVARD between 160 STREET and WILLETS POINT BOULEVARD",Queens,7,109,Television,Episodic series,United States of America,"11354, 11357, 11358"
+593085,Shooting Permit,07/25/2021 08:00:00 PM,07/26/2021 06:00:00 AM,07/22/2021 02:18:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCDONALD AVENUE between AVENUE P and QUENTIN ROAD,Brooklyn,"11, 15","61, 62",Film,Feature,United States of America,11223
+593060,Shooting Permit,07/24/2021 08:00:00 AM,07/24/2021 02:00:00 PM,07/22/2021 12:40:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 50 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,"5, 6","13, 14, 17, 18",WEB,Not Applicable,United States of America,"10010, 10016, 10017, 10022, 10167, 10173, 10177"
+593039,Theater Load in and Load Outs,07/24/2021 07:00:00 AM,07/30/2021 11:00:00 PM,07/22/2021 11:59:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and DEAN STREET",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+593034,Shooting Permit,07/25/2021 08:00:00 AM,07/25/2021 10:00:00 PM,07/22/2021 11:52:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between HOOPER STREET and RUTLEDGE STREET, ECKFORD STREET between DRIGGS AVENUE and MANHATTAN AVENUE, ENGERT AVENUE between ECKFORD STREET and GRAHAM AVENUE, JAVA between WEST STREET and EAST RIVER",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11211, 11222"
+593032,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 11:00:00 PM,07/22/2021 11:51:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 43 STREET and WEST 44 STREET, 8 AVENUE between WEST 44 STREET and WEST 45 STREET",Manhattan,"4, 5",14,Commercial,PSA,United States of America,10036
+593026,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 10:00:00 PM,07/22/2021 11:21:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+593010,Shooting Permit,07/24/2021 04:00:00 AM,07/24/2021 11:00:00 AM,07/22/2021 10:47:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+592997,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 09:00:00 PM,07/22/2021 10:19:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 108 STREET and EAST 107 STREET, LEXINGTON AVENUE between EAST 107 STREET and EAST 106 STREET, EAST 110 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 108 STREET between LEXINGTON AVENUE and 3 AVENUE, 3 AVENUE between EAST 108 STREET and EAST 106 STREET, LEXINGTON AVENUE between EAST 112 STREET and EAST 111 STREET, EAST 112 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 107 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,11,23,Film,Feature,United States of America,10029
+592994,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 10:00:00 PM,07/22/2021 10:07:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 47 STREET, 44 STREET between 1 AVENUE and 2 AVENUE",Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+592981,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 09:00:00 PM,07/22/2021 09:11:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 30 STREET between 3 AVENUE and 2 AVENUE, EAST 30 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 29 STREET and EAST 28 STREET, 2 AVENUE between EAST 28 STREET and EAST 27 STREET, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between MT CARMEL PLACE and 1 AVENUE, EAST 26 STREET between 3 AVENUE and 2 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 25 STREET between 2 AVENUE and 1 AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10010, 10016"
+592977,Shooting Permit,07/30/2021 06:00:00 AM,07/30/2021 10:00:00 PM,07/22/2021 08:44:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Pilot,United States of America,11217
+592976,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 10:00:00 PM,07/22/2021 08:33:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Pilot,United States of America,11217
+592975,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 10:00:00 PM,07/22/2021 08:19:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Pilot,United States of America,11217
+592974,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 11:59:00 PM,07/22/2021 08:17:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE EAST between WEST 122 STREET and WEST 135TH ST, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 116 STREET and WEST 120 STREET, W 134TH ST between 12 AVENUE and DEAD END, 12 AVENUE between WEST 134 STREET and WEST 135 STREET, 12TH AVE between WEST 135 STREET and W 137TH ST, 12 AVENUE between WEST 131 STREET and WEST 134 STREET",Manhattan,9,"26, 30",Television,Episodic series,United States of America,"10024, 10027, 10031"
+592967,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 10:00:00 PM,07/22/2021 04:30:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+592965,Shooting Permit,07/25/2021 06:00:00 AM,07/25/2021 10:00:00 PM,07/22/2021 04:03:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONTAGUE STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+592943,Shooting Permit,07/28/2021 08:00:00 PM,07/29/2021 04:00:00 AM,07/21/2021 08:48:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between GRAND STREET and HOWARD STREET,Manhattan,2,5,Film,Short,United States of America,10013
+592912,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 10:00:00 PM,07/21/2021 04:55:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592900,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 10:00:00 PM,07/21/2021 04:24:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592892,Shooting Permit,07/25/2021 02:00:00 PM,07/26/2021 05:00:00 PM,07/21/2021 04:05:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE,Brooklyn,2,84,Film,Feature,United States of America,11217
+592881,Shooting Permit,07/24/2021 02:00:00 PM,07/25/2021 05:00:00 AM,07/21/2021 03:45:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between NEVINS STREET and 3 AVENUE,Brooklyn,2,84,Film,Feature,United States of America,11217
+592879,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 10:00:00 PM,07/21/2021 03:45:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOULEVARD between MALBA DRIVE and POINT CRESCENT, POINT CRESCENT between BOULEVARD and 141 STREET, 3RD AVE between WHITESTONE EXPRESSWAY and 147th st, 147 STREET between 3 AVENUE and 6 AVENUE, WHITESTONE EXPRESSWAY between 3RD AVE and 4TH AVE, CLINTONVILLE STREET between 14 AVENUE and 14 ROAD",Queens,7,109,Television,Episodic series,United States of America,11357
+592858,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 09:00:00 PM,07/21/2021 03:15:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10001
+592843,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 10:00:00 PM,07/21/2021 02:34:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Pilot,United States of America,11217
+592813,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 08:00:00 PM,07/21/2021 01:59:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between COURT STREET and CLINTON STREET, JORALEMON STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+592812,Shooting Permit,07/26/2021 08:30:00 AM,07/26/2021 10:00:00 PM,07/21/2021 01:56:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 4 STREET and WEST 3 STREET, 6 AVENUE between BLEECKER STREET and MINETTA LANE, 6 AVENUE between BLEECKER STREET and BEDFORD STREET, BLEECKER STREET between 6 AVENUE and LEROY STREET, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, WEST HOUSTON STREET between 6 AVENUE and VARICK STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+592807,Shooting Permit,07/27/2021 09:00:00 AM,07/27/2021 10:00:00 PM,07/21/2021 01:50:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK WEST between PLAZA STREET WEST and PRESIDENT STREET, Plaza Street West between Flatbush Avenue and Lincoln Place, LINCOLN PLACE between PLAZA STREET WEST and 8 AVENUE",Brooklyn,"55, 6",78,Commercial,Commercial,United States of America,"11215, 11217, 11238"
+592806,Shooting Permit,07/23/2021 01:00:00 PM,07/24/2021 03:00:00 AM,07/21/2021 01:49:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 110 STREET between 5 AVENUE and ADAM CLAYTON POWELL JR. BLVD, WEST 110 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLASS BLVD, WEST 111 STREET between 5 AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ST NICHOLAS AVENUE between WEST 111 STREET and WEST 112 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 110 STREET and WEST 111 STREET",Manhattan,"10, 11, 64","22, 23, 28",Television,Episodic series,United States of America,"10023, 10024, 10025, 10026, 10029"
+592803,Shooting Permit,07/23/2021 09:00:00 AM,07/23/2021 09:00:00 PM,07/21/2021 01:44:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and JORALEMON STREET, GRACE COURT between DEAD END and HICKS STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, COURT STREET between JORALEMON STREET and MONTAGUE STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+592796,Shooting Permit,07/26/2021 08:00:00 AM,07/26/2021 10:00:00 PM,07/21/2021 01:27:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST JAMES PLACE between FULTON STREET and ATLANTIC AVENUE, LEFFERTS PLACE between ST JAMES PLACE and GRAND AVENUE, ATLANTIC AVENUE between WASHINGTON AVENUE and ST JAMES PLACE, ATLANTIC AVENUE between ST JAMES PLACE and GRAND AVENUE",Brooklyn,"2, 8","77, 88",Commercial,Commercial,United States of America,11238
+592789,Shooting Permit,07/23/2021 10:00:00 AM,07/24/2021 12:00:00 PM,07/21/2021 01:20:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",DYCKMAN STREET between PAYSON AVENUE and DEAD END,Manhattan,12,34,Film,Feature,United States of America,10034
+592786,Shooting Permit,07/23/2021 03:00:00 PM,07/24/2021 03:00:00 AM,07/21/2021 01:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","40 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 38 AVENUE and 40 AVENUE, VERNON BOULEVARD between 40 AVENUE and 38 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11101
+592774,Shooting Permit,07/23/2021 12:00:00 PM,07/23/2021 11:30:00 PM,07/21/2021 12:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 20 STREET and WEST 18 STREET, WEST 19 STREET between 11 AVENUE and 10 AVENUE, WEST 18 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 20 STREET and WEST 18 STREET, 9 AVENUE between WEST 17 STREET and WEST 16 STREET, WEST 17 STREET between 10 AVENUE and 9 AVENUE, WEST 19 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+592769,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 10:00:00 PM,07/21/2021 12:39:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, FURMAN STREET between CLARK ST and PIERREPONT ST, WATER STREET between OLD FULTON STREET and DOCK STREET, VINE STREET between COLUMBIA HEIGHTS and MC KENNY STREET, OLD FULTON STREET between ELIZABETH PLACE and FRONT STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+592762,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 09:00:00 PM,07/21/2021 12:30:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 49 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 49 STREET and EAST 48 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 56 STREET, PARK AVENUE between EAST 56 STREET and EAST 57 STREET",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10019, 10020, 10022, 10036, 10105, 10152, 10171"
+592761,Shooting Permit,07/23/2021 02:00:00 PM,07/24/2021 05:00:00 AM,07/21/2021 12:29:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 43 STREET, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 44 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 9 AVENUE and 10 AVENUE, WEST 48 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+592756,Shooting Permit,07/28/2021 09:30:00 AM,07/29/2021 12:30:00 AM,07/21/2021 12:22:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between WEIRFIELD STREET and HANCOCK STREET, WEIRFIELD STREET between KNICKERBOCKER AVENUE and WILSON AVENUE, WILSON AVENUE between HALSEY STREET and WEIRFIELD STREET, WEIRFIELD STREET between SENECA AVENUE and CYPRESS AVENUE, SENECA AVENUE between CENTRE STREET and WEIRFIELD STREET",Brooklyn,"4, 5","104, 83",Television,Cable-episodic,United States of America,"11207, 11221, 11385"
+592750,Shooting Permit,07/23/2021 06:00:00 AM,07/23/2021 09:00:00 PM,07/21/2021 12:06:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 130 STREET and WEST 129 STREET, ST. NICHOLAS AVENUE between WEST 129 STREET and WEST 128TH STREET, ST. NICHOLAS AVENUE between WEST 128TH STREET and WEST 127TH STREET, WEST 127 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, ST NICHOLAS AVENUE between WEST 127 STREET and WEST 126 STREET, WEST 126 STREET between MORNINGSIDE AVENUE and ST NICHOLAS AVENUE, WEST 126 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, ST NICHOLAS AVENUE between WEST 133 STREET and WEST 131ST STREET",Manhattan,"10, 9","26, 28, 32",Film,Feature,United States of America,10027
+592739,Shooting Permit,07/23/2021 06:00:00 AM,07/23/2021 08:00:00 PM,07/21/2021 11:51:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between KENT AVENUE and NORTH 6 PLACE, ARGYLE ROAD between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,"1, 14","70, 94",Commercial,Commercial,United States of America,"11218, 11249"
+592689,Shooting Permit,07/22/2021 10:00:00 AM,07/23/2021 12:00:00 PM,07/21/2021 10:25:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 155 STREET and WEST 156 STREET, BROADWAY between WEST 147 STREET and WEST 148 STREET",Manhattan,"12, 9","30, 33",Film,Feature,United States of America,"10031, 10032"
+592680,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 08:00:00 PM,07/21/2021 10:12:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, HICKS STREET between MONTAGUE STREET and REMSEN STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET, HENRY STREET between MONTAGUE STREET and PIERREPONT STREET, PIERREPONT PLACE between MONTAGUE STREET and PIERREPONT STREET, MONTAGUE TERRACE between MONTAGUE STREET and REMSEN STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+592666,Shooting Permit,07/23/2021 07:00:00 AM,07/24/2021 02:00:00 AM,07/21/2021 09:52:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between RUTGERS STREET and PIKE STREET, MADISON STREET between RUTGERS STREET and PIKE STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, RUTGERS STREET between HENRY STREET and MADISON STREET, RUTGERS STREET between HENRY STREET and EAST BROADWAY, EAST BROADWAY between RUTGERS STREET and CLINTON STREET, EAST BROADWAY between RUTGERS STREET and PIKE STREET, EAST BROADWAY between PIKE STREET and FORSYTH STREET, PIKE STREET between HENRY STREET and EAST BROADWAY, SOUTH STREET between OLD SLIP and BROAD STREET, BRIDGE STREET between STATE STREET and WHITEHALL STREET, STATE STREET between PEARL STREET and BRIDGE STREET, BRIDGE STREET between WHITEHALL STREET and BROAD STREET, WHITEHALL STREET between PEARL STREET and WATER STREET, WHITEHALL STREET between BRIDGE STREET and PEARL STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, JOHN STREET between WATER STREET and FRONT STREET, JOHN STREET between WATER STREET and PEARL STREET, JOHN STREET between FRONT STREET and SOUTH STREET",Manhattan,"1, 3","1, 5, 7",Television,Episodic series,United States of America,"10002, 10004, 10005, 10038"
+592649,Shooting Permit,07/23/2021 06:00:00 AM,07/23/2021 11:59:00 PM,07/21/2021 09:01:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE OF THE AMERICAS between CENTRAL PARK SOUTH and WEST 58 STREET,Manhattan,"5, 7","18, 20",WEB,Not Applicable,United States of America,"10019, 10023"
+592590,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 10:00:00 PM,07/20/2021 06:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between WEST 13 STREET and WEST 12 STREET, GREENWICH AVENUE between WEST 12 STREET and 7 AVENUE, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, 8 AVENUE between WEST 39 STREET and WEST 38 STREET, WAVERLY PLACE between WEST 11 STREET and BANK STREET, WEST 11 STREET between WAVERLY PLACE and WEST 4 STREET, WEST 11 STREET between WAVERLY PLACE and GREENWICH AVENUE, 7 AVENUE SOUTH between WEST 11 STREET and WAVERLY PLACE, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST HOUSTON STREET, WEST 39 STREET between 6 AVENUE and 5 AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 7 AVENUE and BROADWAY, WEST 39 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"2, 4, 5","14, 6",Television,Episodic series,United States of America,"10011, 10012, 10014, 10016, 10018"
+592587,Shooting Permit,07/23/2021 10:00:00 AM,07/24/2021 02:00:00 AM,07/20/2021 06:22:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 82 STREET and EAST 85 STREET, LEXINGTON AVENUE between EAST 81 STREET and EAST 84 STREET, EAST 82 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 85 STREET and EAST 86 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10028
+592521,Shooting Permit,07/23/2021 10:00:00 AM,07/24/2021 04:00:00 AM,07/20/2021 04:11:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","OTSEGO STREET between SIGOURNEY STREET and HALLECK STREET, SIGOURNEY STREET between OTSEGO STREET and COLUMBIA STREET, COLUMBIA STREET between SIGOURNEY STREET and HALLECK STREET, COLUMBIA STREET between BAY STREET and SIGOURNEY STREET, COLUMBIA STREET between SIGOURNEY STREET and DEAD END, BAY STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between LORRAINE STREET and BAY STREET, BAY STREET between CLINTON STREET and COURT STREET, COLUMBIA STREET between HALLECK STREET and DEAD END",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+592495,Shooting Permit,07/22/2021 09:00:00 AM,07/22/2021 09:00:00 PM,07/20/2021 03:26:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HICKS STREET and HENRY STREET, HICKS STREET between MONTAGUE STREET and JORALEMON STREET, GRACE COURT between DEAD END and HICKS STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CLINTON STREET between MONTAGUE STREET and JORALEMON STREET, COURT STREET between JORALEMON STREET and MONTAGUE STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+592491,Shooting Permit,07/22/2021 06:00:00 AM,07/23/2021 01:00:00 AM,07/20/2021 03:19:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between NEWEL STREET and MCGUINNESS BOULEVARD, CALYER STREET between NEWEL STREET and DIAMOND STREET, NEWEL STREET between GREENPOINT AVENUE and CALYER STREET, MCGUINNESS BOULEVARD between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592451,Shooting Permit,07/21/2021 05:00:00 AM,07/21/2021 09:30:00 AM,07/20/2021 01:58:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+592441,Shooting Permit,07/22/2021 07:00:00 AM,07/22/2021 10:30:00 PM,07/20/2021 01:24:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 53 STREET between FIFTH AVENUE and MADISON AVENUE,Manhattan,"5, 8","18, 19",WEB,Not Applicable,United States of America,"10019, 10020, 10022, 10065, 10103"
+592439,Shooting Permit,08/02/2021 07:00:00 AM,08/02/2021 09:00:00 PM,07/20/2021 01:18:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592437,Shooting Permit,07/30/2021 07:00:00 AM,07/30/2021 09:00:00 PM,07/20/2021 01:17:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between EAGLE STREET and FREEMAN STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592434,Shooting Permit,07/22/2021 06:00:00 PM,07/22/2021 11:59:00 PM,07/20/2021 01:13:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",132 STREET between UNION TURNPIKE and 82 AVENUE,Queens,9,102,Television,Episodic series,United States of America,11435
+592427,Shooting Permit,07/24/2021 06:00:00 AM,07/24/2021 10:30:00 PM,07/20/2021 12:50:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between BUFFALO AVENUE and RALPH AVENUE, BUFFALO AVENUE between ATLANTIC AVENUE and HERKIMER STREET, ST JOHN'S PLACE between BUFFALO AVENUE and ROCHESTER AVENUE, LINCOLN PLACE between BUFFALO AVENUE and RALPH AVENUE, BUFFALO AVENUE between LINCOLN PLACE and EASTERN PARKWAY, EASTERN PARKWAY between BUFFALO AVENUE and ROCHESTER AVENUE, ATLANTIC AVENUE between BUFFALO AVENUE and ROCHESTER AVENUE, LINCOLN PLACE between ROCHESTER AVENUE and BUFFALO AVENUE",Brooklyn,"3, 8, 9","77, 78, 81",Commercial,Commercial,United States of America,"11213, 11216, 11225, 11233, 11238"
+592418,Shooting Permit,07/21/2021 07:30:00 AM,07/21/2021 08:00:00 PM,07/20/2021 12:30:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 173 STREET between HAVEN AVENUE and FORT WASHINGTON AVENUE,Manhattan,12,33,Still Photography,Not Applicable,United States of America,"10032, 10033"
+592413,Shooting Permit,07/23/2021 08:00:00 AM,07/23/2021 10:00:00 PM,07/20/2021 12:15:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+592411,Shooting Permit,07/23/2021 06:00:00 AM,07/23/2021 10:00:00 PM,07/20/2021 12:11:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between RICHARDS STREET and DWIGHT STREET, COFFEY STREET between DWIGHT STREET and OTSEGO STREET, DWIGHT STREET between DIKEMAN STREET and COFFEY STREET",Brooklyn,6,76,Television,Pilot,United States of America,11231
+592399,Shooting Permit,08/06/2021 07:00:00 AM,08/06/2021 11:00:00 PM,07/20/2021 11:55:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+592396,Shooting Permit,08/05/2021 07:00:00 AM,08/05/2021 11:00:00 PM,07/20/2021 11:51:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+592393,Shooting Permit,08/04/2021 06:00:00 AM,08/04/2021 10:00:00 PM,07/20/2021 11:46:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+592389,Shooting Permit,08/03/2021 06:00:00 AM,08/03/2021 10:00:00 PM,07/20/2021 11:41:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+592388,Shooting Permit,07/22/2021 07:00:00 AM,07/22/2021 09:30:00 PM,07/20/2021 11:40:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 1 AVENUE, EAST 53 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 54 STREET and EAST 53 STREET, EAST 55 STREET between LEXINGTON AVENUE and 2 AVENUE, EAST 54 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and 2 AVENUE, EAST 54 STREET between 2 AVENUE and 1 AVENUE, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 53 STREET between 2 AVENUE and 1 AVENUE, 3 AVENUE between EAST 54 STREET and EAST 52 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10022
+592383,Theater Load in and Load Outs,08/02/2021 12:01:00 AM,08/04/2021 08:00:00 AM,07/20/2021 11:31:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 7 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+592371,Shooting Permit,07/22/2021 10:00:00 AM,07/23/2021 02:00:00 AM,07/20/2021 10:59:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 47 STREET and EAST 49 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+592365,Shooting Permit,07/29/2021 07:00:00 AM,07/29/2021 09:00:00 PM,07/20/2021 10:51:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592364,Shooting Permit,07/26/2021 07:00:00 AM,07/26/2021 09:00:00 PM,07/20/2021 10:50:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592363,Shooting Permit,07/23/2021 07:00:00 AM,07/23/2021 09:00:00 PM,07/20/2021 10:48:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592360,Shooting Permit,07/26/2021 07:00:00 AM,07/26/2021 05:00:00 PM,07/20/2021 10:36:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 15 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,Film,Feature,United States of America,10011
+592336,Shooting Permit,07/22/2021 10:00:00 AM,07/22/2021 10:00:00 PM,07/20/2021 09:09:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",STATE STREET between NEVINS STREET and 3 AVENUE,Brooklyn,"2, 6","76, 78, 84",Still Photography,Not Applicable,United States of America,"11201, 11215, 11217, 11231"
+592335,Shooting Permit,07/23/2021 07:00:00 AM,07/23/2021 07:00:00 PM,07/20/2021 09:09:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,11249
+592324,Shooting Permit,07/30/2021 06:00:00 AM,07/30/2021 11:59:00 PM,07/20/2021 08:14:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and FULTON STREET, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Documentary,Not Applicable,United States of America,10038
+592285,Shooting Permit,07/22/2021 07:00:00 AM,07/22/2021 09:00:00 PM,07/19/2021 07:06:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+592277,Shooting Permit,07/24/2021 06:00:00 AM,07/24/2021 10:00:00 PM,07/19/2021 06:21:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHN STREET between PEARL STREET and FRONT STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and OLD SLIP, WALL STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between WALL STREET and PEARL STREET, PINE STREET between BROADWAY and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between CEDAR STREET and PINE STREET, BROADWAY between EXCHANGE ALLEY and MORRIS STREET, BEAVER STREET between BROADWAY and NEW STREET",Manhattan,1,1,Television,Pilot,United States of America,"10004, 10005, 10006, 10038"
+592276,Shooting Permit,07/22/2021 06:00:00 AM,07/22/2021 08:00:00 PM,07/19/2021 06:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between SARATOGA AVENUE and THOMAS S BOYLAND STREET, FULTON STREET between THOMAS S BOYLAND STREET and ROCKAWAY AVENUE, ROCKAWAY AVENUE between FULTON STREET and HERKIMER STREET, HERKIMER STREET between THOMAS S BOYLAND STREET and ROCKAWAY AVENUE",Brooklyn,16,73,Film,Feature,United States of America,11233
+592261,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 10:00:00 PM,07/19/2021 05:10:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+592238,Shooting Permit,07/23/2021 09:00:00 AM,07/23/2021 03:00:00 PM,07/19/2021 04:21:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",STRONG PLACE between DEGRAW STREET and KANE STREET,Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+592235,Shooting Permit,07/22/2021 08:00:00 AM,07/23/2021 12:00:00 AM,07/19/2021 04:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 39 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Still Photography,Not Applicable,United States of America,10018
+592231,Theater Load in and Load Outs,07/29/2021 06:00:00 AM,07/29/2021 11:59:00 PM,07/19/2021 04:09:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET, 5 AVENUE between DEAN STREET and BERGEN STREET",Brooklyn,"2, 6","78, 84",Theater,Theater,United States of America,11217
+592230,Theater Load in and Load Outs,07/28/2021 06:00:00 AM,07/28/2021 11:59:00 PM,07/19/2021 04:09:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between SCHERMERHORN STREET and LIVINGSTON STREET,Brooklyn,2,84,Theater,Theater,United States of America,11217
+592224,Shooting Permit,07/22/2021 09:00:00 AM,07/23/2021 02:00:00 AM,07/19/2021 03:59:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 AVENUE and 45 ROAD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 5 STREET between 46 AVENUE and 46 ROAD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+592212,Shooting Permit,07/21/2021 06:00:00 AM,07/21/2021 08:00:00 PM,07/19/2021 03:35:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, MELROSE STREET between BROADWAY and BUSHWICK AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, BROADWAY between ARION PLACE and MELROSE STREET, BROADWAY between MELROSE STREET and JEFFERSON STREET, STANWIX STREET between MELROSE STREET and JEFFERSON STREET, JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE, EVERGREEN AVENUE between GEORGE STREET and MELROSE STREET, MELROSE STREET between STANWIX STREET and EVERGREEN AVENUE",Brooklyn,"3, 4","81, 83",Film,Feature,United States of America,11206
+592205,Shooting Permit,07/22/2021 04:00:00 AM,07/22/2021 11:59:00 PM,07/19/2021 03:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","159 STREET between 29 AVENUE and 32 AVENUE, 32 AVENUE between 159 STREET and 158 STREET, 32 AVENUE between 158 STREET and 157 STREET, 32 AVENUE between 157 STREET and 156 STREET, 159 STREET between 32 AVENUE and 33 AVENUE, 161 STREET between 32 AVENUE and 29 AVENUE, 161 STREET between 32 AVENUE and 33 AVENUE, 33 AVENUE between 159 STREET and 160 STREET, 33 AVENUE between 160 STREET and 161 STREET, 160 STREET between 32 AVENUE and 33 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11354, 11358"
+592195,Shooting Permit,07/26/2021 07:00:00 AM,07/26/2021 08:00:00 PM,07/19/2021 02:48:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE, BAY STREET between HYATT STREET and SLOSSON TERRACE, CENTRAL AVENUE between HYATT STREET and SLOSSON TERRACE, HYATT STREET between SAINT MARKS PLACE and CENTRAL AVENUE, SAINT MARKS PLACE between HYATT STREET and VICTORY BOULEVARD",Staten Island,1,120,Television,Cable-episodic,United States of America,"10301, 10304"
+592181,Shooting Permit,07/21/2021 07:00:00 AM,07/21/2021 10:30:00 PM,07/19/2021 02:22:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+592162,Shooting Permit,07/23/2021 10:00:00 AM,07/24/2021 12:00:00 AM,07/19/2021 01:11:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+592157,Shooting Permit,07/21/2021 06:00:00 PM,07/22/2021 01:00:00 AM,07/19/2021 01:03:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, GREENWICH STREET between PERRY STREET and CHARLES STREET, GREENWICH STREET between CHARLES STREET and WEST 10 STREET, HUDSON STREET between CHARLES STREET and WEST 10 STREET, HUDSON STREET between BANK STREET and WEST 11 STREET, 8 AVENUE between WEST 12 STREET and BLEECKER STREET, HUDSON STREET between BANK STREET and BLEECKER STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10012, 10014"
+592153,Shooting Permit,07/21/2021 06:00:00 AM,07/21/2021 09:00:00 PM,07/19/2021 12:36:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 7 STREET and EAST 10 STREET, WEST 4 STREET between HORATIO STREET and WEST 13 STREET, WEST 13 STREET between 8 AVENUE and HUDSON STREET",Manhattan,"2, 3","6, 9",Commercial,Commercial,United States of America,"10009, 10014"
+592123,Shooting Permit,07/22/2021 07:00:00 AM,07/22/2021 11:00:00 PM,07/19/2021 11:31:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between WASHINGTON STREET and 10 AVENUE, W 14TH ST between WASHINGTON STREET and 9TH AVE, WEST 14 STREET between HUDSON STREET and 8 AVENUE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 13 STREET and GANSEVOORT STREET, LITTLE WEST 12 STREET between 10 AVENUE and WASHINGTON STREET, GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between HORATIO STREET and WEST 12 STREET",Manhattan,"2, 4","10, 6",Television,Cable-episodic,United States of America,"10011, 10014"
+592114,Shooting Permit,07/22/2021 08:00:00 AM,07/22/2021 10:00:00 PM,07/19/2021 10:58:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 126 STREET and EAST 127 STREET, EAST 126 STREET between PARK AVENUE and MADISON AVENUE, WEST 126 STREET between MALCOLM X BOULEVARD and 5 AVENUE, BROADWAY between WEST 157 STREET and WEST 158 STREET, BROADWAY between WEST 158 STREET and WEST 160 STREET, RIVERSIDE DRIVE between WEST 152 STREET and WEST 150 STREET",Manhattan,"10, 11, 12, 9","20, 25, 28, 30, 33",Television,Pilot,United States of America,"10024, 10027, 10031, 10032, 10035"
+592096,Shooting Permit,07/21/2021 08:00:00 AM,07/21/2021 11:00:00 PM,07/19/2021 09:21:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","ASTORIA PARK SOUTH between SHORE BOULEVARD and 21ST STREET, 18 STREET between 25 ROAD and 26 ROAD, 26TH AVE between 18TH ST and 14TH PL, 25 ROAD between 18 STREET and 21 STREET, 26TH AVE between 18TH ST and 21ST ST, 14TH STREET between 26TH AVE and 27TH AVE, 19 STREET between HOYT AVENUE NORTH and 23 TERRACE, HOYT AVE N between 19 STREET and 21ST ST, HOYT AVE N between 21ST ST and 23RD ST, SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH, 31 STREET between 23 AVENUE and 23 ROAD, 23 AVENUE between 32 STREET and 33 STREET, 31 STREET between 23 AVENUE and DITMARS BOULEVARD, 23 AVENUE between 31 STREET and 29 STREET, 29 STREET between DITMARS BOULEVARD and 23 AVENUE, 29 STREET between 23 AVENUE and 23 ROAD, 31 STREET between DITMARS BOULEVARD and 21 AVENUE, DITMARS BOULEVARD between 31 STREET and 32 STREET, DITMARS BOULEVARD between 29 STREET and 31 STREET, DITMARS BOULEVARD between 28 STREET and 29 STREET",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+592086,Shooting Permit,07/21/2021 08:00:00 AM,07/22/2021 01:00:00 AM,07/19/2021 08:32:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+592085,Shooting Permit,07/28/2021 07:00:00 AM,07/28/2021 10:00:00 PM,07/19/2021 08:27:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+592083,Shooting Permit,07/27/2021 07:00:00 AM,07/27/2021 10:00:00 PM,07/19/2021 08:18:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+592082,Shooting Permit,07/26/2021 07:00:00 AM,07/26/2021 10:00:00 PM,07/19/2021 08:08:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+591878,Shooting Permit,07/20/2021 11:00:00 AM,07/20/2021 08:00:00 PM,07/16/2021 04:14:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",LINCOLN PLACE between NEW YORK AVENUE and BROOKLYN AVENUE,Brooklyn,8,77,Documentary,Not Applicable,United States of America,11213
+591879,Shooting Permit,07/21/2021 09:00:00 AM,07/21/2021 12:00:00 PM,07/16/2021 04:14:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 79 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Documentary,Not Applicable,United States of America,10024
+591858,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 09:00:00 PM,07/16/2021 03:46:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",MALCOLM X BOULEVARD between WEST 113 STREET and WEST 114 STREET,Manhattan,10,28,Still Photography,Not Applicable,United States of America,10026
+591850,Shooting Permit,07/21/2021 04:00:00 AM,07/21/2021 11:59:00 PM,07/16/2021 03:15:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","159 STREET between 29 AVENUE and 32 AVENUE, 32 AVENUE between 159 STREET and 158 STREET, 32 AVENUE between 158 STREET and 157 STREET, 32 AVENUE between 157 STREET and 156 STREET, 159 STREET between 32 AVENUE and 33 AVENUE, 161 STREET between 29 AVENUE and 32 AVENUE, 161 STREET between 32 AVENUE and 33 AVENUE, 33 AVENUE between 159 STREET and 160 STREET, 33 AVENUE between 160 STREET and 161 STREET, 160 STREET between 32 AVENUE and 33 AVENUE",Queens,7,109,Television,Episodic series,United States of America,"11354, 11358"
+591828,Shooting Permit,07/21/2021 09:00:00 AM,07/21/2021 11:00:00 PM,07/16/2021 02:24:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+591820,Shooting Permit,07/19/2021 02:00:00 PM,07/20/2021 04:30:00 AM,07/16/2021 01:59:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",CROSS BAY BOULEVARD between 164 AVENUE and 165 AVENUE,Queens,10,106,Film,Feature,United States of America,11414
+591798,Shooting Permit,07/21/2021 09:00:00 AM,07/21/2021 02:00:00 PM,07/16/2021 01:12:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between BROADWAY and 8 AVENUE, WEST 46 STREET between 7 AVENUE and BROADWAY",Manhattan,5,18,Film,Feature,United States of America,10036
+591791,Shooting Permit,07/21/2021 07:00:00 AM,07/22/2021 03:00:00 AM,07/16/2021 12:57:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 20TH ST between 6 AVENUE and 5TH AVE, EAST 20 STREET between 5 AVENUE and BROADWAY, 5 AVENUE between WEST 20 STREET and WEST 21 STREET, BROADWAY between EAST 19 STREET and EAST 20 STREET, EAST 19 STREET between 5 AVENUE and BROADWAY, EAST 18 STREET between BROADWAY and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 17 STREET and EAST 19 STREET, PARK AVENUE SOUTH between EAST 19 STREET and EAST 20 STREET, EAST 19 STREET between IRVING PLACE and 3 AVENUE, EAST 18 STREET between IRVING PLACE and 3 AVENUE, 3 AVENUE between EAST 18 STREET and EAST 19 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+591767,Shooting Permit,07/21/2021 08:30:00 AM,07/21/2021 09:00:00 PM,07/16/2021 11:37:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+591745,Theater Load in and Load Outs,08/10/2021 12:01:00 AM,08/17/2021 06:00:00 AM,07/16/2021 10:29:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, DEBEVOISE AVENUE between FROST STREET and RICHARDSON STREET",Brooklyn,1,94,Theater,Theater,United States of America,11222
+591721,Shooting Permit,07/21/2021 08:00:00 AM,07/21/2021 10:00:00 PM,07/16/2021 06:15:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,9,30,Film,Feature,United States of America,10031
+591720,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 10:00:00 PM,07/16/2021 06:09:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,9,30,Film,Feature,United States of America,10031
+591719,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 10:00:00 PM,07/16/2021 06:03:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 153 STREET between AMSTERDAM AVENUE and BROADWAY,Manhattan,9,30,Film,Feature,United States of America,10031
+591678,Shooting Permit,07/20/2021 12:00:00 PM,07/20/2021 08:00:00 PM,07/15/2021 05:59:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+591671,Shooting Permit,07/17/2021 05:00:00 AM,07/17/2021 11:00:00 AM,07/15/2021 05:34:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+591668,DCAS Prep/Shoot/Wrap Permit,07/20/2021 05:00:00 PM,07/20/2021 10:00:00 PM,07/15/2021 05:08:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between MURRAY STREET and READE STREET, WARREN STREET between BROADWAY and CHURCH STREET, CENTRE STREET between DUANE STREET and READE STREET, WATER STREET between OLD SLIP and JOHN STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10004, 10005, 10007, 10038"
+591666,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 06:00:00 PM,07/15/2021 05:02:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANOVER SQUARE between STONE STREET and PEARL STREET, HANOVER SQUARE between PEARL STREET and WATER STREET, CHAMBERS STREET between BROADWAY and ELK STREET, BROADWAY between MURRAY STREET and READE STREET, WARREN STREET between BROADWAY and CHURCH STREET, CENTRE STREET between DUANE STREET and READE STREET, WATER STREET between OLD SLIP and JOHN STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10004, 10005, 10007, 10038"
+591620,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 10:00:00 PM,07/15/2021 02:54:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between JAVA STREET and GREENPOINT AVENUE, KENT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591618,Shooting Permit,07/20/2021 06:00:00 AM,07/20/2021 11:00:00 PM,07/15/2021 02:52:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between CUMBERLAND STREET and CARLTON AVENUE, FLUSHING AVENUE between CARLTON AVENUE and ADELPHI STREET, ADELPHI STREET between FLUSHING AVENUE and PARK AVENUE, CARLTON AVENUE between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,"11205, 11251"
+591615,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 09:00:00 PM,07/15/2021 02:50:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, CROSBY STREET between PRINCE STREET and SPRING STREET, BROADWAY between EAST HOUSTON STREET and PRINCE STREET, BROADWAY between PRINCE STREET and SPRING STREET, PRINCE STREET between BROADWAY and CROSBY STREET, PRINCE STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between COOPER SQUARE and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,2,"1, 5, 9",Television,Cable-episodic,United States of America,"10003, 10012"
+591611,Shooting Permit,07/20/2021 07:00:00 AM,07/21/2021 01:00:00 AM,07/15/2021 02:40:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","50 AVENUE between 25 STREET and 27 STREET, 25 STREET between 50 AVENUE and 51 AVENUE, 51 AVENUE between 25 STREET and 27 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, HUNTERS POINT AVENUE between 27 STREET and 29 STREET, 27 STREET between 49 AVENUE and BORDEN AVENUE, BORDEN AVENUE between 30 STREET and DEAD END, BORDEN AVENUE between 29 STREET and REVIEW AVENUE, BORDEN AVENUE between 27 STREET and REVIEW AVENUE, 29 STREET between REVIEW AVENUE and BORDEN AVENUE, REVIEW AVENUE between BORDEN AVENUE and 35 STREET, SKILLMAN AVENUE between 49 AVENUE and PEARSON PLACE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, 47 AVENUE between SKILLMAN AVENUE and 27 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+591589,Shooting Permit,07/19/2021 06:00:00 AM,07/19/2021 10:00:00 PM,07/15/2021 01:41:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591572,Shooting Permit,07/20/2021 08:30:00 AM,07/20/2021 08:30:00 PM,07/15/2021 12:40:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+591568,Shooting Permit,07/16/2021 01:00:00 PM,07/17/2021 04:30:00 AM,07/15/2021 12:26:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between EAST 10 STREET and EAST 11 STREET, 4 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 12 STREET and EAST 13 STREET, EAST 12 STREET between 3 AVENUE and 4 AVENUE, EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 10 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 12 STREET and EAST 13 STREET, 3 AVENUE between EAST 13 STREET and EAST 14 STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3",9,Television,Cable-episodic,United States of America,"10003, 10012"
+591559,Shooting Permit,07/22/2021 08:00:00 AM,07/22/2021 10:00:00 PM,07/15/2021 12:01:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET, 11 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, WEST 57 STREET between 10 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 8 AVENUE, 37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET, 10 AVENUE between WEST 58 STREET and WEST 57 STREET",Manhattan,"1, 4","114, 18",Television,Episodic series,United States of America,"10019, 11101, 11106"
+591558,Shooting Permit,07/21/2021 07:00:00 AM,07/21/2021 09:00:00 PM,07/15/2021 11:59:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+591556,Shooting Permit,07/21/2021 11:00:00 AM,07/22/2021 03:00:00 AM,07/15/2021 11:54:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MALCOLM X BOULEVARD between WEST 118 STREET and WEST 122 STREET, MALCOLM X BOULEVARD between WEST 122 STREET and WEST 125 STREET, W 124 ST between ADAM POWELL JR BOULEVARD and MALCOLM X BOULEVARD, EAST 120 STREET between 5 AVENUE and MADISON AVENUE, MOUNT MORRIS PARK WEST between WEST 120 STREET and WEST 121 STREET, WEST 123 STREET between MALCOLM X BOULEVARD and MOUNT MORRIS PARK WEST, WEST 122 STREET between MALCOLM X BOULEVARD and MOUNT MORRIS PARK WEST, WEST 121 STREET between MALCOLM X BOULEVARD and MOUNT MORRIS PARK WEST",Manhattan,"10, 11","25, 28",Film,Feature,United States of America,"10026, 10027, 10035"
+591551,Shooting Permit,07/20/2021 05:00:00 AM,07/20/2021 08:00:00 PM,07/15/2021 11:36:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between RUTGERS STREET and PIKE STREET, RUTGERS STREET between EAST BROADWAY and HENRY STREET, HENRY STREET between RUTGERS STREET and PIKE STREET, EAST BROADWAY between RUTGERS STREET and JEFFERSON STREET, EAST BROADWAY between JEFFERSON STREET and CLINTON STREET, HENRY STREET between CLINTON STREET and MONTGOMERY STREET, RUTGERS STREET between HENRY STREET and MADISON STREET",Manhattan,3,7,Film,Feature,United States of America,10002
+591539,Shooting Permit,07/17/2021 06:00:00 AM,07/17/2021 11:59:00 PM,07/15/2021 10:53:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 9 STREET between FIRST AVENUE and AVENUE A,Manhattan,3,9,Still Photography,Not Applicable,United States of America,10009
+591536,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 08:00:00 PM,07/15/2021 10:41:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",FIFTH AVENUE between EAST 88 STREET and EAST 89 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10128"
+591533,Shooting Permit,07/19/2021 06:00:00 AM,07/19/2021 11:00:00 PM,07/15/2021 10:38:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591440,Shooting Permit,08/02/2021 06:00:00 AM,08/02/2021 08:00:00 PM,07/14/2021 06:38:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 35 AVENUE and 34 AVENUE, STEINWAY STREET between 36 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, 35 AVENUE between STEINWAY STREET and 37 STREET, 38 STREET between 36 AVENUE and 35 AVENUE",Queens,1,114,Film,Feature,United States of America,"11101, 11106"
+591424,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 08:00:00 PM,07/14/2021 05:37:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Documentary,Not Applicable,United States of America,10021
+591368,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 07:00:00 PM,07/14/2021 02:55:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between EAST HOUSTON STREET and PRINCE STREET, CROSBY STREET between PRINCE STREET and SPRING STREET, CROSBY STREET between SPRING STREET and BROOME STREET, BROADWAY between EAST HOUSTON STREET and PRINCE STREET, BROADWAY between PRINCE STREET and SPRING STREET, PRINCE STREET between BROADWAY and CROSBY STREET, PRINCE STREET between CROSBY STREET and LAFAYETTE STREET, LAFAYETTE STREET between EAST 4 STREET and EAST 8 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,2,"1, 5, 9",Television,Cable-episodic,United States of America,"10003, 10012"
+591362,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 10:00:00 PM,07/14/2021 02:37:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591361,Shooting Permit,07/19/2021 08:00:00 AM,07/19/2021 10:00:00 PM,07/14/2021 02:27:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","ROGERS AVENUE between TILDEN AVENUE and BEVERLY ROAD, FLATBUSH AVENUE between TILDEN AVENUE and BEVERLY ROAD, 7 AVENUE between WEST 19 STREET and WEST 20 STREET, 7 AVENUE between WEST 19 STREET and WEST 18 STREET",Brooklyn,"14, 17, 4","10, 13, 67, 70",Commercial,Commercial,United States of America,"10011, 11226"
+591328,Shooting Permit,07/15/2021 08:00:00 AM,07/15/2021 11:00:00 PM,07/14/2021 01:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between EAST 10 STREET and EAST 11 STREET, 4 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 12 STREET and EAST 13 STREET, EAST 12 STREET between 3 AVENUE and 4 AVENUE, EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 10 STREET between 3 AVENUE and 4 AVENUE, LAFAYETTE STREET between EAST 8 STREET and EAST 4 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3",9,Television,Cable-episodic,United States of America,"10003, 10012"
+591315,Shooting Permit,07/16/2021 07:00:00 AM,07/16/2021 09:00:00 PM,07/14/2021 12:56:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between KENT AVENUE and RIVER STREET, METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE",Brooklyn,1,"90, 94",Film,Feature,United States of America,11249
+591281,Shooting Permit,07/22/2021 06:00:00 AM,07/22/2021 10:00:00 PM,07/14/2021 11:19:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and 3 AVENUE, ASHLAND PLACE between LAFAYETTE AVENUE and FLATBUSH AVENUE, ROCKWELL PLACE between LAFAYETTE AVENUE and FULTON STREET, LAFAYETTE AVENUE between ROCKWELL PLACE and ST FELIX STREET, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREENE PLACE, ASHLAND PLACE between FULTON STREET and LAFAYETTE AVENUE, HANSON PLACE between ASHLAND PLACE and FORT GREENE PLACE",Brooklyn,2,"78, 84, 88",Television,Pilot,United States of America,"11201, 11217"
+591274,Shooting Permit,07/20/2021 06:00:00 AM,07/20/2021 08:00:00 PM,07/14/2021 10:57:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+591246,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 08:00:00 PM,07/14/2021 09:18:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 99 STREET and EAST 102 STREET, EAST 99 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 103 STREET and EAST 104 STREET, LEXINGTON AVENUE between EAST 104 STREET and EAST 109 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+591197,Shooting Permit,07/18/2021 06:00:00 AM,07/18/2021 04:00:00 PM,07/13/2021 06:35:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE SOUTH between EAST 25 STREET and EAST 29 STREET, MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, MADISON AVENUE between EAST 26 STREET and EAST 29 STREET, MADISON AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 24 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 25 STREET between MADISON AVENUE and PARK AVENUE SOUTH, EAST 26 STREET between 5 AVENUE and PARK AVENUE SOUTH, EAST 27 STREET between 5 AVENUE and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH",Manhattan,5,13,Television,Episodic series,United States of America,"10010, 10016"
+591184,Shooting Permit,07/29/2021 06:00:00 AM,07/29/2021 10:00:00 PM,07/13/2021 05:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+591181,Shooting Permit,07/28/2021 06:00:00 AM,07/28/2021 10:00:00 PM,07/13/2021 05:19:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+591180,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 05:00:00 PM,07/13/2021 05:19:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELAVAN STREET between VAN BRUNT STREET and RICHARDS STREET, DELAVAN STREET between RICHARDS STREET and DWIGHT STREET, VERONA STREET between VAN BRUNT STREET and RICHARDS STREET, DWIGHT STREET between DELAVAN STREET and VERONA STREET, DWIGHT STREET between DELAVAN STREET and COLUMBIA STREET, RICHARDS STREET between COMMERCE STREET and DELAVAN STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+591178,Shooting Permit,07/27/2021 06:00:00 AM,07/27/2021 10:00:00 PM,07/13/2021 05:11:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+591177,Shooting Permit,07/26/2021 06:00:00 AM,07/26/2021 10:00:00 PM,07/13/2021 05:05:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+591174,Shooting Permit,07/17/2021 06:00:00 AM,07/17/2021 10:00:00 PM,07/13/2021 05:01:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between COLUMBIA STREET and MANGIN STREET, BARUCH PLACE between EAST HOUSTON STREET and STANTON STREET, STANTON STREET between BARUCH PLACE and MANGIN STREET, MANGIN STREET between EAST HOUSTON STREET and STANTON STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,"1, 3, 7","1, 109, 7",Television,Episodic series,United States of America,"10002, 10004, 11359"
+591124,Shooting Permit,07/15/2021 03:30:00 PM,07/16/2021 04:00:00 AM,07/13/2021 02:25:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 69 STREET and EAST 73 STREET, EAST 71 STREET between PARK AVENUE and 5 AVENUE, EAST 56 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 56 STREET and EAST 53 STREET, PARK AVENUE between EAST 65 STREET and EAST 66 STREET, EAST 66 STREET between PARK AVENUE and MADISON AVENUE, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 64 STREET and EAST 65 STREET, LEXINGTON AVENUE between EAST 63 STREET and EAST 66 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10021, 10022, 10065"
+591110,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 09:00:00 PM,07/13/2021 01:48:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTHERN BOULEVARD between Boston road and EAST 173 STREET, HOE AVENUE between HOME STREET and FREEMAN STREET",Bronx,3,42,WEB,Not Applicable,United States of America,"10459, 10460"
+591059,Shooting Permit,07/15/2021 01:00:00 PM,07/15/2021 11:59:00 PM,07/13/2021 11:15:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+591054,Shooting Permit,07/15/2021 07:00:00 AM,07/15/2021 04:00:00 PM,07/13/2021 10:58:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and 3 AVENUE, SMITH STREET between ATLANTIC AVENUE and PACIFIC STREET, CONGRESS STREET between CLINTON STREET and COURT STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11217"
+591032,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 10:00:00 PM,07/13/2021 10:14:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+591030,Shooting Permit,07/21/2021 07:00:00 AM,07/21/2021 09:00:00 PM,07/13/2021 10:13:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591027,Shooting Permit,07/20/2021 07:00:00 AM,07/20/2021 09:00:00 PM,07/13/2021 10:11:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591025,Shooting Permit,07/19/2021 07:00:00 AM,07/19/2021 09:00:00 PM,07/13/2021 10:10:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+591017,Shooting Permit,07/15/2021 09:00:00 AM,07/15/2021 05:00:00 PM,07/13/2021 09:42:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",KNICKERBOCKER AVENUE between GREENE AVENUE and HARMAN STREET,Brooklyn,4,83,Still Photography,Not Applicable,United States of America,11237
+590995,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 09:00:00 PM,07/12/2021 11:41:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEFFERSON STREET between WYKOFF AVENUE and IRVING AVENUE,Brooklyn,4,83,Commercial,Commercial,United States of America,11237
+590993,Shooting Permit,07/15/2021 06:00:00 AM,07/15/2021 09:00:00 PM,07/12/2021 10:50:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116TH ST between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 124 STREET and WEST 125 STREET, WEST 124TH ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, FORSYTH STREET between CANAL STREET and ELDRIDGE STREET",Manhattan,"10, 3","28, 5",Commercial,Commercial,United States of America,"10002, 10026, 10027"
+590981,Shooting Permit,07/17/2021 06:00:00 AM,07/17/2021 09:30:00 PM,07/12/2021 10:00:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 139 STREET and WEST 136 STREET, 12 AVENUE between WEST 131 STREET and WEST 133 STREET",Manhattan,9,"26, 30",WEB,Not Applicable,United States of America,"10027, 10031"
+590919,Shooting Permit,07/18/2021 01:00:00 PM,07/19/2021 02:00:00 AM,07/12/2021 04:39:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+590915,Shooting Permit,07/16/2021 02:00:00 PM,07/17/2021 04:00:00 AM,07/12/2021 04:17:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST 3 STREET and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, HUDSON STREET between BANK STREET and WEST 11 STREET, GREENWICH STREET between WEST 11 STREET and PERRY STREET, GREENWICH STREET between PERRY STREET and CHARLES STREET, CHARLES STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between CHARLES STREET and WEST 10 STREET, HUDSON STREET between CHARLES STREET and WEST 10 STREET, GREENWICH STREET between WEST 10 STREET and CHRISTOPHER STREET, CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between CHRISTOPHER STREET and BARROW STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10012, 10014"
+590908,Shooting Permit,07/17/2021 12:00:00 PM,07/18/2021 01:00:00 AM,07/12/2021 04:02:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+590897,Shooting Permit,07/16/2021 09:00:00 AM,07/16/2021 11:00:00 PM,07/12/2021 03:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",DUFFIELD STREET between WILLOUGHBY STREET and FULTON STREET,Brooklyn,2,84,Film,Feature,United States of America,11201
+590892,Shooting Permit,07/15/2021 07:00:00 AM,07/15/2021 10:00:00 PM,07/12/2021 03:30:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 126 STREET and WEST 125 STREET, LENOX AVENUE between WEST 126 STREET and WEST 127 STREET, WEST 126 STREET between LENOX AVENUE and 5 AVENUE",Manhattan,10,28,Film,Feature,United States of America,10027
+590876,Shooting Permit,07/14/2021 10:00:00 AM,07/14/2021 11:59:00 PM,07/12/2021 02:28:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+590875,Shooting Permit,07/16/2021 07:30:00 PM,07/17/2021 06:00:00 AM,07/12/2021 02:28:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 52 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 52 STREET and EAST 59 STREET, EAST 53 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152, 10154"
+590872,Shooting Permit,07/14/2021 08:00:00 AM,07/14/2021 11:59:00 PM,07/12/2021 02:25:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, SCOTT AVENUE between RANDOLPH STREET and DEAD END",Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,"11222, 11237"
+590851,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 08:00:00 PM,07/12/2021 01:50:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 101 STREET between FIFTH AVENUE and MADISON AVENUE,Manhattan,11,23,WEB,Not Applicable,United States of America,10029
+590841,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 09:00:00 PM,07/12/2021 01:26:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 66 STREET and WEST 68 STREET, WEST 66 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Commercial,Promo,United States of America,10023
+590793,Shooting Permit,07/16/2021 07:30:00 AM,07/16/2021 07:00:00 PM,07/12/2021 11:47:51 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 18 STREET between 6 AVENUE and 7 AVENUE,Manhattan,"4, 5",13,Still Photography,Not Applicable,United States of America,10011
+590792,Shooting Permit,07/14/2021 06:30:00 AM,07/14/2021 08:00:00 PM,07/12/2021 11:46:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 18 STREET between 8 AVENUE and 9 AVENUE, JEFFERSON AVENUE between TOMPKINS AVENUE and THROOP AVENUE, TOMPKINS AVENUE between JEFFERSON AVENUE and HANCOCK STREET",Manhattan,"3, 4","10, 79",Still Photography,Not Applicable,United States of America,"10011, 11216, 11221"
+590782,Shooting Permit,07/16/2021 07:00:00 AM,07/16/2021 07:00:00 PM,07/12/2021 11:19:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",ASTORIA PARK SOUTH between 18TH ST and 14TH ST,Queens,1,114,WEB,Not Applicable,United States of America,"11102, 11105"
+590681,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 08:00:00 PM,07/11/2021 12:53:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,8,19,Documentary,Not Applicable,United States of America,10021
+590682,Shooting Permit,07/15/2021 06:00:00 AM,07/15/2021 09:00:00 PM,07/11/2021 12:53:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 69 STREET between MADISON AVENUE and 5 AVENUE,Manhattan,8,19,Documentary,Not Applicable,United States of America,10021
+590587,Shooting Permit,07/17/2021 06:00:00 AM,07/17/2021 10:00:00 PM,07/09/2021 07:51:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEINWAY STREET between 28 AVENUE and 31 AVENUE, 28 AVENUE between STEINWAY STREET and 41 STREET, 31 AVENUE between STEINWAY STREET and 41 STREET, 36 STREET between 30 AVENUE and 31 AVENUE, 33 STREET between 28 AVENUE and 30 AVENUE, 30 AVENUE between 33 STREET and 34 STREET, 34 STREET between 28 AVENUE and 30 AVENUE, 34 STREET between 30 AVENUE and 31 AVENUE, 28 AVENUE between 34 STREET and 37 STREET, 36 STREET between 28 AVENUE and 30 AVENUE, 37 STREET between 30 AVENUE and 31 AVENUE, 30 AVENUE between 34 STREET and 36 STREET, 35 STREET between 30 AVENUE and 31 AVENUE, 35 STREET between 28 AVENUE and 30 AVENUE",Queens,1,114,Television,Pilot,United States of America,"11102, 11103"
+590582,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 10:00:00 PM,07/09/2021 07:21:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEINWAY STREET between 28 AVENUE and 31 AVENUE, 28 AVENUE between STEINWAY STREET and 41 STREET, 31 AVENUE between STEINWAY STREET and 41 STREET, 36 STREET between 30 AVENUE and 31 AVENUE, 33 STREET between 28 AVENUE and 30 AVENUE, 30 AVENUE between 33 STREET and 34 STREET, 34 STREET between 28 AVENUE and 30 AVENUE, 34 STREET between 30 AVENUE and 31 AVENUE, 28 AVENUE between 34 STREET and 36 STREET, 36 STREET between 28 AVENUE and 30 AVENUE, 30 AVENUE between 36 STREET and 37 STREET, 37 STREET between 30 AVENUE and 31 AVENUE, 30 AVENUE between 35 STREET and 36 STREET, 35 STREET between 28 AVENUE and 30 AVENUE",Queens,1,114,Television,Pilot,United States of America,"11102, 11103"
+590562,Shooting Permit,07/15/2021 09:00:00 AM,07/15/2021 11:59:00 PM,07/09/2021 04:55:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MOUNT CARMEL PLACE, EAST 26 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+590551,Shooting Permit,07/15/2021 06:00:00 AM,07/15/2021 08:00:00 PM,07/09/2021 04:20:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between BROOME STREET and SPRING STREET, WEST BROADWAY between SPRING STREET and PRINCE STREET, THOMPSON STREET between SPRING STREET and PRINCE STREET, THOMPSON STREET between SPRING STREET and BROOME STREET, SPRING STREET between WEST BROADWAY and MERCER STREET, WOOSTER STREET between BROOME STREET and PRINCE STREET, THOMPSON STREET between WEST HOUSTON STREET and PRINCE STREET",Manhattan,2,1,Television,Episodic series,United States of America,"10012, 10013"
+590537,Rigging Permit,07/14/2021 07:00:00 AM,07/14/2021 07:00:00 PM,07/09/2021 03:53:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",THOMPSON STREET between SPRING STREET and BROOME STREET,Manhattan,2,1,Television,Episodic series,United States of America,"10012, 10013"
+590529,Shooting Permit,07/16/2021 08:00:00 AM,07/16/2021 11:00:00 PM,07/09/2021 03:38:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between BROADWAY and GREENE STREET, WEST 119 STREET between ADAM C POWELL BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 119 STREET and WEST 120 STREET",Manhattan,"10, 2, 9","1, 28, 30",Still Photography,Not Applicable,United States of America,"10012, 10013, 10026, 10027, 10031"
+590528,Shooting Permit,07/16/2021 12:00:00 PM,07/17/2021 02:00:00 AM,07/09/2021 03:38:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 59 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 58 STREET between 12 AVENUE and 11 AVENUE, 12 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 57 STREET between 12 AVENUE and 11 AVENUE, 10 AVENUE between WEST 58 STREET and WEST 57 STREET, WEST 57 STREET between 10 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 8 AVENUE, 11 AVENUE between WEST 56 STREET and WEST 55 STREET",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,10019
+590524,Shooting Permit,07/15/2021 06:00:00 AM,07/15/2021 10:00:00 PM,07/09/2021 03:25:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHN STREET between PEARL STREET and FRONT STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and OLD SLIP, HANOVER STREET between WALL STREET and PEARL STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, WILLIAM STREET between WALL STREET and PEARL STREET, SOUTH WILLIAM STREET between BROAD STREET and WILLIAM STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET, BEAVER STREET between BROADWAY and NEW STREET, BROADWAY between EXCHANGE ALLEY and MORRIS STREET, PINE STREET between BROADWAY and WILLIAM STREET, NASSAU STREET between LIBERTY STREET and PINE STREET, WILLIAM STREET between PINE STREET and CEDAR STREET, BEAVER STREET between HANOVER STREET and PEARL STREET",Manhattan,1,1,Television,Pilot,United States of America,"10004, 10005, 10006, 10038"
+590508,Shooting Permit,07/14/2021 07:00:00 AM,07/14/2021 09:00:00 PM,07/09/2021 02:34:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, WASHINGTON STREET between HORATIO STREET and JANE STREET, AVENUE A between EAST 3 STREET and EAST 4 STREET, WASHINGTON STREET between JANE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET, 10 AVENUE between GANSEVOORT STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, EAST 6 STREET between AVENUE A and 1 AVENUE, AVENUE A between EAST 7 STREET and ST MARKS PLACE, AVENUE A between ST MARKS PLACE and EAST 9 STREET, AVENUE A between EAST 9 STREET and EAST 10 STREET, AVENUE A between EAST 10 STREET and EAST 11 STREET, LAFAYETTE STREET between EAST 8 STREET and EAST 4 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between BOWERY and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,"2, 3","6, 9",Television,Cable-episodic,United States of America,"10003, 10009, 10012, 10014"
+590488,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 11:59:00 PM,07/09/2021 01:41:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 85 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 84 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 83 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 86 STREET and WEST 85 STREET, CENTRAL PARK WEST between WEST 85 STREET and WEST 84 STREET, CENTRAL PARK WEST between WEST 84 STREET and WEST 83 STREET, CENTRAL PARK WEST between WEST 83 STREET and WEST 82 STREET",Manhattan,"64, 7","20, 22, 24",Television,Episodic series,United States of America,10024
+590472,Shooting Permit,07/11/2021 07:00:00 AM,07/11/2021 07:00:00 PM,07/09/2021 12:52:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",ROCKAWAY BOULEVARD between 87 STREET and 88 STREET,Queens,9,102,Film,Feature,United States of America,11416
+590465,Shooting Permit,07/10/2021 04:00:00 AM,07/10/2021 11:00:00 AM,07/09/2021 12:12:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+590462,Shooting Permit,07/14/2021 07:00:00 AM,07/14/2021 09:00:00 PM,07/09/2021 11:55:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","ANTHONY STREET between VANDERVOORT AVENUE and PORTER AVENUE, SCHOLES STREET between BOGART STREET and WATERBURY STREET",Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,"11206, 11222"
+590461,Shooting Permit,07/10/2021 06:00:00 AM,07/10/2021 07:00:00 PM,07/09/2021 11:53:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROSS BAY BOULEVARD between LIBERTY AVENUE and 108 AVENUE, 88 STREET between 97 AVENUE and 101 AVENUE",Queens,"10, 9","102, 106",Film,Feature,United States of America,"11416, 11417"
+590449,Shooting Permit,07/14/2021 08:00:00 AM,07/14/2021 11:00:00 PM,07/09/2021 10:58:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between RUSSELL STREET and NORTH HENRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+590441,Shooting Permit,07/17/2021 01:00:00 PM,07/17/2021 10:00:00 PM,07/09/2021 10:38:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",MERCER STREET between HOWARD STREET and GRAND STREET,Manhattan,2,1,WEB,Not Applicable,United States of America,10013
+590439,Shooting Permit,07/14/2021 10:00:00 AM,07/15/2021 12:00:00 AM,07/09/2021 10:17:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, FULTON STREET between BROADWAY and NASSAU STREET, NASSAU STREET between JOHN STREET and FULTON STREET, GOLD STREET between SPRUCE STREET and ANN STREET, FULTON STREET between GOLD STREET and PEARL STREET, WATER STREET between FLETCHER STREET and JOHN STREET, WATER STREET between WALL STREET and OLD SLIP, MAIDEN LANE between PEARL STREET and FRONT STREET, PEARL STREET between FULTON STREET and BEEKMAN STREET, WATER STREET between PINE STREET and MAIDEN LANE, THEATER ALLEY between ANN STREET and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+590376,Shooting Permit,07/15/2021 09:00:00 AM,07/15/2021 11:59:00 PM,07/08/2021 07:53:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between SCOTT AVENUE and GARDNER AVENUE,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+590350,Shooting Permit,07/11/2021 05:00:00 AM,07/11/2021 09:00:00 PM,07/08/2021 05:13:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","SIMPSON STREET between EAST 163 STREET and FOX STREET, FOX STREET between BARRETTO STREET and TIFFANY STREET, BARRETTO STREET between FOX STREET and SOUTHERN BOULEVARD",Bronx,2,41,Music Video,Signed Artist,United States of America,10459
+590313,Shooting Permit,07/13/2021 06:00:00 AM,07/13/2021 10:30:00 PM,07/08/2021 03:31:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLUMBUS AVENUE between WEST 87 STREET and WEST 86 STREET, WEST 86 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 85 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 87 STREET and WEST 86 STREET, CENTRAL PARK WEST between WEST 86 STREET and WEST 85 STREET, CENTRAL PARK WEST between WEST 85 STREET and WEST 84 STREET, WEST 84 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 84 STREET and WEST 83 STREET, WEST 83 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 83 STREET and WEST 82 STREET, CENTRAL PARK WEST between WEST 82 STREET and WEST 81 STREET, WEST 81 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST",Manhattan,"64, 7","20, 22, 24",Television,Episodic series,United States of America,10024
+590298,Shooting Permit,07/13/2021 06:00:00 AM,07/13/2021 02:00:00 PM,07/08/2021 02:49:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",SURF AVENUE between WEST 10 STREET and STILLWELL AVENUE,Brooklyn,13,60,Television,Episodic series,United States of America,"11224, 11235"
+590291,Shooting Permit,07/13/2021 07:00:00 AM,07/13/2021 10:00:00 PM,07/08/2021 02:21:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 25 STREET and EAST 24 STREET, DIVISION STREET between CANAL STREET and ALLEN STREET",Manhattan,"3, 5","13, 7",Commercial,Commercial,United States of America,"10002, 10010"
+590246,Shooting Permit,07/10/2021 09:00:00 AM,07/10/2021 10:00:00 PM,07/08/2021 11:54:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTHERN BOULEVARD between EAST 174 STREET and EAST 172 STREET, EAST 173 STREET between HOE AVENUE and SOUTHERN BOULEVARD",Bronx,3,42,Music Video,Signed Artist,United States of America,10460
+590236,Shooting Permit,07/14/2021 07:00:00 AM,07/14/2021 09:00:00 PM,07/08/2021 11:22:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between FRANKLIN STREET and WEST STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+590230,Shooting Permit,07/13/2021 07:00:00 AM,07/13/2021 09:00:00 PM,07/08/2021 11:10:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+590214,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 08:00:00 PM,07/08/2021 10:26:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 58 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"6, 8","17, 19",Commercial,Commercial,United States of America,"10022, 10155"
+590209,Shooting Permit,07/10/2021 06:00:00 AM,07/10/2021 11:59:00 PM,07/08/2021 10:03:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and MAIDEN LANE, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Special/Awards Show,United States of America,"10005, 10038"
+590208,Theater Load in and Load Outs,07/13/2021 06:00:00 AM,07/15/2021 11:59:00 PM,07/08/2021 09:56:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 73 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 75 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+590159,Shooting Permit,07/12/2021 06:30:00 AM,07/12/2021 10:00:00 PM,07/07/2021 07:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, PORTER AVENUE between JOHNSON AVENUE and THAMES STREET, FLUSHING AVENUE between WYCKOFF AVENUE and IRVING AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+590152,Theater Load in and Load Outs,07/12/2021 06:00:00 AM,07/23/2021 10:00:00 PM,07/07/2021 07:12:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Theater,Theater,United States of America,"10019, 10097"
+590107,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 10:00:00 PM,07/07/2021 04:36:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARNOLD STREET between LAFAYETTE AVENUE and DEAD END, ARNOLD STREET between LAFAYETTE AVENUE and CRYSTAL LANE, RICHMOND TERRACE between LAFAYETTE AVENUE and CLINTON AVENUE",Staten Island,1,120,Commercial,Commercial,United States of America,10301
+590078,Shooting Permit,07/13/2021 06:00:00 AM,07/13/2021 10:00:00 PM,07/07/2021 03:26:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 125 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 125 STREET and WEST 129 STREET, WEST 125 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 127 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, WEST 125 STREET between FREDRICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 126 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD",Manhattan,10,"28, 32",Television,Pilot,United States of America,"10026, 10027"
+590063,Shooting Permit,07/12/2021 07:00:00 AM,07/12/2021 09:00:00 PM,07/07/2021 03:04:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+590054,Shooting Permit,07/14/2021 07:00:00 AM,07/14/2021 09:00:00 PM,07/07/2021 02:47:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,Film,Feature,United States of America,11238
+590052,Shooting Permit,07/13/2021 07:00:00 AM,07/13/2021 09:00:00 PM,07/07/2021 02:39:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,Film,Feature,United States of America,11238
+590044,Shooting Permit,07/13/2021 07:00:00 AM,07/13/2021 06:00:00 PM,07/07/2021 02:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, WASHINGTON STREET between HORATIO STREET and JANE STREET, WASHINGTON STREET between JANE STREET and WEST 12 STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, 10 AVENUE between GANSEVOORT STREET and LITTLE WEST 12 STREET, LAFAYETTE STREET between EAST 8 STREET and EAST 4 STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, EAST 4 STREET between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between LAFAYETTE STREET and COOPER SQUARE, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, ASTOR PLACE between BROADWAY and LAFAYETTE STREET",Manhattan,2,"6, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10014"
+590040,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 11:00:00 PM,07/07/2021 01:50:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CATHEDRAL PARKWAY between MORNINGSIDE DRIVE and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 113 STREET and CATHEDRAL PARKWAY, CATHEDRAL PARKWAY between BROADWAY and AMSTERDAM AVENUE, WEST 111 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 112 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 111 STREET and WEST 112 STREET",Manhattan,"7, 9","24, 26",Television,Episodic series,United States of America,10025
+590039,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 09:00:00 PM,07/07/2021 01:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+590029,Shooting Permit,07/09/2021 06:00:00 AM,07/09/2021 08:30:00 PM,07/07/2021 01:16:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 59 STREET between 5 AVENUE and MADISON AVENUE, WEST 58 STREET between 6 AVENUE and 5 AVENUE, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 60 STREET and EAST 59 STREET, MADISON AVENUE between EAST 59 STREET and EAST 58 STREET, MADISON AVENUE between EAST 58 STREET and EAST 57 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE",Manhattan,"4, 5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10153"
+590009,Shooting Permit,07/10/2021 06:00:00 AM,07/10/2021 10:00:00 PM,07/07/2021 12:37:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between MADISON AVENUE and PARK AVENUE, E 41ST between PARK AVE and LEXINGTON AVE, EAST 39 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEX AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, WALL STREET between NASSAU STREET and WILLIAM STREET, PINE STREET between BROADWAY and WILLIAM STREET, WALL STREET between WILLIAM STREET and HANOVER STREET, WILLIAM STREET between WALL STREET and EXCHANGE PLACE, NASSAU STREET between LIBERTY STREET and PINE STREET",Manhattan,"1, 5, 6","1, 14, 17",Commercial,Commercial,United States of America,"10004, 10005, 10016, 10017, 10165"
+589949,Shooting Permit,07/12/2021 07:00:00 AM,07/12/2021 08:30:00 PM,07/07/2021 08:23:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 66 STREET and EAST 65 STREET, LEXINGTON AVENUE between EAST 65 STREET and EAST 64 STREET, PARK AVENUE between EAST 56 STREET and EAST 55 STREET, PARK AVENUE between EAST 55 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10022, 10065, 10152"
+589863,Shooting Permit,07/09/2021 06:00:00 PM,07/10/2021 06:00:00 AM,07/06/2021 06:20:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 53 STREET between 5 AVENUE and 6 AVENUE, WEST 56 STREET between 5 AVENUE and 6 AVENUE, WEST 56 STREET between 6 AVENUE and 7 AVENUE, PARK AVENUE between EAST 52 STREET and EAST 56 STREET, EAST 56 STREET between PARK AVENUE and MADISON AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022, 10103, 10152"
+589844,Shooting Permit,07/09/2021 06:00:00 AM,07/09/2021 11:00:00 PM,07/06/2021 04:55:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 28 STREET and WEST 31 STREET, WEST 35 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","10, 14",Commercial,Commercial,United States of America,"10001, 10121"
+589809,Shooting Permit,07/13/2021 12:30:00 PM,07/14/2021 02:30:00 AM,07/06/2021 02:55:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERONA STREET between VAN BRUNT STREET and DWIGHT STREET, DELAVAN STREET between RICHARDS STREET and VAN BRUNT STREET, DELAVAN STREET between RICHARDS STREET and DWIGHT STREET, DWIGHT ST between VERONA STREET and KING ST, VISITATION PLACE between RICHARDS STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+589781,Shooting Permit,07/09/2021 10:00:00 AM,07/10/2021 04:00:00 AM,07/06/2021 01:30:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 90 STREET and EAST 91 STREET, 5 AVENUE between EAST 91 STREET and EAST 92 STREET, 5 AVENUE between EAST 92 STREET and EAST 93 STREET, 5 AVENUE between EAST 93 STREET and EAST 94 STREET, 5 AVENUE between EAST 94 STREET and EAST 95 STREET, 5 AVENUE between EAST 95 STREET and EAST 96 STREET, EAST 93 STREET between 5 AVENUE and MADISON AVENUE, EAST 92 STREET between 5 AVENUE and MADISON AVENUE, EAST 84 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 85 STREET and EAST 84 STREET, YORK AVENUE between EAST 84 STREET and EAST 83 STREET, EAST 85 STREET between YORK AVENUE and EAST END AVENUE, EAST 86 STREET between YORK AVENUE and EAST END AVENUE, GRACIE SQUARE between EAST END AVENUE and DEAD END",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10028, 10128"
+589773,Shooting Permit,07/08/2021 06:00:00 AM,07/08/2021 10:00:00 PM,07/06/2021 01:09:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 AVENUE between WEST 135 STREET and WEST 133 STREET,Manhattan,"6, 9","17, 26, 30",Music Video,Signed Artist,United States of America,"10022, 10027, 10031"
+589771,Shooting Permit,07/12/2021 09:30:00 AM,07/12/2021 11:30:00 PM,07/06/2021 01:00:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELAVAN STREET between RICHARDS STREET and VAN BRUNT STREET, VERONA STREET between VAN BRUNT STREET and DWIGHT STREET, DELAVAN STREET between RICHARDS STREET and DWIGHT STREET, DWIGHT ST between VERONA STREET and KING ST, VISITATION PLACE between RICHARDS STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+589732,Shooting Permit,07/13/2021 10:30:00 AM,07/14/2021 12:30:00 AM,07/06/2021 11:15:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+589731,Shooting Permit,07/12/2021 09:00:00 AM,07/12/2021 11:00:00 PM,07/06/2021 11:15:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+589713,Shooting Permit,07/08/2021 12:00:00 PM,07/08/2021 07:00:00 PM,07/06/2021 10:44:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+589710,Shooting Permit,07/09/2021 07:00:00 AM,07/09/2021 08:00:00 PM,07/06/2021 10:30:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROSS BAY BOULEVARD between LIBERTY AVENUE and 108 AVENUE,Queens,10,106,Film,Feature,United States of America,11417
+589615,Theater Load in and Load Outs,07/14/2021 12:01:00 AM,07/16/2021 06:00:00 AM,07/05/2021 01:55:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 35 STREET between 8 AVENUE and 9 AVENUE,Manhattan,4,14,Theater,Theater,United States of America,10001
+589608,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 10:00:00 PM,07/05/2021 12:19:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+589591,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 11:59:00 PM,07/05/2021 10:58:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BEEKMAN STREET and MAIDEN LANE, JOHN STREET between SOUTH STREET and FRONT STREET",Manhattan,1,1,Television,Special/Awards Show,United States of America,"10005, 10038"
+589590,Shooting Permit,07/11/2021 06:00:00 AM,07/11/2021 11:59:00 PM,07/05/2021 10:51:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and MAIDEN LANE,Manhattan,1,1,Television,Special/Awards Show,United States of America,"10005, 10038"
+589585,Shooting Permit,07/09/2021 06:00:00 AM,07/09/2021 11:00:00 PM,07/05/2021 10:36:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH STREET between BEEKMAN STREET and MAIDEN LANE,Manhattan,1,1,Television,Special/Awards Show,United States of America,"10005, 10038"
+589450,Shooting Permit,07/09/2021 01:00:00 PM,07/10/2021 03:00:00 AM,07/02/2021 07:11:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+589428,Rigging Permit,07/07/2021 07:00:00 AM,07/07/2021 07:00:00 PM,07/02/2021 04:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+589423,Shooting Permit,07/09/2021 06:00:00 AM,07/09/2021 10:00:00 PM,07/02/2021 04:27:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WELLINGTON COURT between RUGBY ROAD and DEAD END,Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+589412,Shooting Permit,07/08/2021 11:00:00 AM,07/09/2021 01:00:00 AM,07/02/2021 03:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+589409,Shooting Permit,07/07/2021 06:00:00 AM,07/07/2021 09:00:00 PM,07/02/2021 03:36:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+589370,Shooting Permit,07/13/2021 06:00:00 AM,07/13/2021 06:00:00 PM,07/02/2021 01:02:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between LEFFERTS AVENUE and LINCOLN ROAD, LEFFERTS AVENUE between BEDFORD AVENUE and WASHINGTON AVENUE",Brooklyn,9,71,Still Photography,Not Applicable,United States of America,11225
+589359,Shooting Permit,07/07/2021 06:00:00 AM,07/07/2021 11:00:00 PM,07/02/2021 12:40:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 2 AVENUE and LEXINGTON AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, EAST 42 STREET between 2 AVENUE and 3 AVENUE, EAST 45 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10152"
+589351,Shooting Permit,07/06/2021 10:00:00 AM,07/06/2021 07:00:00 PM,07/02/2021 12:10:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48TH STREET between 6TH and 7TH AVE,Manhattan,5,18,Television,News,United States of America,"10019, 10036, 10105"
+589338,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 06:00:00 PM,07/02/2021 11:06:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVENUE between LEFFERTS AVENUE and LINCOLN ROAD,Brooklyn,9,71,Still Photography,Not Applicable,United States of America,11225
+589332,Shooting Permit,07/09/2021 11:00:00 AM,07/10/2021 01:00:00 AM,07/02/2021 10:26:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, PORTER AVENUE between HARRISON PLACE and GRATTAN STREET, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+589309,Shooting Permit,07/16/2021 06:00:00 AM,07/16/2021 11:59:00 PM,07/01/2021 11:53:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589308,Shooting Permit,07/15/2021 06:00:00 AM,07/15/2021 11:59:00 PM,07/01/2021 11:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589306,Shooting Permit,07/14/2021 06:00:00 AM,07/14/2021 11:59:00 PM,07/01/2021 11:47:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589305,Shooting Permit,07/13/2021 06:00:00 AM,07/13/2021 11:59:00 PM,07/01/2021 11:43:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589304,Shooting Permit,07/12/2021 06:00:00 AM,07/12/2021 11:59:00 PM,07/01/2021 11:40:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589303,Shooting Permit,07/11/2021 06:00:00 AM,07/11/2021 11:59:00 PM,07/01/2021 11:35:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589302,Shooting Permit,07/10/2021 06:00:00 AM,07/10/2021 01:00:00 PM,07/01/2021 11:31:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589255,Shooting Permit,07/15/2021 09:00:00 AM,07/15/2021 03:00:00 PM,07/01/2021 05:45:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 59 STREET between 1 AVENUE and YORK AVENUE,Manhattan,"6, 8","17, 19",Film,Short,United States of America,10022
+589235,Shooting Permit,07/06/2021 04:00:00 PM,07/07/2021 02:30:00 AM,07/01/2021 04:23:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE,Brooklyn,1,90,Documentary,Not Applicable,United States of America,11211
+589188,Shooting Permit,07/04/2021 05:00:00 AM,07/04/2021 04:00:00 PM,07/01/2021 02:28:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+589185,Shooting Permit,07/07/2021 07:00:00 AM,07/07/2021 09:00:00 PM,07/01/2021 02:24:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","BUSHWICK AVENUE between WILLOUGHBY AVENUE and SUYDAM STREET, SUYDAM STREET between BROADWAY and MYRTLE AVENUE, WILLOUGHBY AVENUE between BROADWAY and EVERGREEN AVENUE, EVERGREEN AVENUE between TROUTMAN STREET and SUYDAM STREET, MYRTLE AVENUE between BUSHWICK AVENUE and WILLOUGHBY AVENUE, MCDONALD AVENUE between CATON AVENUE and CHURCH AVENUE, MCDONALD AVENUE between FORT HAMILTON PARKWAY and TERRACE PLACE, ALBERMARLE ROAD between MCDONALD AVENUE and EAST 2 STREET, MYRTLE AVENUE between THROOP AVENUE and LEWIS AVENUE, MARCUS GARVEY BOULEVARD between WILLOUGHBY AVENUE and MYRTLE AVENUE",Brooklyn,"12, 3, 4, 7","66, 72, 79, 81, 83",Television,Episodic series,United States of America,"11206, 11218, 11221"
+589150,Shooting Permit,07/02/2021 07:00:00 AM,07/02/2021 09:00:00 PM,07/01/2021 01:01:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 76 STREET between 5 AVENUE and PARK AVENUE, 5 AVENUE between EAST 75 STREET and EAST 76 STREET, PARK AVENUE between EAST 77 STREET and EAST 75 STREET, 3 AVENUE between EAST 73 STREET and EAST 79 STREET, EAST 75 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 77 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10075"
+589127,Shooting Permit,07/08/2021 06:00:00 AM,07/08/2021 11:59:00 PM,07/01/2021 11:13:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,18,Television,Variety,United States of America,10019
+589107,Shooting Permit,07/09/2021 01:00:00 PM,07/10/2021 06:00:00 PM,07/01/2021 09:00:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between 3 AVENUE and RUTHERFORD PLACE, EAST 16 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 16 STREET and EAST 15 STREET, EAST 15 STREET between 3 AVENUE and RUTHERFORD PLACE, 3 AVENUE between EAST 15 STREET and EAST 14 STREET, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 12 STREET and EAST 11 STREET, EAST 11 STREET between 5 AVENUE and UNIVERSITY PLACE, WEST 10 STREET between 5 AVENUE and 6 AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 24 STREET and EAST 23 STREET, LEXINGTON AVENUE between EAST 24 STREET and EAST 23 STREET",Manhattan,"2, 5, 6","13, 6",Television,Episodic series,United States of America,"10003, 10010, 10011"
+589040,Shooting Permit,07/06/2021 06:00:00 AM,07/06/2021 10:00:00 PM,06/30/2021 04:54:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+589011,Shooting Permit,07/08/2021 08:30:00 AM,07/08/2021 10:30:00 PM,06/30/2021 03:25:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, THAMES STREET between VARICK AVENUE and PORTER AVENUE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, PORTER AVENUE between HARRISON PLACE and GRATTAN STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+588913,Shooting Permit,07/08/2021 12:00:00 PM,07/09/2021 02:00:00 AM,06/30/2021 10:34:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET, VINE STREET between COLUMBIA HEIGHTS and MCKENNY STREET, OLD FULTON STREET between ELIZABETH PLACE and HICKS STREET, WATER STREET between OLD FULTON STREET and DOCK STREET, WATER STREET between DOCK STREET and MAIN STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET, COLUMBIA HEIGHTS between VINE STREET and DOUGHTY STREET, COLUMBIA HEIGHTS between MIDDAGH STREET and VINE STREET",Queens,"1, 2","114, 84",Television,Episodic series,United States of America,"11101, 11106, 11201"
+588907,Shooting Permit,07/07/2021 08:00:00 AM,07/07/2021 10:00:00 PM,06/30/2021 10:16:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+588906,Shooting Permit,07/06/2021 07:00:00 AM,07/06/2021 09:00:00 PM,06/30/2021 10:16:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+588899,Shooting Permit,07/08/2021 06:00:00 AM,07/08/2021 09:00:00 PM,06/30/2021 09:53:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between GRATTAN STREET and THAMES STREET, BOGART STREET between GRATTAN STREET and THAMES STREET, GRATTAN STREET between BOGART STREET and MORGAN AVENUE",Brooklyn,1,90,Commercial,Commercial,United States of America,11206
+588898,Shooting Permit,07/07/2021 06:00:00 AM,07/07/2021 09:00:00 PM,06/30/2021 09:52:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOGART STREET between GRATTAN STREET and THAMES STREET, BOGART STREET between GRATTAN STREET and THAMES STREET, GRATTAN STREET between BOGART STREET and MORGAN AVENUE",Brooklyn,1,90,Commercial,Commercial,United States of America,11206
+588702,Shooting Permit,07/02/2021 11:00:00 AM,07/03/2021 05:00:00 AM,06/29/2021 12:32:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 39 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 39 STREET and EAST 38 STREET, EAST 38 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 38 STREET and EAST 37 STREET, PARK AVENUE between EAST 37 STREET and EAST 36 STREET, PARK AVENUE between EAST 36 STREET and EAST 35 STREET, EAST 37 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10016
+588691,Shooting Permit,07/02/2021 11:00:00 AM,07/03/2021 02:00:00 AM,06/29/2021 11:56:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+588684,Shooting Permit,07/01/2021 11:00:00 AM,07/02/2021 02:00:00 AM,06/29/2021 11:43:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+588678,Shooting Permit,07/03/2021 05:00:00 AM,07/03/2021 05:00:00 PM,06/29/2021 11:17:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+588644,Shooting Permit,07/07/2021 08:30:00 AM,07/07/2021 10:00:00 PM,06/29/2021 09:54:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+588641,Shooting Permit,07/02/2021 12:00:00 PM,07/03/2021 02:00:00 AM,06/29/2021 09:41:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+588638,Shooting Permit,07/01/2021 09:00:00 AM,07/01/2021 11:00:00 PM,06/29/2021 09:20:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+588637,Shooting Permit,06/30/2021 06:00:00 AM,06/30/2021 09:00:00 PM,06/29/2021 09:17:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+588611,Shooting Permit,07/02/2021 09:00:00 AM,07/02/2021 04:00:00 PM,06/28/2021 11:05:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between HUNTER STREET and 23 STREET, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE",Queens,2,108,Television,Episodic series,United States of America,11101
+588550,Shooting Permit,07/02/2021 10:30:00 AM,07/02/2021 11:59:00 PM,06/28/2021 04:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+588547,Shooting Permit,07/06/2021 07:00:00 AM,07/06/2021 09:30:00 PM,06/28/2021 04:47:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+588507,Shooting Permit,07/01/2021 07:00:00 AM,07/01/2021 11:00:00 PM,06/28/2021 02:55:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+588499,Shooting Permit,06/30/2021 11:00:00 AM,06/30/2021 10:00:00 PM,06/28/2021 02:29:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between GREAT JONES STREET and BOND STREET, EAST 2 STREET between BOWERY and 2 AVENUE, EAST 1 STREET between 1 AVENUE and EAST HOUSTON STREET",Manhattan,"2, 3","6, 9",Commercial,Promo,United States of America,"10003, 10009, 10012"
+588494,Shooting Permit,06/29/2021 06:00:00 AM,06/29/2021 09:00:00 PM,06/28/2021 02:17:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WORTH STREET and DUANE STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET, CHURCH STREET between WALKER STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Film,Feature,United States of America,10013
+588470,Shooting Permit,07/01/2021 09:30:00 AM,07/02/2021 04:30:00 AM,06/28/2021 12:56:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 50 STREET and EAST 49 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 55 STREET and EAST 54 STREET, EAST 53 STREET between MADISON AVENUE and PARK AVENUE, EAST 54 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 54 STREET and EAST 53 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10022, 10152"
+588452,Shooting Permit,06/30/2021 10:00:00 AM,07/01/2021 04:00:00 AM,06/28/2021 12:26:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+588446,Shooting Permit,07/01/2021 08:00:00 AM,07/01/2021 03:00:00 PM,06/28/2021 12:02:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","LA GUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, BLEECKER STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between MINETTA STREET and MINETTA LANE, BLEECKER STREET between LEROY STREET and 6 AVENUE, CARMINE STREET between BEDFORD STREET and BLEECKER STREET, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET",Manhattan,2,"1, 6",Film,Feature,United States of America,"10012, 10014"
+588406,Shooting Permit,07/01/2021 10:00:00 AM,07/01/2021 11:59:00 PM,06/28/2021 08:51:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+588405,Shooting Permit,06/30/2021 09:00:00 AM,06/30/2021 11:00:00 PM,06/28/2021 08:51:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+588403,Shooting Permit,06/29/2021 08:00:00 AM,06/29/2021 10:00:00 PM,06/28/2021 08:51:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 36 STREET and 37 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+588256,Shooting Permit,07/05/2021 04:00:00 AM,07/05/2021 10:00:00 AM,06/25/2021 10:01:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 49 STREET between 7 AVENUE and BROADWAY,Manhattan,5,"14, 18",Still Photography,Not Applicable,United States of America,"10018, 10019, 10036"
+588255,Shooting Permit,06/30/2021 07:00:00 AM,06/30/2021 06:00:00 PM,06/25/2021 09:58:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+588249,Shooting Permit,06/30/2021 06:00:00 AM,06/30/2021 11:59:00 PM,06/25/2021 08:21:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 46 STREET and EAST 47 STREET, 3 AVENUE between EAST 53 STREET and EAST 54 STREET, EAST 54 STREET between 3 AVENUE and 2 AVENUE",Manhattan,"5, 6","17, 18",Television,Variety,United States of America,"10017, 10022"
+588246,Shooting Permit,06/29/2021 06:00:00 AM,06/29/2021 11:00:00 PM,06/25/2021 07:50:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE,Brooklyn,1,90,Television,Variety,United States of America,11211
+588239,Theater Load in and Load Outs,06/30/2021 12:01:00 AM,07/03/2021 06:00:00 AM,06/25/2021 06:29:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE,Brooklyn,1,94,Theater,Theater,United States of America,11249
+588232,Shooting Permit,06/30/2021 06:00:00 AM,06/30/2021 10:00:00 PM,06/25/2021 05:18:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 11 AVENUE and 12 AVENUE, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 62 STREET, DELANCEY STREET NORTH between MANGIN STREET and BARUCH DRIVE",Manhattan,"3, 4, 7","10, 18, 20, 7, 9",WEB,Not Applicable,United States of America,"10002, 10023, 10036, 10069"
+588205,Shooting Permit,06/30/2021 08:00:00 AM,07/01/2021 04:00:00 AM,06/25/2021 03:33:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 49 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10022, 10152"
+588190,Shooting Permit,07/02/2021 11:00:00 AM,07/03/2021 02:00:00 AM,06/25/2021 02:55:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST DRIVE between BAYVIEW AVENUE and SHORE ROAD, WEST DRIVE between BAYVIEW AVENUE and KENMORE ROAD, BAYVIEW AVENUE between WEST DRIVE and SHORE ROAD",Queens,11,111,Television,Cable-episodic,United States of America,11363
+588160,Shooting Permit,06/29/2021 11:00:00 AM,07/03/2021 11:59:00 PM,06/25/2021 01:21:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, EAST HOUSTON STREET between NORFOLK STREET and ESSEX STREET",Manhattan,3,"7, 9",Television,Cable-other,United States of America,"10002, 10009"
+588136,Shooting Permit,06/29/2021 09:00:00 AM,06/29/2021 10:30:00 PM,06/25/2021 12:13:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 6 AVENUE and 7 AVENUE, 5 AVENUE between EAST 86 STREET and EAST 87 STREET",Manhattan,"5, 64, 8","18, 19, 22",Commercial,Promo,United States of America,"10019, 10023, 10028, 10128"
+588035,Shooting Permit,06/28/2021 10:00:00 AM,06/28/2021 09:00:00 PM,06/24/2021 05:50:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEWIS AVENUE between MACON STREET and MACDONOUGH STREET, NORTH 5 STREET between BEDFORD AVENUE and BERRY STREET, SPRING STREET between WOOSTER STREET and MERCER STREET",Brooklyn,"1, 2, 3","1, 81, 94",WEB,Not Applicable,United States of America,"10012, 11233, 11249"
+588023,Shooting Permit,07/02/2021 07:00:00 AM,07/02/2021 10:00:00 PM,06/24/2021 05:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+588022,Shooting Permit,07/01/2021 08:30:00 AM,07/01/2021 10:30:00 PM,06/24/2021 05:02:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between GARFIELD PLACE and 4 STREET, 1 STREET between 8 AVENUE and PROSPECT PARK WEST, 3 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 2 STREET and 3 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+588020,Shooting Permit,06/30/2021 08:00:00 AM,06/30/2021 10:00:00 PM,06/24/2021 05:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between GARFIELD PLACE and 4 STREET, 1 STREET between 8 AVENUE and PROSPECT PARK WEST, 3 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 2 STREET and 3 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+588018,Shooting Permit,07/01/2021 06:00:00 AM,07/01/2021 09:00:00 PM,06/24/2021 04:57:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DR between WEST 120 STREET and W118TH ST,Manhattan,9,26,Still Photography,Not Applicable,United States of America,"10024, 10027"
+588013,Shooting Permit,06/30/2021 06:00:00 AM,06/30/2021 09:00:00 PM,06/24/2021 04:41:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DR between WEST 120 STREET and W118TH ST,Manhattan,9,26,Still Photography,Not Applicable,United States of America,"10024, 10027"
+588006,Shooting Permit,06/29/2021 07:00:00 AM,06/29/2021 08:00:00 PM,06/24/2021 04:12:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CROSBY STREET and LAFAYETTE STREET, CROSBY STREET between BROOME STREET and GRAND STREET",Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+588003,Shooting Permit,06/30/2021 12:00:00 PM,07/01/2021 04:00:00 AM,06/24/2021 04:05:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 40 AVENUE and 41 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+587964,Shooting Permit,07/01/2021 07:30:00 AM,07/01/2021 10:00:00 PM,06/24/2021 02:03:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, THAMES STREET between VARICK AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+587915,Shooting Permit,06/26/2021 06:00:00 AM,06/27/2021 11:59:00 PM,06/24/2021 12:11:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between BROADWAY and 5 AVENUE, WEST 24 STREET between 5 AVENUE and 6 AVENUE, WEST 25 STREET between BROADWAY and 6 AVENUE, BROADWAY between WEST 25 STREET and 5 AVENUE",Manhattan,5,13,Television,Special/Awards Show,United States of America,10010
+587913,Shooting Permit,06/27/2021 06:00:00 AM,06/27/2021 06:00:00 PM,06/24/2021 12:08:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAFAYETTE AVENUE between FT GREENE PLACE and SOUTH PORTLAND AVENUE,Brooklyn,2,88,Commercial,Commercial,United States of America,11217
+587907,Shooting Permit,06/26/2021 06:00:00 AM,06/26/2021 06:00:00 PM,06/24/2021 11:59:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, WALL STREET between NASSAU STREET and WILLIAM STREET",Manhattan,1,1,Commercial,Commercial,United States of America,10005
+587891,Shooting Permit,07/01/2021 06:00:00 AM,07/01/2021 08:00:00 PM,06/24/2021 11:19:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between NORTH 1 STREET and GRAND STREET, RIVER STREET between NORTH 1 STREET and METROPOLITAN AVENUE",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11249
+587886,Shooting Permit,06/29/2021 06:00:00 AM,06/29/2021 08:00:00 PM,06/24/2021 11:07:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between HUDSON STREET and VARICK STREET, 12 AVENUE between WEST 133 STREET and WEST 132 STREET",Manhattan,"1, 9","1, 20, 26",Still Photography,Not Applicable,United States of America,"10013, 10024, 10027"
+587885,Shooting Permit,07/01/2021 10:00:00 AM,07/02/2021 01:00:00 AM,06/24/2021 11:06:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+587874,Shooting Permit,06/30/2021 12:00:00 PM,07/01/2021 02:00:00 AM,06/24/2021 10:53:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 2 AVENUE and 1 AVENUE, EAST 69 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 69 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 72 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST 71 STREET between 5 AVENUE and PARK AVENUE, PARK AVENUE between EAST 72 STREET and EAST 70 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"6, 64, 8","17, 19, 22",Television,Cable-episodic,United States of America,"10016, 10017, 10021, 10065"
+587850,Shooting Permit,06/29/2021 06:00:00 AM,06/30/2021 02:00:00 AM,06/24/2021 09:06:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 104 STREET and 108 STREET, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+587848,Shooting Permit,06/30/2021 02:00:00 PM,07/01/2021 03:00:00 AM,06/24/2021 08:55:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 30 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 28 STREET, WEST 31 STREET between 8 AVENUE and 7 AVENUE, CHAMBERS STREET between CENTRE STREET and BROADWAY, BROADWAY between CHAMBERS STREET and MURRAY STREET, BROADWAY between DUANE STREET and CHAMBERS STREET, READE STREET between CHURCH STREET and BROADWAY, LAFAYETTE STREET between DUANE STREET and READE STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CENTRE STREET between WORTH STREET and WALKER STREET, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET",Manhattan,"1, 2, 3, 4, 5","1, 10, 14, 5, 84",Film,Feature,United States of America,"10001, 10002, 10007, 10013, 10038, 10121, 11201"
+587818,Rigging Permit,07/05/2021 07:00:00 AM,07/09/2021 07:00:00 PM,06/23/2021 06:34:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Television,Episodic series,United States of America,11215
+587815,Rigging Permit,07/02/2021 07:00:00 AM,07/02/2021 07:00:00 PM,06/23/2021 06:25:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Television,Episodic series,United States of America,11215
+587812,Rigging Permit,06/28/2021 07:00:00 AM,06/29/2021 07:00:00 PM,06/23/2021 06:24:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 STREET between 8 AVENUE and PROSPECT PARK WEST,Brooklyn,6,78,Television,Episodic series,United States of America,11215
+587788,Shooting Permit,06/28/2021 07:00:00 AM,06/28/2021 08:00:00 PM,06/23/2021 04:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE MARKET PLACE between BROOME STREET and GRAND STREET, HOWARD STREET between CROSBY STREET and LAFAYETTE STREET",Manhattan,2,5,Still Photography,Not Applicable,United States of America,10013
+587767,Shooting Permit,06/28/2021 06:00:00 AM,06/28/2021 08:30:00 PM,06/23/2021 03:54:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIN STREET and DOCK STREET, WATER STREET between DOCK STREET and OLD FULTON STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+587759,Shooting Permit,06/28/2021 06:00:00 AM,06/28/2021 10:00:00 PM,06/23/2021 03:42:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE,Brooklyn,1,90,Television,Variety,United States of America,11211
+587760,Shooting Permit,06/30/2021 06:00:00 AM,06/30/2021 10:00:00 PM,06/23/2021 03:42:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND STREET between MORGAN AVENUE and VANDERVOORT AVENUE,Brooklyn,1,90,Television,Variety,United States of America,11211
+587715,Shooting Permit,06/28/2021 07:00:00 AM,06/28/2021 09:00:00 PM,06/23/2021 02:08:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",150 STREET between NORTH CONDUIT AVENUE and ROCKAWAY BOULEVARD,Queens,12,113,Film,Feature,United States of America,11436
+587704,Shooting Permit,06/25/2021 09:00:00 AM,06/25/2021 12:59:00 PM,06/23/2021 01:45:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WOODWARD AVENUE between STARR STREET and STANHOPE STREET",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+587658,Shooting Permit,06/28/2021 07:30:00 AM,06/28/2021 07:30:00 PM,06/23/2021 12:25:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 69 STREET and EAST 72 STREET, EAST 71 STREET between PARK AVENUE and 5 AVENUE, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 56 STREET and EAST 53 STREET",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10021, 10022"
+587630,Shooting Permit,06/27/2021 04:00:00 AM,06/27/2021 01:00:00 PM,06/23/2021 11:25:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+587623,Shooting Permit,06/25/2021 08:30:00 AM,06/25/2021 10:00:00 PM,06/23/2021 11:16:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+587609,Shooting Permit,06/28/2021 06:00:00 AM,06/29/2021 12:30:00 AM,06/23/2021 10:36:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, 86 AVENUE between 104 STREET and 108 STREET, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418"
+587579,Shooting Permit,06/25/2021 07:00:00 AM,06/25/2021 08:00:00 PM,06/23/2021 08:22:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",HALL STREET between FLUSHING AVENUE and PARK AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+587554,Shooting Permit,06/28/2021 06:00:00 AM,06/28/2021 08:00:00 PM,06/22/2021 08:02:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON STREET between CADMAN PLAZA EAST and CADMAN PLAZA WEST, CADMAN PLAZA WEST between PIERREPONT STREET and MONTAGUE STREET, CLINTON STREET between JORALEMON STREET and PIERREPONT STREET, JORALEMON STREET between COURT STREET and CLINTON STREET, REMSEN STREET between COURT STREET and CLINTON STREET, MONTAGUE STREET between COURT STREET and CLINTON STREET, PIERREPONT STREET between CADMAN PLAZA WEST and CLINTON STREET, MONTAGUE STREET between CLINTON STREET and HENRY STREET, CADMAN PLAZA WEST between TILLARY STREET and MIDDAGH STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+587537,Shooting Permit,06/28/2021 07:00:00 AM,06/28/2021 09:30:00 PM,06/22/2021 04:58:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST HOUSTON STREET between MACDOUGAL STREET and WOOSTER STREET, CHARLTON STREET between 6 AVENUE and VARICK STREET, VANDAM STREET between VARICK STREET and 6 AVENUE, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,"10012, 10013, 10014"
+587536,Shooting Permit,06/28/2021 06:00:00 AM,06/28/2021 08:00:00 PM,06/22/2021 04:56:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 127 STREET between ST NICHOLAS AVENUE and FREDRICK DOUGLASS BOULEVARD, WEST 127 STREET between FREDRICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 126 STREET between ST NICHOLAS AVENUE and FREDRICK DOUGLASS BOULEVARD, WEST 126 STREET between LENOX AVENUE and 5 AVENUE",Manhattan,10,"28, 32",Film,Feature,United States of America,10027
+587532,Shooting Permit,06/25/2021 10:00:00 AM,06/26/2021 03:00:00 AM,06/22/2021 04:33:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 56 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between 7 AVENUE and 6 AVENUE, WEST 58 STREET between 7 AVENUE and 6 AVENUE, PARK AVENUE between EAST 58 STREET and EAST 59 STREET, PARK AVENUE between EAST 39 STREET and EAST 38 STREET, PARK AVENUE between EAST 35 STREET and EAST 38 STREET, EAST 35 STREET between MADISON AVENUE and PARK AVENUE, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, EAST 37 STREET between MADISON AVENUE and PARK AVENUE, EAST 38 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6, 64","17, 18, 22",Television,Episodic series,United States of America,"10016, 10019, 10022, 10106"
+587530,Shooting Permit,07/03/2021 03:00:00 AM,07/03/2021 12:00:00 PM,06/22/2021 04:17:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 50 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,"14, 18",Commercial,Promo,United States of America,"10019, 10020, 10036"
+587520,Shooting Permit,06/25/2021 04:00:00 PM,06/26/2021 04:00:00 AM,06/22/2021 03:41:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 162 STREET between MORRIS AVENUE and TELLER AVENUE, MORRIS AVENUE between EAST 158 STREET and EAST 163 STREET, EAST 161 STREET between MORRIS AVENUE and PARK AVENUE, GRANT AVENUE between EAST 162 STREET and EAST 164 STREET, EAST 163 STREET between SHERMAN AVENUE and MORRIS AVENUE, EAST 164 STREET between SHERMAN AVENUE and MORRIS AVENUE",Bronx,4,44,Television,Episodic series,United States of America,"10451, 10456"
+587484,Shooting Permit,06/29/2021 07:30:00 AM,06/29/2021 08:00:00 PM,06/22/2021 01:11:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 10 STREET between BERRY STREET and BEDFORD AVENUE,Brooklyn,1,90,Film,Feature,United States of America,11249
+587482,Shooting Permit,06/24/2021 09:00:00 AM,06/24/2021 03:00:00 PM,06/22/2021 01:00:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","HALL ST between FLUSHING AVENUE and PARK AVENUE, PARK AVENUE between WAVERLY AVENUE and RYERSON STREET",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+587476,Shooting Permit,06/30/2021 05:00:00 AM,06/30/2021 10:00:00 PM,06/22/2021 12:37:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14TH STREET between WASHINGTON STREET and 9TH AVE, WASHINGTON STREET between GANSEVOORT STREET and WEST 14 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10011, 10014"
+587469,Shooting Permit,06/24/2021 09:00:00 AM,06/24/2021 02:00:00 PM,06/22/2021 11:56:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between ST CLAIR PLACE and TIEMANN PLACE, 12TH AVENUE between ST CLAIR PLACE and WEST 125 STREET",Manhattan,9,26,WEB,Not Applicable,United States of America,10027
+587464,Shooting Permit,06/25/2021 06:30:00 AM,06/25/2021 06:30:00 PM,06/22/2021 11:40:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 61 STREET and EAST 63 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 72 STREET and EAST 73 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE, EAST END AVENUE between EAST 90 STREET and EAST 89 STREET, EAST 90 STREET between EAST END AVENUE and YORK AVENUE",Manhattan,"64, 8","19, 22",Commercial,Commercial,United States of America,"10021, 10023, 10065, 10128"
+587429,Shooting Permit,06/24/2021 06:00:00 AM,06/24/2021 08:00:00 PM,06/22/2021 09:59:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 59 STREET between 3 AVENUE and LEXINGTON AVENUE,Manhattan,"6, 8","17, 19",Commercial,Commercial,United States of America,10022
+587428,Shooting Permit,06/26/2021 07:00:00 AM,06/26/2021 10:00:00 PM,06/22/2021 09:51:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+587418,Shooting Permit,06/29/2021 07:00:00 AM,06/29/2021 11:00:00 PM,06/22/2021 08:49:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+587414,Shooting Permit,06/24/2021 09:00:00 AM,06/24/2021 07:00:00 PM,06/22/2021 08:38:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",RUSSELL STREET between DRIGGS AVENUE and ENGERT AVENUE,Brooklyn,1,"90, 94",Still Photography,Not Applicable,United States of America,"11222, 11249"
+587370,Shooting Permit,06/24/2021 09:00:00 AM,06/24/2021 06:00:00 PM,06/21/2021 08:13:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAIGHT STREET between HUDSON STREET and VARICK STREET,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+587363,Shooting Permit,06/24/2021 06:00:00 AM,06/24/2021 10:00:00 PM,06/21/2021 07:53:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between EAST HOUSTON STREET and RIVINGTON STREET, BOWERY between EAST HOUSTON STREET and STANTON STREET, 126 STREET between ROOSEVELT AVENUE and 36 AVENUE, 4 AVENUE between 95 STREET and 96 STREET, 4 AVENUE between 94 STREET and 95 STREET, 96 STREET between 4 AVENUE and 3 AVENUE",Manhattan,"10, 2, 3, 7, 81","110, 5, 68",Documentary,Not Applicable,United States of America,"10002, 10012, 11209, 11368"
+587318,Shooting Permit,06/24/2021 10:00:00 AM,06/25/2021 01:00:00 AM,06/21/2021 04:58:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and 7 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 56 STREET, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 56 STREET between 7 AVENUE and 6 AVENUE, WEST 58 STREET between 7 AVENUE and 6 AVENUE, WEST 57 STREET between 7 AVENUE and 6 AVENUE, PARK AVENUE between EAST 59 STREET and EAST 58 STREET",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022, 10106"
+587313,Shooting Permit,06/25/2021 08:00:00 AM,06/26/2021 03:00:00 AM,06/21/2021 04:51:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between CLINTON AVENUE and WAVERLY AVENUE, CLINTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, VANDERBILT AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, VANDERBILT AVENUE between PARK AVENUE and MYRTLE AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, CLERMONT AVENUE between PARK AVENUE and MYRTLE AVENUE, CLERMONT AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE, MYRTLE AVENUE between ADELPHI STREET and CLERMONT AVENUE, ADELPHI STREET between MYRTLE AVENUE and WILLOUGHBY AVENUE, MYRTLE AVENUE between CARLTON AVENUE and ADELPHI STREET",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+587286,Shooting Permit,06/23/2021 09:00:00 AM,06/23/2021 11:00:00 PM,06/21/2021 03:43:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND ARMY PLAZA between WEST 59 STREET and WEST 58 STREET, EAST 58 STREET between 5 AVENUE and MADISON AVENUE, EAST 59 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 60 STREET, PARK AVENUE between EAST 52 STREET and EAST 56 STREET, EAST 56 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10019, 10022, 10152"
+587272,Shooting Permit,06/25/2021 01:00:00 PM,06/25/2021 11:59:00 PM,06/21/2021 02:51:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+587252,Shooting Permit,06/24/2021 08:00:00 AM,06/24/2021 11:59:00 PM,06/21/2021 02:14:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WOODWARD AVENUE between STARR STREET and STANHOPE STREET",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+587240,Shooting Permit,06/23/2021 07:00:00 AM,06/23/2021 11:00:00 PM,06/21/2021 01:38:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WOODWARD AVENUE between STARR STREET and STANHOPE STREET",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+587239,Shooting Permit,06/22/2021 09:00:00 AM,06/22/2021 10:00:00 PM,06/21/2021 01:37:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 71 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 71 STREET between BROADWAY and COLUMBUS AVENUE, AMSTERDAM AVENUE between WEST 70 STREET and WEST 71 STREET, AMSTERDAM AVENUE between WEST 71 STREET and WEST 72 STREET, COLUMBUS AVENUE between WEST 61 STREET and WEST 62 STREET, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 61 STREET and WEST 63 STREET, WEST 58 STREET between 9 AVENUE and 8 AVENUE, WEST 59 STREET between COLUMBUS CIRCLE and 6 AVENUE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 62 STREET between BROADWAY and CENTRAL PARK WEST",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+587208,Shooting Permit,06/28/2021 07:00:00 AM,06/28/2021 11:00:00 PM,06/21/2021 12:32:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+587193,Shooting Permit,06/23/2021 06:00:00 AM,06/23/2021 08:00:00 PM,06/21/2021 11:53:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 77 STREET and EAST 79 STREET, EAST 78 STREET between 5 AVENUE and MADISON AVENUE, EAST 59 STREET between LEXINGTON AVENUE and 3 AVENUE, SULLIVAN STREET between WASHINGTON SQUARE SOUTH and WEST 3 STREET, WEST 3 STREET between MACDOUGAL STREET and SULLIVAN STREET",Manhattan,"2, 6, 64, 8","17, 19, 22, 6",Commercial,Commercial,United States of America,"10012, 10022, 10075"
+587182,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 10:00:00 PM,06/21/2021 11:00:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+587173,Shooting Permit,06/23/2021 06:45:00 AM,06/23/2021 10:00:00 PM,06/21/2021 10:38:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between SPRING STREET and BROOME STREET,Manhattan,"2, 5","1, 14",Music Video,Independent Artist,United States of America,"10012, 10013, 10018"
+587116,Shooting Permit,06/23/2021 03:30:00 AM,06/23/2021 11:00:00 PM,06/20/2021 09:21:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between BROAD STREET and OLD SLIP, BRIGHTON BEACH AVENUE between BRIGHTON 2 STREET and BRIGHTON 5 STREET, BRIGHTON 2 STREET between BRIGHTON BEACH AVENUE and OCEAN VIEW AVENUE, BRIGHTON 3 STREET between BRIGHTON BEACH AVENUE and OCEAN VIEW AVENUE, BRIGHTON 4 STREET between BRIGHTON BEACH AVENUE and OCEAN VIEW AVENUE, 4 AVENUE between 100 STREET and 101 STREET, 101 STREET between 4 AVENUE and FORT HAMILTON PARKWAY, SHORE ROAD between 3 AVENUE and 4 AVENUE, WEST 15 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, SURF AVENUE between WEST 15 STREET and STILLWELL AVENUE",Manhattan,"1, 10, 13, 95","1, 120, 60, 68",Documentary,Not Applicable,United States of America,"10004, 10305, 11209, 11224, 11235"
+587104,Shooting Permit,06/23/2021 07:00:00 AM,06/23/2021 06:00:00 PM,06/20/2021 05:52:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 91 STREET and EAST 90 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10023, 10024, 10028, 10075, 10128"
+587067,Shooting Permit,06/26/2021 06:00:00 AM,06/26/2021 09:00:00 PM,06/19/2021 06:00:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between JOHN STREET and FULTON STREET, JOHN STREET between NASSAU STREET and BROADWAY, 107 STREET between 103 AVENUE and LIBERTY AVENUE, LIBERTY AVENUE between 107 STREET and 108 STREET, LIBERTY AVENUE between 107 STREET and 106 STREET",Manhattan,"1, 10","1, 106",Documentary,Not Applicable,United States of America,"10038, 11417"
+586942,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 08:00:00 PM,06/18/2021 04:29:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 43 ROAD and 44 AVENUE, 9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 10 STREET and 9 STREET",Queens,2,108,Film,Feature,United States of America,11101
+586928,Shooting Permit,06/23/2021 07:00:00 AM,06/23/2021 10:00:00 PM,06/18/2021 03:51:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 56 STREET, WEST 56 STREET between 7 AVENUE and 6 AVENUE, WEST 56 STREET between 7 AVENUE and BROADWAY, WEST 58 STREET between 7 AVENUE and 6 AVENUE, PARK AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022, 10106"
+586898,Theater Load in and Load Outs,06/19/2021 07:00:00 AM,06/29/2021 07:00:00 AM,06/18/2021 02:35:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and 5 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+586897,Shooting Permit,06/20/2021 04:00:00 AM,06/20/2021 11:00:00 AM,06/18/2021 02:32:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+586882,Shooting Permit,06/24/2021 06:00:00 AM,06/24/2021 11:59:00 PM,06/18/2021 01:44:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","FULTON STREET between ST FELIX STREET and FT GREENE PLACE, FULTON STREET between FT GREENE PLACE and SOUTH ELLIOTT PLACE, FULTON STREET between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, FT GREENE PLACE between LAFAYETTE AVENUE and HANSON PLACE, SOUTH ELLIOTT PLACE between FULTON STREET and HANSON PLACE, SOUTH PORTLAND AVENUE between FULTON STREET and HANSON PLACE, LAFAYETTE AVENUE between SOUTH OXFORD STREET and CUMBERLAND STREET, LAFAYETTE AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, LAFAYETTE AVENUE between SOUTH PORTLAND AVENUE and SOUTH OXFORD STREET",Brooklyn,2,88,Television,Episodic series,United States of America,"11217, 11251"
+586878,Shooting Permit,06/23/2021 02:30:00 PM,06/24/2021 05:00:00 AM,06/18/2021 01:26:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 133 STREET between AMSTERDAM AVENUE and OLD BROADWAY, OLD BROADWAY between WEST 133 STREET and WEST 131 STREET, WEST 131 STREET between OLD BROADWAY and BROADWAY, BROADWAY between WEST 132 STREET and WEST 129 STREET, BROADWAY between WEST 129 STREET and WEST 125 STREET, WEST 125 STREET between WEST 129 STREET and BROADWAY, WEST 133 STREET between BROADWAY and 12 AVENUE, 12th Avenue between WEST 133 STREET and WEST 135 STREET, WEST 134TH STREET between 12 AVENUE and BROADWAY",Manhattan,9,"26, 30",Television,Cable-episodic,United States of America,10027
+586860,Shooting Permit,06/25/2021 10:00:00 AM,06/26/2021 12:30:00 AM,06/18/2021 12:39:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+586859,Shooting Permit,06/24/2021 10:00:00 AM,06/25/2021 12:30:00 AM,06/18/2021 12:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 58 DRIVE and FLUSHING AVENUE, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, 56 STREET between FLUSHING AVENUE and GRAND AVENUE",Queens,"1, 5","104, 90",Television,Cable-episodic,United States of America,"11237, 11378"
+586761,Shooting Permit,06/22/2021 06:00:00 AM,06/22/2021 09:00:00 PM,06/18/2021 08:29:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 67 STREET and WEST 68 STREET, WEST 66 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, SECOND AVENUE between EAST 60 STREET and EAST 61 STREET, WEST 125 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD, PARK AVENUE between EAST 107 STREET and EAST 110 STREET, EAST 109 STREET between PARK AVENUE and MADISON AVENUE, EAST 108 STREET between PARK AVENUE and MADISON AVENUE, TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET, EAST 43 STREET between TUDOR CITY PLACE and 2 AVENUE",Manhattan,"10, 11, 6, 64, 7, 8","17, 19, 20, 22, 23, 28",Documentary,Not Applicable,United States of America,"10017, 10022, 10023, 10024, 10025, 10027, 10029, 10065"
+586737,Shooting Permit,06/24/2021 06:00:00 AM,06/24/2021 08:00:00 PM,06/17/2021 11:09:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",5 AVENUE between EAST 70 STREET and EAST 71 STREET,Manhattan,"64, 8","19, 22",Still Photography,Not Applicable,United States of America,"10021, 10065, 10075"
+586725,Shooting Permit,06/25/2021 08:00:00 AM,06/25/2021 08:00:00 PM,06/17/2021 10:46:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 10 AVENUE and 11 AVENUE, BEDFORD STREET between MORTON STREET and COMMERCE STREET",Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,"10001, 10014"
+586682,Shooting Permit,06/23/2021 06:00:00 AM,06/23/2021 08:00:00 PM,06/17/2021 05:39:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 86 STREET and WEST 88 STREET,Manhattan,"5, 64, 7","13, 22, 24",Documentary,Not Applicable,United States of America,"10003, 10023, 10024"
+586677,Shooting Permit,06/20/2021 05:00:00 AM,06/20/2021 10:00:00 PM,06/17/2021 05:19:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,PSA,United States of America,10011
+586633,Shooting Permit,06/24/2021 12:00:00 PM,06/25/2021 02:00:00 AM,06/17/2021 03:28:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, EAST 92 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 94 STREET and EAST 90 STREET, EAST 91 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 90 STREET and EAST 89 STREET, 3 AVENUE between EAST 93 STREET and EAST 88 STREET, EAST 92 STREET between 3 AVENUE and 2 AVENUE, EAST 90 STREET between 3 AVENUE and 2 AVENUE",Brooklyn,"1, 8","19, 94",Television,Cable-episodic,United States of America,"10128, 11222"
+586576,Shooting Permit,06/19/2021 05:00:00 AM,06/19/2021 11:00:00 PM,06/17/2021 01:33:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 6 AVENUE and 7 AVENUE,Manhattan,4,13,Commercial,PSA,United States of America,10011
+586552,Theater Load in and Load Outs,06/26/2021 12:01:00 AM,06/27/2021 06:00:00 AM,06/17/2021 12:45:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 55 STREET between 11 AVENUE and 12 AVENUE, WEST 56 STREET between 11 AVENUE and 12 AVENUE",Manhattan,4,18,Theater,Theater,United States of America,10019
+586551,Shooting Permit,06/24/2021 01:00:00 PM,06/25/2021 02:00:00 AM,06/17/2021 12:42:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",JAMAICA AVENUE between CRESCENT STREET and HEMLOCK STREET,Brooklyn,"5, 6, 9",75,Television,Episodic series,United States of America,"11208, 11375, 11385, 11415, 11421"
+586504,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 10:00:00 PM,06/17/2021 11:01:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+586491,Shooting Permit,06/19/2021 04:00:00 AM,06/19/2021 10:00:00 AM,06/17/2021 10:17:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+586478,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 10:00:00 PM,06/17/2021 09:37:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between NORTH HENRY STREET and HUMBOLDT STREET, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+586472,Shooting Permit,06/18/2021 09:00:00 AM,06/19/2021 02:00:00 AM,06/17/2021 08:53:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+586430,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 12:00:00 PM,06/16/2021 08:17:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EVANS STREET between LITTLE STREET and HUDSON AVENUE, NAVY STREET between HUDSON AVENUE and SANDS STREET",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,11201
+586379,Shooting Permit,06/23/2021 01:00:00 PM,06/24/2021 03:00:00 AM,06/16/2021 04:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between 2 AVENUE and BOWERY, EAST 2 STREET between 2 AVENUE and BOWERY, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and JONES ALLEY, LAFAYETTE STREET between JONES ALLEY and BLEECKER STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET, BOWERY between EAST 2 STREET and EAST 3 STREET, 3rd Avenue between E. 6th St and E. 7th St, 2 AVENUE between EAST 9 STREET and ST MARKS PLACE, ST MARKS PLACE between 2 AVENUE and 1 AVENUE",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+586375,Shooting Permit,06/23/2021 09:00:00 AM,06/24/2021 12:30:00 AM,06/16/2021 04:29:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+586372,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 08:00:00 PM,06/16/2021 04:23:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVE between WASHINGTON AVENUE and HALL STREET,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,"11201, 11205"
+586362,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 09:00:00 PM,06/16/2021 03:58:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between 2 AVENUE and BOWERY, EAST 2 STREET between 2 AVENUE and BOWERY, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and JONES ALLEY, LAFAYETTE STREET between JONES ALLEY and BLEECKER STREET, BLEECKER STREET between MULBERRY STREET and MOTT STREET, BOWERY between EAST 3 STREET and EAST 2 STREET, 3rd Avenue between EAST 6 STREET and E. 7th St, 2 AVENUE between EAST 9 STREET and ST MARKS PLACE, ST MARKS PLACE between 2 AVENUE and 1 AVENUE",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+586340,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 10:00:00 PM,06/16/2021 02:59:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 58 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 59 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6, 8","17, 18, 19",Commercial,Commercial,United States of America,"10022, 10155"
+586341,Shooting Permit,06/22/2021 06:00:00 AM,06/22/2021 10:00:00 PM,06/16/2021 02:59:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 58 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 59 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6, 8","17, 18, 19",Commercial,Commercial,United States of America,"10022, 10155"
+586321,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 09:00:00 PM,06/16/2021 02:09:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 76 STREET and WEST 81 STREET, COLUMBUS AVENUE between WEST 81 STREET and WEST 79 STREET, WEST 81 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 77 STREET and WEST 76 STREET",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10024
+586319,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 10:00:00 PM,06/16/2021 02:06:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","E. 161 STREET between RIVER AVENUE and MACOMBS DAM BRIDGE, RIVER AVENUE between EAST 161 STREET and EAST 158 STREET, JEROME AVENUE between MACOMBS DAM BRIDGE and E. 164 STREET, EAST 164 STREET between JEROME AVENUE and RIVER AVENUE",Bronx,4,44,Commercial,Commercial,United States of America,"10451, 10452"
+586248,Shooting Permit,06/25/2021 11:00:00 AM,06/26/2021 02:00:00 AM,06/16/2021 11:48:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+586239,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 09:00:00 PM,06/16/2021 11:33:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 76 STREET and WEST 81 STREET, COLUMBUS AVENUE between WEST 81 STREET and WEST 79 STREET, WEST 81 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 77 STREET and WEST 76 STREET",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,10024
+586235,Shooting Permit,06/20/2021 10:00:00 AM,06/20/2021 02:00:00 PM,06/16/2021 11:20:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBUS AVENUE between WEST 63 STREET and WEST 65 STREET,Manhattan,7,20,Film,Feature,United States of America,10023
+586234,Shooting Permit,06/22/2021 08:00:00 PM,06/23/2021 05:00:00 AM,06/16/2021 11:20:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","HAMILTON AVE between LUQUER ST and COLUMBIA STREET, RAPELYE STREET between HAMILTON AVENUE and HICKS STREET, COLUMBIA STREET between HAMILTON AVE and WOODHULL STREET",Brooklyn,"1, 6","1, 76",Film,Feature,United States of America,"10004, 11231"
+586232,Shooting Permit,06/19/2021 09:00:00 PM,06/20/2021 09:00:00 AM,06/16/2021 11:20:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 75 STREET and EAST 77 STREET, EAST 76 STREET between MADISON AVENUE and PARK AVENUE, COLUMBUS AVENUE between WEST 65 STREET and WEST 63 STREET, WEST 68 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 69 STREET and WEST 67 STREET",Manhattan,"7, 8","19, 20",Film,Feature,United States of America,"10021, 10023, 10075"
+586233,Shooting Permit,06/21/2021 01:00:00 PM,06/21/2021 11:00:00 PM,06/16/2021 11:20:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","CANNON AVENUE between LEROY STREET and VICTORY BOULEVARD, MEREDITH AVENUE between CANNON AVENUE and SOUTH AVENUE, MEREDITH AVE between SOUTH STREET and CANNON AVE",Staten Island,2,"121, 122",Film,Feature,United States of America,10314
+586194,Shooting Permit,06/23/2021 07:00:00 AM,06/23/2021 11:00:00 PM,06/16/2021 10:27:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+586189,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 10:00:00 PM,06/16/2021 10:18:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 46 STREET between 6 AVENUE and 5 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10036"
+585999,Shooting Permit,07/02/2021 11:00:00 AM,07/03/2021 01:00:00 AM,06/15/2021 06:43:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+585941,Shooting Permit,06/20/2021 06:00:00 AM,06/20/2021 08:00:00 PM,06/15/2021 04:50:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between 38 STREET and STEINWAY STREET, 38 STREET between 19 AVENUE and 20 AVENUE, STEINWAY STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+585922,Shooting Permit,06/19/2021 06:00:00 AM,06/19/2021 08:00:00 PM,06/15/2021 04:31:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE, STEINWAY STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+585869,Shooting Permit,06/18/2021 10:00:00 AM,06/19/2021 02:00:00 AM,06/15/2021 03:10:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between NORTH HENRY STREET and HUMBOLDT STREET, RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+585864,Shooting Permit,06/28/2021 07:00:00 AM,06/28/2021 09:00:00 PM,06/15/2021 03:05:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+585863,Shooting Permit,06/25/2021 02:00:00 PM,06/26/2021 04:00:00 AM,06/15/2021 03:05:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between GRAND STREET and HESTER STREET, CHRYSTIE STREET between HESTER STREET and CANAL STREET, BOWERY between GRAND STREET and HESTER STREET, GREENE STREET between PRINCE STREET and SPRING STREET, GREENE STREET between SPRING STREET and BROOME STREET, SPRING STREET between GREENE STREET and MERCER STREET, MERCER STREET between SPRING STREET and BROOME STREET, BROOME STREET between MERCER STREET and BROADWAY, GRAND STREET between FORSYTH STREET and CHRYSTIE STREET, GRAND STREET between CHRYSTIE STREET and BOWERY, CHRYSTIE STREET between GRAND STREET and BROOME STREET",Manhattan,"2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10012, 10013"
+585862,Shooting Permit,06/24/2021 12:00:00 PM,06/25/2021 03:00:00 AM,06/15/2021 03:05:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between GRAND STREET and HESTER STREET, CHRYSTIE STREET between HESTER STREET and CANAL STREET, BOWERY between GRAND STREET and HESTER STREET, GREENE STREET between PRINCE STREET and SPRING STREET, GREENE STREET between SPRING STREET and BROOME STREET, SPRING STREET between GREENE STREET and MERCER STREET, MERCER STREET between SPRING STREET and BROOME STREET, BROOME STREET between MERCER STREET and BROADWAY, GRAND STREET between FORSYTH STREET and CHRYSTIE STREET, GRAND STREET between CHRYSTIE STREET and BOWERY, CHRYSTIE STREET between GRAND STREET and BROOME STREET",Manhattan,"2, 3","1, 5",Television,Episodic series,United States of America,"10002, 10012, 10013"
+585796,Theater Load in and Load Outs,06/18/2021 12:01:00 AM,07/01/2021 06:00:00 AM,06/15/2021 01:29:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, PARK AVENUE between EAST 66 STREET and EAST 67 STREET",Manhattan,8,19,Theater,Theater,United States of America,10065
+585771,Shooting Permit,06/22/2021 07:30:00 AM,06/22/2021 10:30:00 PM,06/15/2021 12:44:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+585770,Shooting Permit,06/21/2021 06:30:00 AM,06/21/2021 09:00:00 PM,06/15/2021 12:44:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+585766,Shooting Permit,06/18/2021 06:00:00 AM,06/19/2021 01:00:00 AM,06/15/2021 12:37:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+585753,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 02:00:00 PM,06/15/2021 12:15:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between STATE STREET and ATLANTIC AVENUE, ATLANTIC AVENUE between HICKS STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,11201
+585720,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 11:00:00 PM,06/15/2021 11:33:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between MEEKER AVENUE and LORIMER STREET, MEEKER AVENUE between UNION AVENUE and SKILLMAN AVENUE, LORIMER STREET between SKILLMAN AVENUE and CONSELYEA STREET, LORIMER STREET between SKILLMAN AVENUE and JACKSON STREET, MEEKER AVENUE between SKILLMAN AVENUE and WITHERS STREET, WITHERS STREET between MEEKER AVENUE and LEONARD STREET, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, JACKSON STREET between MEEKER AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222"
+585489,Shooting Permit,06/18/2021 07:00:00 AM,06/18/2021 08:30:00 PM,06/14/2021 06:00:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 89 STREET between BEACH CHANNEL DRIVE and GULL COURT, BEACH CHANNEL DRIVE between BEACH 91 STREET and BEACH 89 STREET, BEACH CHANNEL DRIVE between BEACH 89 STREET and BEACH 88 STREET, BEACH CHANNEL DRIVE between OLD BEACH 88 STREET and BEACH 88 STREET, BEACH CHANNEL DRIVE between BEACH 88 STREET and BEACH 89 STREET, BEACH 84 STREET between ROCKAWAY BEACH BOULEVARD and SHORE FRONT PARKWAY, SHORE FRONT PARKWAY between BEACH 81 STREET and BEACH 84 STREET, SHORE FRONT PARKWAY between BEACH 84 STREET and BEACH 90 STREET, BEACH 100TH ST between ROCKAWAY BEACH BOULEVARD and SHORE FRONT PKWY",Queens,14,"100, 101",Television,Cable-episodic,United States of America,"11691, 11693"
+585488,Shooting Permit,06/18/2021 10:00:00 AM,06/19/2021 02:00:00 AM,06/14/2021 06:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","54 STREET between FLUSHING AVENUE and GRAND AVENUE, STARR STREET between METROPOLITAN AVENUE and ONDERDONK AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+585473,Shooting Permit,06/23/2021 07:00:00 AM,06/23/2021 10:00:00 PM,06/14/2021 05:12:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+585470,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 10:00:00 PM,06/14/2021 05:07:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+585461,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 08:00:00 PM,06/14/2021 04:32:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between CENTRAL AVENUE and 64 STREET,Queens,5,104,Documentary,Not Applicable,United States of America,"11379, 11385"
+585448,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 10:00:00 PM,06/14/2021 04:03:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+585442,Shooting Permit,06/17/2021 05:00:00 AM,06/18/2021 01:00:00 AM,06/14/2021 03:44:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between MARLBOROUGH ROAD and EAST 16 STREET, CORTELYOU ROAD between EAST 16 STREET and EAST 17 STREET, CORTELYOU ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+585430,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 08:00:00 PM,06/14/2021 03:24:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARDNER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, GARDNER AVENUE between RANDOLPH STREET and JOHNSON AVENUE, JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE, GRAND STREET between STEWART AVENUE and GARDNER AVENUE, METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE",Brooklyn,"1, 5","104, 90",Film,Feature,United States of America,"11211, 11237, 11378, 11385"
+585402,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 11:59:00 PM,06/14/2021 02:48:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between MARLBOROUGH ROAD and EAST 16 STREET, CORTELYOU ROAD between EAST 16 STREET and EAST 17 STREET, CORTELYOU ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, EAST 19 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+585400,Shooting Permit,06/18/2021 08:00:00 AM,06/18/2021 09:00:00 PM,06/14/2021 02:48:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between FULTON STREET and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and FORT GREENE PLACE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, FORT GREENE PLACE between HANSON PLACE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ST FELIX STREET and FORT GREENE PLACE, LAFAYETTE AVENUE between ROCKWELL PLACE and ASHLAND PLACE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,11217
+585394,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 08:00:00 PM,06/14/2021 02:35:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","ASHLAND PLACE between FULTON STREET and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and FORT GREENE PLACE, FORT GREENE PLACE between HANSON PLACE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between FORT GREENE PLACE and ST FELIX STREET, LAFAYETTE AVENUE between ROCKWELL PLACE and ASHLAND PLACE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,11217
+585384,Theater Load in and Load Outs,06/19/2021 12:01:00 AM,06/21/2021 06:00:00 AM,06/14/2021 02:22:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 7 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+585363,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 11:59:00 PM,06/14/2021 01:44:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between MARLBOROUGH ROAD and EAST 16 STREET, CORTELYOU ROAD between EAST 16 STREET and EAST 17 STREET, CORTELYOU ROAD between EAST 17 STREET and EAST 18 STREET, EAST 17 STREET between CORTELYOU ROAD and DORCHESTER ROAD, EAST 19 STREET between CORTELYOU ROAD and DORCHESTER ROAD, DORCHESTER ROAD between EAST 16 STREET and EAST 17 STREET, DORCHESTER ROAD between EAST 17 STREET and EAST 18 STREET, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 17 STREET and EAST 18 STREET, DITMAS AVENUE between EAST 18 STREET and EAST 19 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+585354,Shooting Permit,06/17/2021 08:00:00 AM,06/17/2021 10:00:00 PM,06/14/2021 01:19:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, PARK AVENUE between EAST 52 STREET and EAST 56 STREET, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+585346,Shooting Permit,06/18/2021 01:00:00 PM,06/19/2021 03:30:00 AM,06/14/2021 01:00:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 3 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 57 STREET and 59 STREET",Brooklyn,7,72,Film,Feature,United States of America,11220
+585323,Shooting Permit,06/26/2021 08:00:00 PM,06/27/2021 08:00:00 AM,06/14/2021 12:09:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",MCDONALD AVENUE between AVENUE P and QUENTIN ROAD,Brooklyn,"11, 15","61, 62",Film,Feature,United States of America,11223
+585217,Shooting Permit,06/21/2021 07:00:00 AM,06/21/2021 09:00:00 PM,06/14/2021 08:52:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","34 AVENUE between 36 STREET and 37 STREET, 36 STREET between 34 AVENUE and BROADWAY, 34 AVENUE between 35 STREET and 36 STREET, 37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+585209,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 09:00:00 PM,06/14/2021 08:08:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","42 AVENUE between 102 STREET and 103 STREET, 103 STREET between 42 AVENUE and 41 AVENUE, 41ST AVE between 103 STREET and 104TH ST, ROOSEVELT AVENUE between 104 STREET and 108 STREET, 104TH ST between ROOSEVELT AVENUE and 41 AVE, 76 AVENUE between 270 STREET and 268 STREET",Queens,"13, 3, 4","105, 110, 115",Commercial,Commercial,United States of America,"11004, 11040, 11368"
+585207,Shooting Permit,06/18/2021 07:00:00 AM,06/18/2021 10:00:00 PM,06/14/2021 07:56:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between WEST HOUSTON STREET and PRINCE STREET, SPRING STREET between WEST SIDE HIGHWAY and WASHINGTON STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"2, 4","1, 10",Commercial,Commercial,United States of America,"10001, 10012, 10013, 10014"
+585189,Shooting Permit,06/18/2021 07:00:00 AM,06/18/2021 07:00:00 PM,06/13/2021 11:33:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",SCHERMERHORN STREET between NEVINS STREET and BOND STREET,Brooklyn,2,"84, 88",Still Photography,Not Applicable,United States of America,"11217, 11238"
+585185,Shooting Permit,06/16/2021 10:00:00 AM,06/17/2021 03:00:00 AM,06/13/2021 10:51:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 45 ROAD and 46 AVENUE, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, 5 STREET between 46 ROAD and 46 AVENUE, 46 ROAD between 5 STREET and VERNON BOULEVARD, 5 STREET between 46 AVENUE and CENTER BOULEVARD",Queens,2,108,Television,Variety,United States of America,11101
+585003,Shooting Permit,06/18/2021 12:00:00 PM,06/18/2021 11:45:00 PM,06/12/2021 10:33:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 7 STREET and EAST 6 STREET, WAVERLY PLACE between GAY STREET and GROVE STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10014"
+585002,Shooting Permit,06/17/2021 06:00:00 PM,06/17/2021 11:00:00 PM,06/12/2021 10:14:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",102 STREET between 86 AVENUE and 86 ROAD,Queens,9,102,Television,Episodic series,United States of America,11418
+584953,Shooting Permit,06/17/2021 11:30:00 AM,06/18/2021 01:00:00 AM,06/11/2021 06:28:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 4 STREET and NORTH 8 STREET, WYTHE AVENUE between NORTH 6 STREET and NORTH 7 STREET, NORTH 5 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+584923,Shooting Permit,06/17/2021 07:00:00 AM,06/18/2021 02:00:00 AM,06/11/2021 04:21:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","107 STREET between 85 AVENUE and 86 AVENUE, JAMAICA AVENUE between 96 STREET and 98 STREET, JAMAICA AVENUE between 102 STREET and 104 STREET, 102 STREET between JAMAICA AVENUE and 86 ROAD, 102 STREET between JAMAICA AVENUE and 87 AVENUE, 86 ROAD between 102 STREET and DEAD END, MYRTLE AVENUE between FREEDOM DRIVE and PARK LANE SOUTH",Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11418, 11421"
+584886,Shooting Permit,06/16/2021 07:00:00 AM,06/16/2021 09:00:00 PM,06/11/2021 03:07:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 40 STREET, WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 8 AVENUE and 7 AVENUE, WEST 45 STREET between 8 AVENUE and 7 AVENUE, WEST 41 STREET between 8 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+584878,Shooting Permit,06/18/2021 06:00:00 AM,06/18/2021 10:00:00 PM,06/11/2021 02:53:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 45 STREET, 2 AVENUE between 45 STREET and 46 STREET",Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+584872,Shooting Permit,06/17/2021 06:00:00 AM,06/17/2021 09:00:00 PM,06/11/2021 02:48:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between 44 STREET and 45 STREET, 2 AVENUE between 45 STREET and 46 STREET",Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+584856,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 09:00:00 PM,06/11/2021 02:14:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",WYCKOFF STREET between BOND STREET and NEVINS STREET,Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11217, 11231"
+584852,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 09:00:00 PM,06/11/2021 02:07:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE,Brooklyn,"1, 5","104, 90",Film,Feature,United States of America,"11211, 11378, 11385"
+584849,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 11:00:00 PM,06/11/2021 02:00:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WOODWARD AVENUE between STARR STREET and STANHOPE STREET",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+584847,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 11:00:00 PM,06/11/2021 01:57:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 43RD STREET between DEAD END and 2ND AVENUE, TUDOR CITY PLACE between EAST 41 STREET and EAST 43 STREET",Manhattan,"5, 6","14, 17",Commercial,Commercial,United States of America,"10016, 10017"
+584817,Shooting Permit,06/15/2021 08:00:00 AM,06/15/2021 08:00:00 PM,06/11/2021 12:51:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 40 STREET, WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 8 AVENUE and 7 AVENUE, WEST 41 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+584803,Shooting Permit,06/17/2021 12:00:00 PM,06/18/2021 02:00:00 AM,06/11/2021 12:37:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 3 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 57 STREET and 59 STREET, 52 STREET between 1 AVENUE and DEAD END",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+584801,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 10:00:00 PM,06/11/2021 12:26:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",CONGRESS STREET between CLINTON STREET and COURT STREET,Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11201, 11231"
+584796,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 07:00:00 PM,06/11/2021 12:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between MONTGOMERY PLACE and 2 STREET, 1 STREET between 8 AVENUE and PROSPECT PARK WEST, 3 STREET between 8 AVENUE and PROSPECT PARK WEST, 8 AVENUE between 2 STREET and 3 STREET, PROSPECT PARK WEST between 2 STREET and 4 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+584794,Shooting Permit,06/16/2021 10:00:00 AM,06/16/2021 11:00:00 PM,06/11/2021 11:53:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, EAST 104 STREET between 5 AVENUE and PARK AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 98 STREET and EAST 102 STREET, EAST 99 STREET between PARK AVENUE and MADISON AVENUE, 3 AVENUE between EAST 104 STREET and EAST 109 STREET, PARK AVENUE between EAST 104 STREET and EAST 103 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+584793,Shooting Permit,06/18/2021 07:00:00 AM,06/18/2021 11:00:00 PM,06/11/2021 11:53:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+584789,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 11:00:00 PM,06/11/2021 11:49:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and GREENPOINT AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+584749,Shooting Permit,06/16/2021 12:00:00 PM,06/17/2021 02:00:00 AM,06/11/2021 10:18:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 3 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 57 STREET and 59 STREET, 52 STREET between 1 AVENUE and DEAD END",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+584697,Shooting Permit,07/04/2021 06:00:00 AM,07/04/2021 11:59:00 PM,06/11/2021 12:39:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 55 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 54 AVENUE and 55 AVENUE",Queens,2,108,Television,Special/Awards Show,United States of America,11101
+584689,Shooting Permit,07/03/2021 06:00:00 AM,07/03/2021 11:59:00 PM,06/11/2021 12:02:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 55 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 54 AVENUE and 55 AVENUE",Queens,2,108,Television,Special/Awards Show,United States of America,11101
+584687,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 07:00:00 PM,06/11/2021 12:00:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",SCHERMERHORN STREET between NEVINS STREET and BOND STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,"11201, 11217"
+584685,Shooting Permit,07/02/2021 07:00:00 AM,07/02/2021 11:59:00 PM,06/10/2021 11:53:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 54 AVENUE and 55 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 2 STREET between 54 AVENUE and 55 AVENUE",Queens,2,108,Television,Special/Awards Show,United States of America,11101
+584665,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 09:00:00 PM,06/10/2021 10:18:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASHLAND PLACE between BEND and LAFAYETTE AVENUE,Brooklyn,2,"84, 88",WEB,Not Applicable,United States of America,"11201, 11217"
+584630,Shooting Permit,06/15/2021 10:00:00 AM,06/15/2021 11:00:00 PM,06/10/2021 07:26:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+584628,Shooting Permit,06/16/2021 07:00:00 AM,06/16/2021 09:00:00 PM,06/10/2021 07:12:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between FRANK MODICA WAY and WEST SIDE OF MANHATTAN BRIDGE, PIKE SLIP between CHERRY STREET and SOUTH STREET, OLD SLIP between SOUTH STREET and FRONT STREET, WATER STREET between NEW DOCK STREET and OLD FULTON STREET",Manhattan,"1, 2, 3, 8","1, 19, 5, 7, 84",Commercial,Commercial,United States of America,"10002, 10004, 10005, 10035, 11201"
+584601,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 11:00:00 PM,06/10/2021 04:48:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10152"
+584591,Shooting Permit,06/12/2021 09:00:00 AM,06/12/2021 10:00:00 PM,06/10/2021 04:13:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","JORALEMON STREET between COURT STREET and CLINTON STREET, DEAN STREET between WASHINGTON AVENUE and GRAND AVENUE",Brooklyn,"2, 8","77, 84",Documentary,Not Applicable,United States of America,"11201, 11238"
+584568,Shooting Permit,06/14/2021 06:00:00 AM,06/14/2021 09:00:00 PM,06/10/2021 03:44:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 27 STREET between MADISON AVENUE and FIFTH AVENUE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 27 STREET, PARK AVENUE SOUTH between EAST 27 STREET and EAST 28 STREET, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, WEST 25 STREET between BROADWAY and 6 AVENUE",Manhattan,5,13,Television,Variety,United States of America,"10010, 10016"
+584549,Shooting Permit,06/14/2021 07:00:00 AM,06/14/2021 10:00:00 PM,06/10/2021 02:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, WOODWARD AVENUE between STARR STREET and STANHOPE STREET",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+584542,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 08:00:00 PM,06/10/2021 02:35:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 20 STREET and WEST 18 STREET, 10 AVENUE between WEST 22 STREET and WEST 20 STREET, WEST 18 STREET between 10 AVENUE and 9 AVENUE, WEST 19 STREET between 10 AVENUE and 9 AVENUE, WEST 20 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 21 STREET and WEST 17 STREET, WEST 24 STREET between 9 AVENUE and 11 AVENUE, 10 AVENUE between WEST 15 STREET and WEST 14 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10011
+584518,Shooting Permit,06/17/2021 07:00:00 AM,06/17/2021 09:30:00 PM,06/10/2021 01:26:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","38 STREET between 36 AVENUE and 35 AVENUE, 38 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 37 STREET and STEINWAY STREET, 37 AVENUE between 35 STREET and 37 STREET, 35 STREET between 37 AVENUE and 38 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,"11101, 11106"
+584491,Shooting Permit,06/13/2021 12:00:00 PM,06/13/2021 11:30:00 PM,06/10/2021 12:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 12 STREET between BOWERY and DEAD END,Brooklyn,13,60,Film,Feature,United States of America,11224
+584482,Shooting Permit,06/18/2021 08:00:00 PM,06/19/2021 09:00:00 AM,06/10/2021 11:57:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 30 STREET and WEST 31 STREET, WEST 31 STREET between 6 AVENUE and 7 AVENUE, WEST 32 STREET between 6 AVENUE and 7 AVENUE, WEST 33 STREET between 6 AVENUE and 7 AVENUE, WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 37 STREET",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018, 10121"
+584465,Shooting Permit,06/17/2021 04:00:00 PM,06/17/2021 11:59:00 PM,06/10/2021 11:22:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+584463,Shooting Permit,06/16/2021 04:00:00 PM,06/16/2021 11:59:00 PM,06/10/2021 11:18:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+584462,Shooting Permit,06/15/2021 04:00:00 PM,06/15/2021 11:59:00 PM,06/10/2021 11:14:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+584459,Shooting Permit,06/14/2021 04:00:00 PM,06/14/2021 11:59:00 PM,06/10/2021 11:03:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 53 STREET and WEST 54 STREET,Manhattan,5,18,Television,Talk Show,United States of America,10019
+584455,Shooting Permit,06/23/2021 09:00:00 AM,06/23/2021 11:00:00 PM,06/10/2021 10:47:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+584447,Shooting Permit,06/22/2021 07:00:00 AM,06/22/2021 09:00:00 PM,06/10/2021 10:41:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+584442,Shooting Permit,06/21/2021 06:00:00 AM,06/21/2021 08:00:00 PM,06/10/2021 10:36:19 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+584427,Shooting Permit,06/14/2021 11:00:00 AM,06/14/2021 11:30:00 PM,06/10/2021 10:18:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between WHITE STREET and WALKER STREET, CHURCH STREET between WALKER STREET and LISPENARD STREET, GREENWICH STREET between BARCLAY STREET and PARK PLACE, MURRAY STREET between WEST STREET and GREENWICH STREET, WEST STREET between MURRAY STREET and VESEY STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY, BARCLAY STREET between CHURCH STREET and BROADWAY, CHURCH STREET between BARCLAY STREET and PARK PLACE, CHURCH STREET between MURRAY STREET and WARREN STREET, WATER STREET between OLD SLIP and JOHN STREET, WHITE STREET between CHURCH STREET and BROADWAY, WEST BROADWAY between WALKER STREET and FRANKLIN ST",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10006, 10007, 10013, 10038, 10282"
+584422,Shooting Permit,06/27/2021 06:00:00 AM,06/27/2021 09:00:00 PM,06/10/2021 10:14:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",SACKETT STREET between 3 AVENUE and NEVINS STREET,Brooklyn,6,78,Commercial,Commercial,United States of America,11217
+584418,Shooting Permit,06/26/2021 06:00:00 AM,06/26/2021 09:00:00 PM,06/10/2021 10:03:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",SACKETT STREET between 3 AVENUE and NEVINS STREET,Brooklyn,6,78,Commercial,Commercial,United States of America,11217
+584415,Shooting Permit,06/18/2021 08:00:00 AM,06/18/2021 10:00:00 PM,06/10/2021 09:49:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 40 STREET, WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 8 AVENUE and 7 AVENUE, WEST 41 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+584414,Shooting Permit,06/17/2021 08:00:00 AM,06/17/2021 10:00:00 PM,06/10/2021 09:48:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 6 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 40 STREET, WEST 40 STREET between 7 AVENUE and 8 AVENUE, WEST 41 STREET between 8 AVENUE and 7 AVENUE, WEST 41 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+584412,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 09:00:00 PM,06/10/2021 09:47:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","HALSEY STREET between THROOP AVENUE and TOMPKINS AVENUE, THROOP AVENUE between HALSEY STREET and MACON STREET",Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+584413,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 09:00:00 PM,06/10/2021 09:47:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between BERGEN STREET and DEAN STREET, BERGEN STREET between BOND STREET and NEVINS STREET, CLERMONT AVENUE between FULTON STREET and GREENE AVENUE, CLERMONT AVENUE between FULTON STREET and ATLANTIC AVENUE",Brooklyn,2,"84, 88",Commercial,Commercial,United States of America,"11217, 11238"
+584382,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 10:00:00 PM,06/10/2021 07:24:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",48 AVENUE between VERNON BOULEVARD and 5 STREET,Queens,2,108,Commercial,Commercial,United States of America,"11101, 11109"
+584381,Shooting Permit,06/14/2021 07:00:00 AM,06/14/2021 10:00:00 PM,06/10/2021 07:15:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","12 AVENUE between WEST 135 STREET and WEST 134 STREET, 12 AVENUE between WEST 134 STREET and WEST 132 STREET",Manhattan,"1, 11, 9","114, 25, 26, 30",Commercial,Commercial,United States of America,"10027, 10031, 10035, 11105"
+584330,Shooting Permit,06/11/2021 08:30:00 AM,06/11/2021 02:00:00 PM,06/09/2021 08:22:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH STREET between JACKSON STREET and GOUVERNEUR SLIP EAST, CHERRY STREET between RUTGERS STREET and CLINTON STREET",Manhattan,"1, 3","5, 7, 9",Documentary,Not Applicable,United States of America,"10002, 10007, 10038"
+584292,Shooting Permit,06/16/2021 01:00:00 PM,06/17/2021 03:00:00 AM,06/09/2021 05:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 38 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 9 AVENUE and 10 AVENUE, WEST 38 STREET between 9 AVENUE and 10 AVENUE, WEST 38 STREET between 8 AVENUE and 9 AVENUE, WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 37 STREET",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10018
+584251,Shooting Permit,06/16/2021 07:00:00 AM,06/16/2021 11:00:00 PM,06/09/2021 03:21:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and GREENPOINT AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+584202,Shooting Permit,06/14/2021 05:00:00 AM,06/14/2021 09:00:00 PM,06/09/2021 01:48:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 10 STREET between 43 ROAD and 44 AVENUE, REVIEW AVENUE between GREENPOINT AVENUE and 37 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD, 37 STREET between REVIEW AVENUE and STARR AVENUE, 37 STREET between STARR AVENUE and BRADLEY AVENUE, BRADLEY AVENUE between GREENPOINT AVENUE and 37 STREET, GREENPOINT AVENUE between STARR AVENUE and BRADLEY AVENUE, BRADLEY AVENUE between 35 STREET and GREENPOINT AVENUE, 35 STREET between BRADLEY AVENUE and GALE AVENUE, GREENPOINT AVENUE between BRADLEY AVENUE and GALE AVENUE, GALE AVENUE between 35 STREET and GREENPOINT AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+584183,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 10:00:00 PM,06/09/2021 01:13:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between MADISON AVENUE and 5 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 43 STREET, WEST 35 STREET between 5 AVENUE and 6 AVENUE, WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 36 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 37 STREET",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,"10001, 10017, 10018, 10173"
+584151,Shooting Permit,06/14/2021 09:00:00 AM,06/14/2021 11:00:00 PM,06/09/2021 11:58:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between 3 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 4 AVENUE between 57 STREET and 59 STREET, 52 STREET between 1 AVENUE and DEAD END",Brooklyn,7,72,Film,Feature,United States of America,"11220, 11232"
+584148,Shooting Permit,06/11/2021 11:00:00 AM,06/12/2021 03:00:00 AM,06/09/2021 11:52:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+584146,Shooting Permit,06/16/2021 06:30:00 AM,06/16/2021 09:00:00 PM,06/09/2021 11:49:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+584128,Theater Load in and Load Outs,06/17/2021 06:00:00 AM,06/20/2021 05:00:00 AM,06/09/2021 11:10:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 50 STREET between ROCKEFELLER PLAZA and 6 AVENUE, WEST 51 STREET between 6 AVENUE and ROCKEFELLER PLAZA",Manhattan,5,18,Theater,Theater,United States of America,"10019, 10020, 10112"
+584100,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 10:00:00 PM,06/09/2021 09:26:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between HURON STREET and EAGLE STREET",Brooklyn,1,94,Television,Variety,United States of America,11222
+584099,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 08:00:00 PM,06/09/2021 09:18:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+584096,Shooting Permit,06/14/2021 06:00:00 AM,06/14/2021 08:00:00 PM,06/09/2021 09:15:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+584094,Shooting Permit,06/11/2021 08:00:00 AM,06/11/2021 10:00:00 PM,06/09/2021 09:11:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+584093,Shooting Permit,06/10/2021 08:00:00 AM,06/10/2021 10:00:00 PM,06/09/2021 09:10:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+584077,Theater Load in and Load Outs,06/21/2021 06:00:00 AM,06/24/2021 06:00:00 AM,06/09/2021 07:55:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+584074,Shooting Permit,06/14/2021 07:00:00 AM,06/14/2021 09:00:00 PM,06/09/2021 07:42:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 46 STREET between 8 AVENUE and BROADWAY, WEST 45 STREET between 8 AVENUE and BROADWAY, WEST 44 STREET between 8 AVENUE and 7 AVENUE, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10019, 10020, 10036"
+584004,Shooting Permit,06/18/2021 01:00:00 PM,06/19/2021 03:00:00 AM,06/08/2021 06:54:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between 21 STREET and SKILLMAN AVENUE, 21ST STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+584003,Shooting Permit,06/17/2021 12:00:00 PM,06/18/2021 02:00:00 AM,06/08/2021 06:54:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between 21 STREET and SKILLMAN AVENUE, 21 STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+584002,Shooting Permit,06/16/2021 07:00:00 AM,06/16/2021 09:00:00 PM,06/08/2021 06:54:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between 21 STREET and SKILLMAN AVENUE, 21 STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+584001,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 09:00:00 PM,06/08/2021 06:54:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between 21 STREET and SKILLMAN AVENUE, 21 STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+584000,Shooting Permit,06/14/2021 07:00:00 AM,06/14/2021 09:00:00 PM,06/08/2021 06:54:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 21 STREET and 11 PLACE, 49 AVENUE between 21 STREET and SKILLMAN AVENUE, 21 STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+583981,Shooting Permit,06/11/2021 08:00:00 AM,06/11/2021 11:00:00 PM,06/08/2021 05:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+583941,Shooting Permit,06/11/2021 09:00:00 AM,06/12/2021 02:00:00 AM,06/08/2021 03:58:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","218 ST between DEAD END and 40 AVE, 218 ST between 40 AVENUE and DEAD END, 40 AVENUE between 218 STREET and 219 STREET, 39 AVENUE between 217 STREET and 216 STREET, 39 AVENUE between 216 STREET and 215 PLACE, 39 AVENUE between 215 PLACE and 215 STREET, 39 AVENUE between 215 STREET and 214 PLACE, 214 PLACE between 39 AVENUE and 40 AVENUE, 39 AVENUE between 214 PLACE and CORPORAL STONE STREET, 39 AVENUE between CORPORAL STONE STREET and BELL BOULEVARD, 39 AVENUE between BELL BOULEVARD and 213 STREET, 40 AVENUE between BELL BOULEVARD and 214 PLACE, 214 PLACE between 40 AVENUE and 41 AVENUE, BELL BOULEVARD between 41 AVENUE and 42 AVENUE, BELL BOULEVARD between 42 AVENUE and 43 AVENUE",Queens,11,111,Television,Episodic series,United States of America,11361
+583935,Shooting Permit,06/14/2021 06:00:00 AM,06/14/2021 08:00:00 PM,06/08/2021 03:42:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, NORTH 12 STREET between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, BERRY STREET between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+583929,Shooting Permit,06/15/2021 07:00:00 AM,06/15/2021 07:00:00 PM,06/08/2021 03:31:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 58 STREET between 11 AVENUE and 10 AVENUE,Manhattan,"4, 5, 64","18, 22",Still Photography,Not Applicable,United States of America,"10019, 10022"
+583927,Shooting Permit,06/11/2021 07:00:00 AM,06/11/2021 09:00:00 PM,06/08/2021 03:27:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between AVENUE H and WELLINGTON COURT, WELLINGTON COURT between RUGBY ROAD and DEAD END",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+583916,Shooting Permit,06/10/2021 07:00:00 AM,06/10/2021 09:00:00 PM,06/08/2021 03:06:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between WALDORF COURT and WELLINGTON COURT, RUGBY ROAD between AVENUE H and WELLINGTON COURT",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+583885,Shooting Permit,06/10/2021 12:00:00 AM,06/10/2021 08:00:00 PM,06/08/2021 02:04:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK WEST between WEST 71 STREET and WEST 72 STREET,Manhattan,"64, 7, 9","20, 22",Documentary,Not Applicable,United States of America,"10023, 10024"
+583847,Shooting Permit,06/11/2021 04:00:00 AM,06/11/2021 10:00:00 PM,06/08/2021 12:59:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,News,United States of America,"10036, 10105"
+583826,Shooting Permit,06/11/2021 04:30:00 PM,06/12/2021 05:00:00 AM,06/08/2021 12:17:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 52 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 55 STREET and EAST 59 STREET, EAST 56 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152, 10154"
+583790,Shooting Permit,06/11/2021 06:00:00 AM,06/11/2021 07:00:00 PM,06/08/2021 11:01:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",PROVOST STREET between HURON STREET and EAGLE STREET,Brooklyn,1,94,Television,Variety,United States of America,11222
+583772,Shooting Permit,06/17/2021 08:00:00 AM,06/17/2021 10:00:00 PM,06/08/2021 10:22:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","STRATFORD ROAD between ALBEMARLE ROAD and CHURCH AVENUE, WESTMINSTER ROAD between ALBEMARLE ROAD and CHURCH AVENUE, CHURCH AVENUE between WESTMINSTER ROAD and STRATFORD ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+583732,Shooting Permit,06/10/2021 10:00:00 AM,06/11/2021 12:00:00 AM,06/08/2021 08:18:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between BRIDGE STREET and GOLD STREET, YORK STREET between BRIDGE STREET and GOLD STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, GOLD STREET between FRONT STREET and SANDS STREET, PROSPECT ST between JAY ST and BRIDGE ST, YORK STREET between GOLD STREET and NAVY STREET, NAVY STREET between YORK STREET and SANDS STREET, SANDS STREET between GOLD STREET and NAVY STREET, YORK STREET between BRIDGE STREET and GOLD STREET",Brooklyn,2,"84, 88",Film,Feature,United States of America,11201
+583712,Shooting Permit,06/16/2021 07:00:00 AM,06/16/2021 07:00:00 PM,06/07/2021 10:47:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between 5 AVENUE and PARK AVENUE SOUTH,Manhattan,"2, 3, 5","13, 6, 9",Still Photography,Not Applicable,United States of America,"10003, 10010, 10011"
+583668,Shooting Permit,06/10/2021 01:00:00 AM,06/10/2021 01:00:00 PM,06/07/2021 06:08:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+583666,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 11:00:00 PM,06/07/2021 06:03:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+583589,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 03:00:00 PM,06/07/2021 02:11:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","CARROLL STREET between CLINTON STREET and COURT STREET, COURT STREET between SACKETT STREET and 1 PLACE, CLINTON STREET between CARROLL STREET and PRESIDENT STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+583562,Shooting Permit,06/10/2021 03:30:00 PM,06/11/2021 04:30:00 AM,06/07/2021 01:16:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, FULTON STREET between BROADWAY and NASSAU STREET, NASSAU STREET between JOHN STREET and FULTON STREET, GOLD STREET between ANN STREET and SPRUCE STREET, FULTON STREET between GOLD STREET and PEARL STREET, 6 AVENUE between CHURCH STREET and WHITE STREET, FRANKLIN STREET between CHURCH STREET and BROADWAY, PEARL STREET between PECK SLIP and FULTON STREET, WATER STREET between OLD SLIP and WALL STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10013, 10038"
+583524,Shooting Permit,06/11/2021 01:00:00 PM,06/12/2021 02:00:00 AM,06/07/2021 12:24:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOLLYWOOD AVENUE between CENTER DRIVE and EAST DRIVE, EAST DRIVE between MANOR ROAD and PARK LANE, CENTER DRIVE between HOLLYWOOD AVENUE and ARLEIGH ROAD, ARLEIGH ROAD between EAST DRIVE and CENTER DRIVE",Queens,11,111,Television,Episodic series,United States of America,11363
+583521,Shooting Permit,06/10/2021 09:00:00 AM,06/11/2021 01:00:00 AM,06/07/2021 12:23:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 47 STREET and EAST 49 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 99 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 100 STREET and EAST 102 STREET, PARK AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 101 STREET and EAST 104 STREET, EAST 102 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 103 STREET and EAST 104 STREET",Manhattan,"11, 5, 6","17, 18, 23",Television,Episodic series,United States of America,"10017, 10022, 10029, 10152, 10171, 10172"
+583498,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 08:00:00 PM,06/07/2021 11:38:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between BUTLER STREET and UNION STREET,Brooklyn,6,"76, 78",Commercial,Commercial,United States of America,"11217, 11231"
+583490,Shooting Permit,06/09/2021 09:00:00 AM,06/09/2021 06:00:00 PM,06/07/2021 11:03:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Television,Reality,United States of America,10018
+583474,Shooting Permit,06/11/2021 01:00:00 PM,06/12/2021 03:00:00 AM,06/07/2021 10:35:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+583465,Shooting Permit,06/11/2021 06:00:00 AM,06/11/2021 09:00:00 PM,06/07/2021 10:18:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 33 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,WEB,Not Applicable,United States of America,10001
+583454,Shooting Permit,06/09/2021 11:00:00 AM,06/09/2021 11:00:00 PM,06/07/2021 09:57:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 61 STREET between RIVERSIDE BOULEVARD and WEST END AVENUE, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 62 STREET, WEST 60 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, COLUMBUS AVENUE between WEST 59 STREET and WEST 60 STREET, FREEDOM PLACE SOUTH between WEST 60 STREET and WEST 64 STREET, WEST END AVENUE between WEST 60 STREET and WEST 63 STREET, WEST 63 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Manhattan,"1, 4, 7","18, 20, 94",Television,Cable-episodic,United States of America,"10023, 10069, 11222"
+583444,Shooting Permit,06/14/2021 06:30:00 AM,06/14/2021 08:00:00 PM,06/07/2021 09:37:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+583442,Shooting Permit,06/19/2021 11:00:00 AM,06/20/2021 01:00:00 AM,06/07/2021 09:33:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+583437,Shooting Permit,06/18/2021 10:00:00 AM,06/18/2021 11:59:00 PM,06/07/2021 09:13:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+583433,Shooting Permit,06/09/2021 08:30:00 AM,06/09/2021 10:00:00 PM,06/07/2021 09:03:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, FULTON STREET between BROADWAY and NASSAU STREET, NASSAU STREET between JOHN STREET and FULTON STREET, GOLD STREET between ANN STREET and SPRUCE STREET, FULTON STREET between GOLD STREET and PEARL STREET, 6 AVENUE between CHURCH STREET and WHITE STREET, FRANKLIN STREET between CHURCH STREET and BROADWAY, PEARL STREET between PECK SLIP and FULTON STREET, WATER STREET between OLD SLIP and WALL STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10013, 10038"
+583420,Shooting Permit,06/11/2021 06:00:00 AM,06/11/2021 10:00:00 PM,06/07/2021 08:02:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","SANDS STREET between ADAMS STREET and JAY STREET, PEARL STREET between SANDS STREET and HIGH STREET, HIGH STREET between JAY STREET and PEARL STREET, YORK STREET between ADAMS STREET and PEARL STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+583215,Shooting Permit,06/11/2021 06:30:00 PM,06/12/2021 06:30:00 AM,06/04/2021 10:04:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRUCKNER BOULEVARD between 3 AVENUE and LINCOLN AVENUE, 3 AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, EAST 134 STREET between 3 AVENUE and LINCOLN AVENUE, EAST 134 STREET between LINCOLN AVENUE and ALEXANDER AVENUE, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 132 STREET, 3 AVENUE between BRUCKNER BOULEVARD and EAST 134 STREET, ALEXANDER AVENUE between EAST 132 STREET and BRUCKNER BOULEVARD, BRUCKNER BOULEVARD between ALEXANDER AVENUE and WILLIS AVENUE, WILLIS AVENUE between BRUCKNER BOULEVARD and EAST 132 STREET, BRUCKNER BOULEVARD between WILLIS AVENUE and EAST 132 STREET",Bronx,1,40,Television,Episodic series,United States of America,"10451, 10454"
+583212,Shooting Permit,06/10/2021 06:30:00 PM,06/11/2021 06:30:00 AM,06/04/2021 09:49:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRUCKNER BOULEVARD between 3 AVENUE and LINCOLN AVENUE, 3 AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, EAST 134 STREET between 3 AVENUE and LINCOLN AVENUE, EAST 134 STREET between LINCOLN AVENUE and ALEXANDER AVENUE, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 132 STREET, 3 AVENUE between BRUCKNER BOULEVARD and EAST 134 STREET, ALEXANDER AVENUE between EAST 132 STREET and BRUCKNER BOULEVARD, BRUCKNER BOULEVARD between ALEXANDER AVENUE and WILLIS AVENUE, WILLIS AVENUE between BRUCKNER BOULEVARD and EAST 132 STREET, BRUCKNER BOULEVARD between WILLIS AVENUE and EAST 132 STREET",Bronx,1,40,Television,Episodic series,United States of America,"10451, 10454"
+583208,Shooting Permit,06/09/2021 03:30:00 PM,06/10/2021 05:00:00 AM,06/04/2021 08:52:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRUCKNER BOULEVARD between 3 AVENUE and LINCOLN AVENUE, 3 AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 135 STREET, EAST 134 STREET between 3 AVENUE and LINCOLN AVENUE, EAST 134 STREET between LINCOLN AVENUE and ALEXANDER AVENUE, LINCOLN AVENUE between BRUCKNER BOULEVARD and EAST 132 STREET, 3 AVENUE between BRUCKNER BOULEVARD and EAST 134 STREET, ALEXANDER AVENUE between EAST 132 STREET and BRUCKNER BOULEVARD, BRUCKNER BOULEVARD between ALEXANDER AVENUE and WILLIS AVENUE, WILLIS AVENUE between BRUCKNER BLVD and EAST 132 STREET, BRUCKNER BOULEVARD between WILLIS AVENUE and EAST 132 STREET",Bronx,1,40,Television,Episodic series,United States of America,"10451, 10454"
+583187,Shooting Permit,06/11/2021 10:30:00 AM,06/12/2021 12:30:00 AM,06/04/2021 05:50:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","NOLL STREET between EVERGREEN AVENUE and STANWIX STREET, INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,"1, 4","83, 90",Television,Cable-episodic,United States of America,"11206, 11237"
+583183,Shooting Permit,06/09/2021 06:00:00 AM,06/09/2021 08:00:00 PM,06/04/2021 05:39:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",HERKIMER STREET between TROY AVENUE and ALBANY AVENUE,Brooklyn,3,81,Commercial,Industrial/Corporate,United States of America,11213
+583158,Shooting Permit,06/08/2021 07:00:00 AM,06/08/2021 10:00:00 PM,06/04/2021 04:49:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+583151,Shooting Permit,06/10/2021 07:00:00 AM,06/10/2021 10:00:00 PM,06/04/2021 04:32:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 114 STREET and WEST 119 STREET, WEST 120 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 120 STREET and WEST 116 STREET, BROADWAY between WEST 114 STREET and WEST 116 STREET, BROADWAY between WEST 114 STREET and WEST 113 STREET, 12TH AVE between WEST 130 STREET and WEST 133 STREET",Manhattan,9,"26, 30",Television,Episodic series,United States of America,"10024, 10025, 10027"
+583144,Shooting Permit,06/10/2021 10:00:00 AM,06/10/2021 11:59:00 PM,06/04/2021 04:11:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+583140,Shooting Permit,06/11/2021 02:00:00 PM,06/12/2021 04:00:00 AM,06/04/2021 04:05:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 27 STREET, WEST 28 STREET between 12 AVENUE and 11 AVENUE, WEST 27 STREET between 12 AVENUE and 11 AVENUE, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 28 STREET and WEST 26 STREET, WEST 112 STREET between ADAM CLAYTON POWELL JR BOULEVARD and SAINT NICHOLAS AVENUE, SAINT NICHOLAS AVENUE between WEST 112 STREET and WEST 111 STREET, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and SAINT NICHOLAS AVENUE, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between CENTRAL PARK NORTH and WEST 111 STREET, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, W 116TH STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS CIRCLE, ADAM CLAYTON POWELL BOULEVARD between WEST 111 STREET and WEST 112 STREET, WEST 112 STREET between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD",Manhattan,"10, 4, 64","10, 22, 28",Television,Cable-episodic,United States of America,"10001, 10026"
+583123,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 07:00:00 PM,06/04/2021 03:22:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 6 STREET between KENT AVENUE and NORTH 6 PLACE, NORTH 5 STREET between NORTH 4 PLACE and KENT AVENUE",Brooklyn,1,94,Commercial,Commercial,United States of America,"11211, 11249"
+583116,Shooting Permit,06/09/2021 02:00:00 PM,06/10/2021 06:00:00 AM,06/04/2021 03:11:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH AVENUE between JANE STREET and WEST 12 STREET, GREENWICH AVENUE between WEST 12 STREET and 7 AVENUE, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between PERRY STREET and CHARLES STREET, GREENWICH AVENUE between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between WEST 10 STREET and CHRISTOPHER STREET, CHARLES STREET between WAVERLY PLACE and GREENWICH AVENUE, WAVERLY PLACE between CHARLES STREET and WEST 10 STREET, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"2, 4","13, 6",Television,Episodic series,United States of America,"10011, 10014"
+583110,Shooting Permit,06/09/2021 06:00:00 AM,06/09/2021 08:00:00 PM,06/04/2021 03:01:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 25 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+583084,Theater Load in and Load Outs,06/05/2021 11:00:00 AM,06/08/2021 07:00:00 AM,06/04/2021 02:07:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+583083,Shooting Permit,06/09/2021 06:00:00 AM,06/09/2021 07:00:00 PM,06/04/2021 02:05:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",REMSEN STREET between CLINTON STREET and COURT STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+583072,DCAS Prep/Shoot/Wrap Permit,06/09/2021 07:00:00 AM,06/09/2021 12:00:00 PM,06/04/2021 01:55:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",REMSEN STREET between COURT STREET and CLINTON STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+583052,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 10:00:00 PM,06/04/2021 01:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+583028,Shooting Permit,06/08/2021 08:00:00 AM,06/08/2021 08:30:00 PM,06/04/2021 12:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",WATER STREET between DOCK STREET and MAIN STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+582980,Shooting Permit,06/08/2021 03:00:00 PM,06/08/2021 09:00:00 PM,06/04/2021 10:33:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between 12 STREET and 13 STREET, 7 AVENUE between 13 STREET and 14 STREET",Brooklyn,6,78,WEB,Not Applicable,United States of America,11215
+582922,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 10:00:00 PM,06/03/2021 11:30:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 23 STREET and EAST 24 STREET, WEST 24 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,13,Commercial,Commercial,United States of America,10010
+582857,Shooting Permit,06/08/2021 07:00:00 AM,06/08/2021 11:00:00 PM,06/03/2021 05:16:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 66 STREET and EAST 65 STREET, EAST 65 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, MADISON AVENUE between EAST 65 STREET and EAST 66 STREET, MADISON AVENUE between EAST 66 STREET and EAST 67 STREET, 5 AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between 5 AVENUE and MADISON AVENUE, EAST 66 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10065
+582826,Shooting Permit,06/11/2021 03:00:00 PM,06/12/2021 02:00:00 AM,06/03/2021 04:07:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 7 AVENUE and 6 AVENUE, WEST 45 STREET between 7 AVENUE and 6 AVENUE, WEST 44 STREET between BROADWAY and 6 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 43 STREET, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,10036
+582822,Shooting Permit,06/10/2021 12:00:00 PM,06/11/2021 03:00:00 AM,06/03/2021 03:57:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, 8 AVENUE between UNION STREET and LINCOLN PLACE, LINCOLN PLACE between 8 AVENUE and PLAZA STREET WEST, PLAZA STREET WEST between LINCOLN PLACE and FLATBUSH AVENUE, 8 AVENUE between ST JOHN PLACE and LINCOLN PLACE, UNION STREET between 8 AVENUE and PLAZA STREET WEST, BERKELEY PLACE between 8 AVENUE and 7 AVENUE, 7 AVENUE between CARROLL STREET and 2 STREET, 1 STREET between 7 AVENUE and 6 AVENUE",Brooklyn,"1, 6","78, 94",Television,Cable-episodic,United States of America,"11215, 11217, 11222"
+582793,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 09:00:00 PM,06/03/2021 02:44:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, VANDERBILT AVENUE between EAST 47 STREET and EAST 46 STREET, PARK AVENUE between EAST 46 STREET and EAST 47 STREET",Manhattan,5,18,Commercial,Industrial/Corporate,United States of America,"10017, 10019, 10020, 10022, 10167, 10177"
+582780,Shooting Permit,06/09/2021 11:00:00 AM,06/10/2021 02:00:00 AM,06/03/2021 02:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 61 STREET between RIVERSIDE BOULEVARD and WEST END AVENUE, RIVERSIDE BOULEVARD between WEST 61 STREET and WEST 62 STREET, WEST 60 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, COLUMBUS AVENUE between WEST 59 STREET and WEST 60 STREET, FREEDOM PLACE SOUTH between WEST 60 STREET and WEST 64 STREET, WEST END AVENUE between WEST 60 STREET and WEST 63 STREET, WEST 63 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, RIVERSIDE BOULEVARD between WEST 68 STREET and WEST 69 STREET",Manhattan,"4, 7","18, 20",Television,Cable-episodic,United States of America,"10023, 10069"
+582768,Shooting Permit,06/07/2021 06:00:00 AM,06/07/2021 09:00:00 PM,06/03/2021 01:30:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIKE STREET between MADISON STREET and CHERRY STREET, EAST BROADWAY between JEFFERSON STREET and RUTGERS STREET, BEAVER STREET between HANOVER STREET and PEARL STREET, FRONT STREET between OLD SLIP and WALL STREET",Manhattan,"1, 3","1, 5, 7",Commercial,Industrial/Corporate,United States of America,"10002, 10004, 10005"
+582765,Shooting Permit,06/08/2021 10:00:00 AM,06/09/2021 03:00:00 AM,06/03/2021 01:27:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between JANE STREET and WEST 12 STREET, GREENWICH AVENUE between WEST 12 STREET and 7 AVENUE, 7 AVENUE SOUTH between WEST 11 STREET and PERRY STREET, 7 AVENUE SOUTH between PERRY STREET and CHARLES STREET, 7 AVENUE SOUTH between CHARLES STREET and WEST 10 STREET, GREENWICH AVENUE between PERRY STREET and CHARLES STREET, GREENWICH STREET between CHARLES STREET and WEST 10 STREET, GREENWICH STREET between WEST 10 STREET and CHRISTOPHER STREET, CHARLES STREET between GREENWICH STREET and WAVERLY PLACE, WAVERLY PLACE between CHARLES STREET and WEST 10 STREET, WEST 11 STREET between WEST 4 STREET and WAVERLY PLACE, WEST 18 STREET between 6 AVENUE and 7 AVENUE, WEST 10 STREET between GREENWICH AVENUE and 6 AVENUE",Manhattan,"2, 4","13, 6",Television,Episodic series,United States of America,"10011, 10014"
+582757,Shooting Permit,06/07/2021 06:00:00 AM,06/07/2021 07:00:00 PM,06/03/2021 01:00:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, NORTH 9 STREET between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,94,Still Photography,Not Applicable,United States of America,11249
+582755,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 08:00:00 PM,06/03/2021 12:55:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between WAVERLY AVENUE and CLINTON AVENUE, MYRTLE AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+582711,Shooting Permit,06/11/2021 01:00:00 PM,06/12/2021 04:00:00 AM,06/03/2021 11:28:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between BRIDGE STREET and GOLD STREET, YORK STREET between BRIDGE STREET and GOLD STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, GOLD STREET between FRONT STREET and SANDS STREET, PROSPECT ST between JAY ST and BRIDGE ST, YORK STREET between GOLD STREET and NAVY STREET, NAVY STREET between YORK STREET and SANDS STREET, SANDS STREET between GOLD STREET and NAVY STREET",Brooklyn,2,"84, 88",Film,Feature,United States of America,11201
+582695,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 09:00:00 PM,06/03/2021 10:26:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRONT STREET between BRIDGE STREET and GOLD STREET, YORK STREET between BRIDGE STREET and GOLD STREET, BRIDGE STREET between YORK STREET and PROSPECT STREET, GOLD STREET between FRONT STREET and SANDS STREET, PROSPECT ST between JAY ST and BRIDGE ST, YORK STREET between GOLD STREET and NAVY STREET, NAVY STREET between YORK STREET and SANDS STREET, SANDS STREET between GOLD STREET and NAVY STREET",Brooklyn,2,"84, 88",Film,Feature,United States of America,11201
+582682,Shooting Permit,06/16/2021 06:00:00 AM,06/16/2021 11:59:00 PM,06/03/2021 09:54:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Cable-other,United States of America,10018
+582683,Shooting Permit,06/17/2021 06:00:00 AM,06/17/2021 11:59:00 PM,06/03/2021 09:54:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Cable-other,United States of America,10018
+582680,Shooting Permit,06/14/2021 06:00:00 AM,06/14/2021 11:59:00 PM,06/03/2021 09:54:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Cable-other,United States of America,10018
+582681,Shooting Permit,06/15/2021 06:00:00 AM,06/15/2021 11:59:00 PM,06/03/2021 09:54:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Cable-other,United States of America,10018
+582679,Shooting Permit,06/13/2021 06:00:00 AM,06/13/2021 11:59:00 PM,06/03/2021 09:54:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 40 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Television,Cable-other,United States of America,10018
+582647,Shooting Permit,06/17/2021 05:00:00 AM,06/17/2021 11:59:00 PM,06/03/2021 12:01:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 55 AVENUE and 54 AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 2 AVE between 54 STREET and 55 STREET",Queens,"2, 6","108, 17",Television,Special/Awards Show,United States of America,"10022, 11101"
+582618,Shooting Permit,06/08/2021 08:00:00 AM,06/08/2021 08:00:00 PM,06/02/2021 09:25:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 101 STREET and EAST 98 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 104 STREET and EAST 102 STREET, LEXINGTON AVENUE between EAST 104 STREET and EAST 109 STREET, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+582578,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 10:00:00 PM,06/02/2021 05:34:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+582532,Shooting Permit,06/10/2021 01:00:00 PM,06/11/2021 02:00:00 AM,06/02/2021 04:37:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between VANDERBILT AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+582531,Shooting Permit,06/09/2021 01:00:00 PM,06/10/2021 11:00:00 PM,06/02/2021 04:37:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between VANDERBILT AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 42 STREET, WEST 45 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10036, 10173"
+582499,Shooting Permit,06/09/2021 09:00:00 AM,06/09/2021 11:00:00 PM,06/02/2021 03:21:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","38 STREET between 36 AVENUE and 35 AVENUE, 38 STREET between 35 AVENUE and 34 AVENUE, 35 AVENUE between 37 STREET and STEINWAY STREET, STEINWAY STREET between 34 AVENUE and 35 AVENUE",Queens,1,114,Television,Cable-episodic,United States of America,"11101, 11106"
+582475,Shooting Permit,06/08/2021 07:00:00 AM,06/08/2021 10:00:00 PM,06/02/2021 02:37:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BRUNT STREET between DEAD END and BEARD STREET, VAN BRUNT STREET between BEARD STREET and VAN DYKE STREET, BEARD STREET between VAN BRUNT STREET and RICHARDS STREET, VAN DYKE STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between VAN DYKE STREET and BEARD STREET, VAN BRUNT STREET between VAN DYKE STREET and DIKEMAN STREET, VAN DYKE STREET between CONOVER STREET and VAN BRUNT STREET, VAN DYKE STREET between DWIGHT STREET and RICHARDS STREET, BEARD STREET between CONOVER STREET and VAN BRUNT STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+582461,Shooting Permit,06/07/2021 09:00:00 AM,06/08/2021 02:00:00 AM,06/02/2021 02:04:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, HUDSON STREET between GROVE STREET and BARROW STREET, HUDSON STREET between BARROW STREET and MORTON STREET, HUDSON STREET between MORTON STREET and LEROY STREET, LEROY STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between MORTON STREET and LEROY STREET, GREENWICH STREET between LEROY STREET and CLARKSON STREET, GREENWICH STREET between CLARKSON STREET and WEST HOUSTON STREET, CLARKSON STREET between WASHINGTON STREET and GREENWICH STREET, CLARKSON STREET between GREENWICH STREET and HUDSON STREET, 7 AVENUE SOUTH between COMMERCE STREET and MORTON STREET, 7 AVENUE SOUTH between BEDFORD STREET and LEROY STREET, 7 AVENUE SOUTH between LEROY STREET and CLARKSON STREET, LEROY ST between 7 AVENUE SOUTH and HUDSON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+582447,Shooting Permit,06/07/2021 06:00:00 AM,06/07/2021 09:00:00 PM,06/02/2021 01:41:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",BAYVIEW AVENUE between SEA GATE AVENUE and WEST 36 STREET,Brooklyn,13,60,Commercial,Commercial,United States of America,11224
+582436,Shooting Permit,06/04/2021 06:30:00 AM,06/04/2021 08:00:00 PM,06/02/2021 01:17:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",FORSYTH STREET between CANAL STREET and DIVISION STREET,Manhattan,3,"5, 7",Still Photography,Not Applicable,United States of America,10002
+582422,Shooting Permit,06/08/2021 06:00:00 AM,06/08/2021 05:00:00 PM,06/02/2021 12:54:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 30 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,"10001, 10018"
+582337,Shooting Permit,06/04/2021 07:00:00 AM,06/04/2021 08:00:00 PM,06/02/2021 10:46:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 3 STREET between 6 AVENUE and MACDOUGAL STREET,Manhattan,"2, 4, 5","13, 14, 18, 6",Still Photography,Not Applicable,United States of America,"10001, 10003, 10010, 10011, 10012, 10014, 10018, 10019, 10020, 10036, 10105, 10119"
+582326,Shooting Permit,06/07/2021 09:00:00 AM,06/07/2021 09:00:00 PM,06/02/2021 10:24:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET, WATER STREET between DOCK STREET and MAIN STREET",Queens,2,"108, 84",Television,Episodic series,United States of America,"11101, 11201"
+582322,Shooting Permit,06/04/2021 10:30:00 AM,06/05/2021 01:00:00 AM,06/02/2021 10:18:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",WOODWARD AVENUE between CATALPA AVENUE and CORNELIA STREET,Brooklyn,"1, 5","104, 94",Commercial,Commercial,United States of America,"11211, 11385"
+582313,Shooting Permit,06/07/2021 06:00:00 AM,06/07/2021 08:00:00 PM,06/02/2021 10:07:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and 4 AVENUE, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+582269,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 09:00:00 PM,06/01/2021 10:52:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEVINS STREET between BUTLER STREET and UNION STREET,Brooklyn,6,78,Commercial,Commercial,United States of America,11217
+582208,Shooting Permit,06/08/2021 03:00:00 AM,06/08/2021 08:00:00 PM,06/01/2021 06:29:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between MYRTLE AVENUE and PARK AVENUE, MYRTLE AVENUE between CLINTON AVENUE and WAVERLY AVENUE",Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+582176,Shooting Permit,06/08/2021 08:30:00 AM,06/08/2021 11:30:00 PM,06/01/2021 04:56:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 59 STREET and EAST 60 STREET, MADISON AVENUE between EAST 59 STREET and EAST 58 STREET, MADISON AVENUE between EAST 58 STREET and EAST 57 STREET, PARK AVENUE between EAST 57 STREET and EAST 55 STREET, PARK AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,10022
+582172,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 09:30:00 PM,06/01/2021 04:54:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between NORTH 1 STREET and SOUTH 1 STREET, SOUTH 5 STREET between KENT AVENUE and BEDFORD AVENUE, DRIGGS AVENUE between BROADWAY and SOUTH 5 STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+582136,Rigging Permit,06/04/2021 07:00:00 AM,06/04/2021 07:00:00 PM,06/01/2021 03:49:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",QUEENS BOULEVARD between 42 STREET and 43 STREET,Queens,2,108,Television,Episodic series,United States of America,"11101, 11104"
+582135,Shooting Permit,06/04/2021 01:00:00 PM,06/05/2021 03:59:00 AM,06/01/2021 03:49:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","2 AVENUE between EAST 9 STREET and ST MARKS PLACE, ST MARKS PLACE between 1 AVENUE and 2 AVENUE, 2 AVENUE between ST MARKS PLACE and EAST 7 STREET, EAST 7 STREET between 1 AVENUE and 2 AVENUE, EAST 6 STREET between 1 AVENUE and 2 AVENUE, EAST 7 STREET between 2 AVENUE and COOPER SQUARE, COOPER SQUARE between ST MARKS PLACE and EAST 7 STREET, COOPER SQ between EAST 7 STREET and EAST 6 STREET",Manhattan,3,9,Television,Episodic series,United States of America,10003
+582129,Rigging Permit,06/02/2021 07:00:00 AM,06/02/2021 07:00:00 PM,06/01/2021 03:38:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",QUEENS BOULEVARD between 42 STREET and 43 STREET,Queens,2,108,Television,Episodic series,United States of America,11104
+582128,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 09:00:00 PM,06/01/2021 03:38:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 122 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 126 STREET and WEST 130 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 125 STREET and WEST 126 STREET, WEST 125 STREET between ADAM CLAYTON POWELL BOULEVARD and LENOX AVENUE, RIVERSIDE DRIVE between RIVERSIDE DRIVE VIADUCT and W 135TH ST, 125TH ST between WEST 129 STREET and RIVERSIDE DRIVE, BROADWAY between WEST 129 STREET and WEST 132 STREET",Manhattan,"10, 9","26, 28, 30, 32",Television,Pilot,United States of America,"10027, 10030, 10031"
+582049,Shooting Permit,06/04/2021 08:00:00 AM,06/04/2021 10:00:00 PM,06/01/2021 01:24:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+582044,Shooting Permit,06/04/2021 07:00:00 AM,06/04/2021 09:00:00 PM,06/01/2021 01:21:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 4 STREET between JANE STREET and WEST 12 STREET, WEST 12 STREET between WEST 4 STREET and HUDSON STREET, 8 AVENUE between JANE STREET and HUDSON STREET, HUDSON STREET between JANE STREET and WEST 12 STREET, W 14TH ST between HIGH LINE and 9TH AVE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, HUDSON STREET between BETHUNE STREET and WEST 12 STREET, HUDSON STREET between BLEECKER STREET and BANK STREET, WEST 12 STREET between GREENWICH STREET and HUDSON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+582041,Shooting Permit,06/03/2021 09:00:00 AM,06/03/2021 10:00:00 PM,06/01/2021 01:18:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+582030,Shooting Permit,06/04/2021 07:00:00 AM,06/04/2021 09:00:00 PM,06/01/2021 01:07:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,14,Television,Special/Awards Show,United States of America,10036
+582013,Shooting Permit,06/07/2021 06:00:00 AM,06/07/2021 10:00:00 PM,06/01/2021 12:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+582005,Shooting Permit,06/03/2021 09:00:00 AM,06/03/2021 11:00:00 PM,06/01/2021 12:12:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between CLINTON STREET and HOYT STREET, COURT STREET between CONGRESS STREET and DEGRAW STREET, COURT STREET between DEGRAW STREET and SACKETT STREET, BALTIC STREET between COURT STREET and CLINTON STREET",Brooklyn,"2, 6","76, 84",Television,Episodic series,United States of America,"11201, 11231"
+581985,Shooting Permit,06/04/2021 06:00:00 AM,06/04/2021 08:00:00 PM,06/01/2021 11:35:24 AM,"Mayor's Office of Film, Theatre & Broadcasting",BAYARD STREET between UNION AVENUE and LORIMER STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,"11211, 11222"
+581958,Shooting Permit,06/03/2021 09:00:00 AM,06/03/2021 03:00:00 PM,06/01/2021 10:23:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Television,Reality,United States of America,10018
+581957,Shooting Permit,06/10/2021 07:00:00 AM,06/10/2021 11:00:00 PM,06/01/2021 10:21:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581952,Shooting Permit,06/09/2021 07:00:00 AM,06/09/2021 11:00:00 PM,06/01/2021 10:14:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581950,Shooting Permit,06/08/2021 07:00:00 AM,06/08/2021 11:00:00 PM,06/01/2021 09:57:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581942,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 10:00:00 PM,06/01/2021 09:36:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581939,Shooting Permit,06/04/2021 03:00:00 PM,06/05/2021 04:00:00 AM,06/01/2021 09:22:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 10 AVENUE and 11 AVENUE, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 28 STREET and WEST 30 STREET, 11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Film,Feature,United States of America,10001
+581851,Shooting Permit,06/12/2021 06:00:00 AM,06/13/2021 04:00:00 PM,05/31/2021 01:33:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 119 STREET between THIRD AVENUE and LEXINGTON AVENUE, THIRD AVENUE between EAST 118 STREET and EAST 119 STREET",Manhattan,11,25,Television,News,United States of America,10035
+581823,Theater Load in and Load Outs,06/01/2021 12:01:00 AM,06/04/2021 05:00:00 AM,05/31/2021 07:22:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 74 STREET and WEST 75 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+581786,Shooting Permit,06/07/2021 08:00:00 AM,06/07/2021 09:00:00 PM,05/30/2021 06:31:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEACH 87 STREET between ROCKAWAY FREEWAY and BEACH CHANNEL DRIVE,Queens,14,100,Still Photography,Not Applicable,United States of America,11693
+581755,Shooting Permit,06/05/2021 08:00:00 AM,06/05/2021 09:00:00 PM,05/30/2021 01:26:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",BOWERY between KENMARE STREET and BROOME STREET,Manhattan,"2, 3",5,Television,Pilot,United States of America,"10002, 10012"
+581585,Shooting Permit,06/05/2021 07:00:00 AM,06/05/2021 10:00:00 PM,05/28/2021 04:48:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, VERNON BOULEVARD between 43 ROAD and 43 AVENUE",Queens,"1, 11, 2","108, 111, 94",Television,Episodic series,United States of America,"11101, 11222, 11363"
+581557,Shooting Permit,06/04/2021 11:30:00 AM,06/05/2021 01:30:00 AM,05/28/2021 03:31:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 AVENUE between VERNON BOULEVARD and 11 STREET, 44 AVENUE between 11 STREET and 13 STREET, 44 ROAD between 10 STREET and 21 STREET, 11 STREET between 45 AVENUE and 44 AVENUE, 11 STREET between 44 AVENUE and 43 ROAD, 44 DRIVE between 11 STREET and 21 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+581549,Shooting Permit,06/03/2021 06:00:00 AM,06/03/2021 11:00:00 PM,05/28/2021 03:19:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Pilot,United States of America,11222
+581540,Shooting Permit,06/03/2021 07:30:00 AM,06/03/2021 07:00:00 PM,05/28/2021 03:00:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 41 STREET and 44 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and BARNETT AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11104, 11222"
+581539,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 11:00:00 PM,05/28/2021 03:00:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+581518,Shooting Permit,06/03/2021 09:00:00 AM,06/03/2021 10:00:00 PM,05/28/2021 02:20:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+581516,Shooting Permit,06/04/2021 05:30:00 PM,06/05/2021 06:00:00 AM,05/28/2021 02:18:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 79 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 78 STREET and WEST 80 STREET, BROADWAY between WEST 79 STREET and WEST 84 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 81 STREET and WEST 77 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 81 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 83 STREET and WEST 85 STREET",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,10024
+581505,Shooting Permit,06/04/2021 11:00:00 AM,06/04/2021 09:00:00 PM,05/28/2021 01:47:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 109 STREET between 5 AVENUE and MADISON AVENUE,Manhattan,"11, 64","22, 23",Commercial,Commercial,United States of America,"10025, 10029"
+581503,Shooting Permit,06/03/2021 10:30:00 AM,06/03/2021 07:00:00 PM,05/28/2021 01:36:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between BEDFORD AVENUE and BERRY STREET,Brooklyn,"1, 2","84, 90",Commercial,Commercial,United States of America,"11201, 11249"
+581494,Shooting Permit,06/08/2021 10:30:00 AM,06/08/2021 11:59:00 PM,05/28/2021 01:14:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 21 STREET and EAST 22 STREET, LEXINGTON AVENUE between EAST 22 STREET and EAST 23 STREET, EAST 23 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, E. 21ST STREET between LEXINGTON AVENUE and GRAMERCY PARK W., E. 20TH STREET between IRVING PLACE and GRAMERCY PARK W., E. 20TH STREET between GRAMERCY PARK W. and PARK AVE S., PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET, PARK AVENUE SOUTH between EAST 23 STREET and EAST 24 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, LEXINGTON AVENUE between EAST 23 STREET and EAST 24 STREET",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10003, 10010"
+581493,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 09:00:00 PM,05/28/2021 01:14:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENWICH STREET between BARCLAY STREET and MURRAY STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, CHURCH STREET between THOMAS STREET and CHAMBERS STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, WEST STREET between MURRAY STREET and WARREN STREET, WARREN STREET between WEST STREET and GREENWICH STREET, WARREN STREET between GREENWICH STREET and WEST BROADWAY, WEST BROADWAY between WARREN STREET and MURRAY STREET, CORTLANDT STREET between BROADWAY and CHURCH STREET",Manhattan,"1, 2","1, 6",Television,Episodic series,United States of America,"10006, 10007, 10013, 10014, 10282"
+581486,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 06:00:00 PM,05/28/2021 12:53:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",30 ST between BORDEN AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+581479,Shooting Permit,06/07/2021 12:00:00 PM,06/08/2021 04:00:00 AM,05/28/2021 12:34:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERGEN STREET between BUFFALO AVENUE and ROCHESTER AVENUE, BUFFALO AVENUE between BERGEN STREET and ST MARKS AVENUE",Brooklyn,8,77,Commercial,Industrial/Corporate,United States of America,"11213, 11233"
+581462,Shooting Permit,06/04/2021 11:30:00 AM,06/04/2021 11:30:00 PM,05/28/2021 11:56:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,10022
+581453,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 11:00:00 PM,05/28/2021 11:32:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland ave between Dead End and Greenpoint Ave, Kingsland ave between Greenpoint Ave and Dead end, Kingsland Ave between Greenpoint Ave and Norman Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581444,Shooting Permit,06/06/2021 08:00:00 AM,06/06/2021 09:00:00 PM,05/28/2021 11:16:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 67 STREET between THURSBY AVENUE and ALMEDA AVENUE, THURSBY AVENUE between BEACH 67 STREET and BEACH 68 STREET",Queens,14,100,Still Photography,Not Applicable,United States of America,11692
+581440,Shooting Permit,06/04/2021 08:00:00 AM,06/04/2021 11:00:00 PM,05/28/2021 11:13:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581431,Rigging Permit,06/01/2021 07:00:00 AM,06/01/2021 07:00:00 PM,05/28/2021 10:50:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",QUEENS BOULEVARD between 42 STREET and 43 STREET,Queens,2,108,Television,Episodic series,United States of America,11104
+581422,Shooting Permit,06/02/2021 08:00:00 AM,06/02/2021 08:00:00 PM,05/28/2021 10:20:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",CROSBY STREET between HOWARD STREET and GRAND STREET,Manhattan,"1, 2, 3","1, 5",Commercial,Commercial,United States of America,"10012, 10013"
+581412,Shooting Permit,06/05/2021 07:00:00 AM,06/05/2021 07:00:00 PM,05/28/2021 09:45:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","216 STREET between 36 AVENUE and 38 AVENUE, 38 AVENUE between 216 STREET and 217 STREET",Queens,11,111,Commercial,Commercial,United States of America,11361
+581410,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 11:00:00 PM,05/28/2021 09:41:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 3 STREET and BOND STREET,Manhattan,2,"6, 9",Commercial,Commercial,United States of America,10012
+581392,Shooting Permit,06/03/2021 06:00:00 AM,06/03/2021 08:00:00 PM,05/28/2021 07:42:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",BAYARD STREET between UNION AVENUE and LORIMER STREET,Brooklyn,1,94,Still Photography,Not Applicable,United States of America,"11211, 11222"
+581377,Shooting Permit,06/01/2021 07:30:00 AM,06/01/2021 08:30:00 PM,05/27/2021 10:10:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between HOYT STREET and BOND STREET, WEST END AVENUE between WEST 104 STREET and WEST 103 STREET",Brooklyn,"2, 7","24, 84",Television,Game show,United States of America,"10025, 11217"
+581312,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 10:00:00 PM,05/27/2021 05:00:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581283,Shooting Permit,06/03/2021 11:30:00 AM,06/04/2021 01:30:00 AM,05/27/2021 04:09:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between VAN BRUNT STREET and CONOVER STREET, BEARD STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, VAN BRUNT STREET between COFFEY STREET and VAN DYKE STREET, COFFEY STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between DIKEMAN STREET and COFFEY STREET, DIKEMAN STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+581281,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 09:00:00 PM,05/27/2021 04:07:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEARD STREET between VAN BRUNT STREET and CONOVER STREET, BEARD STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and BEARD STREET, VAN BRUNT STREET between COFFEY STREET and VAN DYKE STREET, COFFEY STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between DIKEMAN STREET and COFFEY STREET, DIKEMAN STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+581278,Shooting Permit,06/01/2021 07:00:00 AM,06/01/2021 07:00:00 PM,05/27/2021 04:01:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between PORTER AVENUE and KNICKERBOCKER AVENUE, INGRAHAM STREET between VARICK AVENUE and PORTER AVENUE, PORTER AVENUE between JOHNSON AVENUE and INGRAHAM STREET, PORTER AVENUE between INGRAHAM STREET and HARRISON PLACE, HARRISON PLACE between PORTER AVENUE and KNICKERBOCKER AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+581264,Shooting Permit,06/04/2021 07:00:00 AM,06/04/2021 11:59:00 PM,05/27/2021 03:30:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+581250,Shooting Permit,06/01/2021 07:00:00 AM,06/01/2021 09:00:00 PM,05/27/2021 03:01:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, Kingsland Ave between Dead End and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and Dead End, Kingsland Ave between Greenpoint Ave and Norman Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+581224,Shooting Permit,06/01/2021 06:00:00 AM,06/01/2021 11:00:00 PM,05/27/2021 02:08:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 46 STREET, EAST 46 STREET between LEXINGTON AVENUE and PARK AVENUE, VANDERBILT AVENUE between EAST 47 STREET and EAST 46 STREET, MADISON AVENUE between EAST 46 STREET and EAST 45 STREET, MADISON AVENUE between EAST 45 STREET and EAST 44 STREET, EAST 44 STREET between MADISON AVENUE and FIFTH AVENUE, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET",Manhattan,5,"14, 18",Television,Pilot,United States of America,"10017, 10167, 10171, 10172, 10173, 10177"
+581206,Rigging Permit,06/03/2021 02:00:00 AM,06/03/2021 01:00:00 PM,05/27/2021 01:30:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between THOMAS STREET and WORTH STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+581199,Rigging Permit,06/02/2021 07:00:00 AM,06/02/2021 04:00:00 PM,05/27/2021 01:17:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between THOMAS STREET and WORTH STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+581165,Shooting Permit,06/01/2021 08:00:00 AM,06/01/2021 05:00:00 PM,05/27/2021 11:44:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 29 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+581132,Shooting Permit,06/02/2021 10:00:00 AM,06/03/2021 02:00:00 AM,05/27/2021 10:46:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between HUDSON STREET and VARICK STREET, THOMAS STREET between WEST BROADWAY and HUDSON STREET, HUDSON STREET between WORTH STREET and DUANE STREET, HUDSON STREET between DUANE STREET and READE STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, WEST BROADWAY between DUANE STREET and READE STREET, WEST BROADWAY between THOMAS STREET and WORTH STREET, WEST BROADWAY between WORTH STREET and LEONARD STREET",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10011, 10013"
+581107,Shooting Permit,05/28/2021 06:00:00 AM,05/28/2021 05:00:00 PM,05/27/2021 09:28:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 41 STREET between 8 AVENUE and 7 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 40 STREET between 8 AVENUE and 7 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 40 STREET, WEST 41 STREET between BROADWAY and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+580974,Shooting Permit,06/01/2021 07:00:00 AM,06/01/2021 05:00:00 PM,05/26/2021 04:16:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNIVERSITY PLACE between EAST 12 STREET and EAST 11 STREET, BROADWAY between EAST 12 STREET and EAST 11 STREET, EAST 11 STREET between BROADWAY and UNIVERSITY PLACE, UNIVERSITY PLACE between EAST 11 STREET and EAST 8 STREET, EAST 9 STREET between BROADWAY and 6 AVENUE",Manhattan,2,"6, 9",Television,Episodic series,United States of America,10003
+580954,Shooting Permit,06/01/2021 08:00:00 AM,06/01/2021 08:30:00 PM,05/26/2021 03:34:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 24 STREET between MADISON AVENUE and PARK AVENUE SOUTH, MADISON AVENUE between EAST 23 STREET and EAST 25 STREET, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 24 STREET and EAST 28 STREET, 6 AVENUE between BLEECKER STREET and WEST HOUSTON STREET, 14 ST between 9 AVE and 10 AVE, WASHINGTON STREET between WEST 13 STREET and WEST 14 STREET, WEST 25 STREET between 6 AVENUE and BROADWAY, EAST 25 STREET between PARK AVENUE SOUTH and MADISON AVENUE, EAST 26 STREET between PARK AVENUE SOUTH and MADISON AVENUE, LEROY STREET between BLEECKER STREET and BEDFORD STREET, WEST HOUSTON STREET between VARICK STREET and 6 AVENUE, BLEECKER STREET between LEROY STREET and CARMINE STREET, DOWNING STREET between 6 AVENUE and VARICK STREET, BEDFORD STREET between LEROY STREET and 6 AVENUE, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, 6 AVENUE between WEST 4 STREET and BLEECKER STREET",Manhattan,"2, 4, 5","10, 13, 14, 18, 6",Television,Episodic series,United States of America,"10001, 10010, 10011, 10014, 10016, 10018, 10019, 10020, 10036, 10105, 10119"
+580940,Shooting Permit,05/28/2021 06:00:00 AM,05/28/2021 01:00:00 PM,05/26/2021 03:16:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 94 STREET and EAST 95 STREET, EAST 95 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,8,19,Still Photography,Not Applicable,United States of America,10128
+580928,Shooting Permit,05/28/2021 10:00:00 AM,05/29/2021 03:00:00 AM,05/26/2021 02:48:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Pilot,United States of America,11222
+580919,Shooting Permit,05/27/2021 11:00:00 AM,05/28/2021 02:00:00 AM,05/26/2021 02:23:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CHRISTOPHER STREET and BARROW STREET, GREENWICH STREET between CHRISTOPHER STREET and BARROW STREET, BARROW STREET between WASHINGTON STREET and GREENWICH STREET, HUDSON STREET between GROVE STREET and MORTON STREET, BARROW STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between BARROW STREET and MORTON STREET, BEDFORD STREET between BARROW STREET and MORTON STREET, COMMERCE STREET between BEDFORD STREET and 7 AVENUE SOUTH, 7 AVENUE SOUTH between BEDFORD STREET and ST LUKES PLACE",Manhattan,2,6,Television,Episodic series,United States of America,10014
+580899,Shooting Permit,06/01/2021 07:00:00 AM,06/01/2021 10:00:00 PM,05/26/2021 01:24:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+580847,Shooting Permit,06/02/2021 06:00:00 AM,06/02/2021 09:00:00 PM,05/26/2021 11:24:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",RANDALL AVENUE between WHITE PLAINS ROAD and PUGSLEY AVENUE,Bronx,9,43,Television,Pilot,United States of America,10473
+580770,Shooting Permit,06/04/2021 07:00:00 AM,06/04/2021 11:00:00 PM,05/26/2021 11:11:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+580769,Shooting Permit,06/03/2021 07:00:00 AM,06/03/2021 11:00:00 PM,05/26/2021 11:07:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+580745,Shooting Permit,06/01/2021 06:00:00 AM,06/01/2021 08:00:00 PM,05/26/2021 09:47:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and 4 AVENUE, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+580742,Shooting Permit,05/28/2021 08:00:00 AM,05/28/2021 10:00:00 PM,05/26/2021 09:36:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+580560,Shooting Permit,05/28/2021 12:00:00 PM,05/29/2021 03:00:00 AM,05/25/2021 04:14:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CHRISTOPHER STREET and BARROW STREET, GREENWICH STREET between CHRISTOPHER STREET and BARROW STREET, BARROW STREET between WASHINGTON STREET and GREENWICH STREET, HUDSON STREET between GROVE STREET and BARROW STREET, HUDSON STREET between BARROW STREET and MORTON STREET, BARROW STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between BARROW STREET and MORTON STREET, WEST 14 STREET between HIGH LINE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,10014
+580552,Shooting Permit,06/02/2021 10:00:00 AM,06/03/2021 03:00:00 AM,05/25/2021 03:51:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 118 STREET and WEST 125 STREET, WEST 122 STREET between LENOX AVENUE and MT MORRIS PARK WEST, WEST 121 STREET between MT MORRIS PARK WEST and LENOX AVENUE, LENOX AVENUE between WEST 121 STREET and WEST 120 STREET, LENOX AVENUE between WEST 122 STREET and WEST 121 STREET, LENOX AVENUE between WEST 120 STREET and WEST 119 STREET, WEST 119 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 121 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 122 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,10,28,Television,Pilot,United States of America,"10026, 10027"
+580540,Shooting Permit,06/04/2021 06:00:00 AM,06/05/2021 03:00:00 AM,05/25/2021 03:32:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 51 AVENUE and BORDEN AVENUE, 51 AVENUE between 23 STREET and 25 STREET, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE, BORDEN AVENUE between 21 STREET and 23 STREET, BORDEN AVENUE between 23 STREET and 25 STREET, 51 AVENUE between 21 STREET and 23 STREET, 23 STREET between 50 AVENUE and 51 AVENUE, 21 STREET between 49 AVENUE and 50 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+580535,Shooting Permit,06/03/2021 08:00:00 AM,06/03/2021 10:00:00 PM,05/25/2021 03:23:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 51 AVENUE and BORDEN AVENUE, 51 AVENUE between 23 STREET and 25 STREET, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE, BORDEN AVENUE between 21 STREET and 23 STREET, BORDEN AVENUE between 23 STREET and 25 STREET, 51 AVENUE between 21 STREET and 23 STREET, 23 STREET between 51 AVENUE and 50 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+580534,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 09:00:00 PM,05/25/2021 03:22:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 51 AVENUE and BORDEN AVENUE, 51 AVENUE between 23 STREET and 25 STREET, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE, BORDEN AVENUE between 21 STREET and 23 STREET, BORDEN AVENUE between 23 STREET and 25 STREET, 51 AVENUE between 21 STREET and 23 STREET, 23 STREET between 51 AVENUE and 50 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+580489,Shooting Permit,05/28/2021 12:00:00 PM,05/29/2021 01:00:00 AM,05/25/2021 02:24:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between Greenpoint Ave and Dead End, Kingsland Ave between Greenpoint Ave and Dead End, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+580484,Shooting Permit,05/28/2021 07:00:00 AM,05/28/2021 11:00:00 PM,05/25/2021 02:07:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+580390,Shooting Permit,06/02/2021 08:00:00 AM,06/02/2021 11:00:00 PM,05/25/2021 11:19:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 44 AVENUE and 44 ROAD, 48 AVENUE between VERNON BOULEVARD and 5 STREET, 10 STREET between 43 ROAD and 44 ROAD, 43 ROAD between 11 STREET and 9 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 9 STREET between 43 AVENUE and 43 ROAD, 9 STREET between 43 ROAD and 44 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Film,Feature,United States of America,11101
+580389,Shooting Permit,06/01/2021 08:00:00 AM,06/01/2021 11:00:00 PM,05/25/2021 11:19:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 44 AVENUE and 44 ROAD, 44 AVENUE between VERNON BOULEVARD and 11 STREET, 10 STREET between 43 ROAD and 44 ROAD, 43 ROAD between 11 STREET and 9 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 9 STREET between 43 AVENUE and 43 ROAD, 9 STREET between 43 ROAD and 44 AVENUE, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET",Queens,2,108,Film,Feature,United States of America,11101
+580371,Shooting Permit,06/02/2021 07:00:00 AM,06/02/2021 11:00:00 PM,05/25/2021 10:58:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+580369,Shooting Permit,05/27/2021 06:00:00 PM,05/28/2021 03:30:00 AM,05/25/2021 10:57:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 10 AVENUE and 9 AVENUE, WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, WASHINGTON STREET between JANE STREET and BETHUNE STREET, WASHINGTON STREET between BETHUNE STREET and BANK STREET, WEST 12 STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between WEST 12 STREET and BETHUNE STREET, 8 AVENUE between HUDSON STREET and WEST 12 STREET, BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET, WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between BETHUNE STREET and WEST 12 STREET, HUDSON STREET between JANE STREET and WEST 12 STREET, WEST 13 STREET between 6 AVENUE and 7 AVENUE, JANE STREET between WEST STREET and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+580354,Shooting Permit,05/28/2021 01:00:00 PM,05/29/2021 02:00:00 AM,05/25/2021 10:41:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 45 ROAD and 44 DRIVE, 45 AVENUE between 5 STREET and VERNON BOULEVARD, 5 STREET between 44 DRIVE and 45 AVENUE, 44 DRIVE between DEAD END and 5 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 46 ROAD between VERNON BOULEVARD and 5 STREET, 5 STREET between 46 ROAD and 47 AVENUE, 5 STREET between 46 ROAD and 46 AVENUE, 45 ROAD between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+580348,Shooting Permit,06/08/2021 08:00:00 AM,06/08/2021 10:00:00 PM,05/25/2021 10:24:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+580346,Shooting Permit,06/01/2021 06:00:00 AM,06/01/2021 10:00:00 PM,05/25/2021 10:16:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","FREEDOM PLACE SOUTH between WEST 59 STREET and WEST 60 STREET, WEST 60 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 60 STREET and WEST 61 STREET, FREEDOM PLACE SOUTH between WEST 60 STREET and WEST 64 STREET, WEST 61 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST 63 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE, WEST END AVENUE between WEST 59 STREET and WEST 60 STREET, 11 AVENUE between WEST 57 STREET and WEST 58 STREET, 11 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST END AVENUE between WEST 61 STREET and WEST 63 STREET, COLUMBUS AVENUE between WEST 59 STREET and WEST 60 STREET, 5 AVENUE between EAST 60 STREET and EAST 63 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET, MADISON AVENUE between EAST 63 STREET and EAST 64 STREET, MADISON AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 64 STREET between 5 AVENUE and PARK AVENUE, EAST 65 STREET between 5 AVENUE and PARK AVENUE, WEST 59 STREET between FREEDOM PLACE SOUTH and WEST END AVENUE",Manhattan,"4, 64, 7, 8","18, 19, 20, 22",Television,Cable-episodic,United States of America,"10019, 10023, 10065, 10069"
+580338,Shooting Permit,05/26/2021 10:30:00 AM,05/27/2021 02:30:00 AM,05/25/2021 10:02:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between HUDSON STREET and VARICK STREET, THOMAS STREET between WEST BROADWAY and HUDSON STREET, HUDSON STREET between WORTH STREET and DUANE STREET, HUDSON STREET between DUANE STREET and READE STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY, WEST BROADWAY between DUANE STREET and READE STREET, WEST BROADWAY between THOMAS STREET and WORTH STREET, WEST BROADWAY between WORTH STREET and LEONARD STREET",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10011, 10013"
+580322,Rigging Permit,05/27/2021 10:00:00 PM,05/28/2021 12:00:00 PM,05/25/2021 09:32:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET, WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, HUDSON STREET between JANE STREET and WEST 12 STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+580316,Rigging Permit,05/27/2021 07:00:00 AM,05/27/2021 08:00:00 PM,05/25/2021 09:14:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET, WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, HUDSON STREET between JANE STREET and WEST 12 STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+580313,Shooting Permit,05/27/2021 07:00:00 AM,05/27/2021 07:00:00 PM,05/25/2021 09:09:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",RANDOLPH STREET between SCOTT AVENUE and GARDNER AVENUE,Brooklyn,"1, 5","104, 90",Still Photography,Not Applicable,United States of America,"11237, 11385"
+580308,Rigging Permit,05/27/2021 02:30:00 AM,05/27/2021 01:00:00 PM,05/25/2021 08:58:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between THOMAS STREET and WORTH STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+580305,Rigging Permit,05/26/2021 07:00:00 AM,05/26/2021 06:00:00 PM,05/25/2021 08:53:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST BROADWAY between THOMAS STREET and WORTH STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+580302,Shooting Permit,05/27/2021 07:00:00 AM,05/27/2021 11:00:00 PM,05/25/2021 08:04:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+580268,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 09:00:00 PM,05/24/2021 08:14:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE SOUTH between PERRY STREET and WEST 11 STREET, 7 AVENUE SOUTH between CHARLES STREET and PERRY STREET, 7 AVENUE SOUTH between GROVE STREET and CHRISTOPHER STREET",Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+580243,Shooting Permit,05/27/2021 10:00:00 AM,05/27/2021 11:59:00 PM,05/24/2021 05:31:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, WEST 23 STREET between 8 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+580242,Shooting Permit,05/27/2021 10:00:00 AM,05/28/2021 12:30:00 AM,05/24/2021 05:30:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, LAIGHT STREET between GREENWICH STREET and HUDSON STREET, HUBERT STREET between GREENWICH STREET and HUDSON STREET, HUBERT STREET between WASHINGTON STREET and GREENWICH STREET",Manhattan,"1, 4, 5, 64, 7","1, 18, 20, 22",Commercial,Commercial,United States of America,"10013, 10019, 10023"
+580235,Shooting Permit,06/02/2021 09:00:00 AM,06/02/2021 11:00:00 PM,05/24/2021 05:06:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 20th Street between PARK AVENUE SOUTH and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 21ST STREET and E 20TH STREET",Manhattan,6,13,Television,Cable-episodic,United States of America,10003
+580234,Shooting Permit,06/01/2021 09:00:00 AM,06/01/2021 11:00:00 PM,05/24/2021 05:06:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","E 20TH STREET between PARK AVENUE SOUTH and GRAMERCY PARK EAST, GRAMERCY PARK WEST between E 21ST STREET and E 20TH STREET",Manhattan,6,13,Television,Cable-episodic,United States of America,10003
+580229,Shooting Permit,05/26/2021 07:00:00 AM,05/26/2021 10:00:00 PM,05/24/2021 05:01:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+580208,Shooting Permit,05/26/2021 08:00:00 AM,05/26/2021 10:00:00 PM,05/24/2021 04:05:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, FULTON STREET between BROADWAY and NASSAU STREET, NASSAU STREET between JOHN STREET and FULTON STREET, GOLD STREET between ANN STREET and SPRUCE STREET, FULTON STREET between GOLD STREET and PEARL STREET, 6 AVENUE between CHURCH STREET and WHITE STREET, FRANKLIN STREET between CHURCH STREET and BROADWAY, PEARL STREET between PECK SLIP and DOVER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10013, 10038"
+580204,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 09:00:00 PM,05/24/2021 03:59:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",BANK STREET between WEST STREET and WASHINGTON STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+580182,Shooting Permit,06/07/2021 11:00:00 AM,06/07/2021 07:00:00 PM,05/24/2021 02:53:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",47 ROAD between CENTER BOULEVARD and DEAD END,Queens,"11, 2","108, 111",Student,Student Film,United States of America,"11101, 11109, 11361"
+580175,Shooting Permit,05/28/2021 12:30:00 AM,05/28/2021 07:30:00 PM,05/24/2021 02:38:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 132 STREET between LENOX AVENUE and 5 AVENUE,Manhattan,10,32,Film,Feature,United States of America,10037
+580172,Shooting Permit,05/28/2021 12:00:00 PM,05/29/2021 02:00:00 AM,05/24/2021 02:27:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","77 PLACE between JUNIPER VALLEY ROAD and 66 ROAD, 66 ROAD between 77 STREET and 78 STREET, 78 STREET between JUNIPER VALLEY ROAD and 66 ROAD, 78 STREET between 66 ROAD and 66 DRIVE, 78 STREET between 66 DRIVE and METROPOLITAN AVENUE",Queens,5,104,Film,Feature,United States of America,11379
+580159,Shooting Permit,06/01/2021 07:00:00 AM,06/01/2021 08:00:00 PM,05/24/2021 02:04:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 68 STREET and EAST 67 STREET, EAST 67 STREET between LEXINGTON AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 67 STREET and EAST 66 STREET, LEXINGTON AVENUE between EAST 66 STREET and EAST 65 STREET, MADISON AVENUE between EAST 67 STREET and EAST 68 STREET, MADISON AVENUE between EAST 68 STREET and EAST 69 STREET, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, MADISON AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE, EAST 72 STREET between MADISON AVENUE and PARK AVENUE, EAST 73 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+580156,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 10:00:00 PM,05/24/2021 01:58:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+580138,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 11:00:00 PM,05/24/2021 01:32:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLIAM STREET between WALL STREET and BEAVER STREET, WALL STREET between HANOVER STREET and WILLIAM STREET, BEAVER STREET between HANOVER STREET and WILLIAM STREET, JOHN STREET between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between MAIDEN LANE and PINE STREET",Manhattan,1,1,Television,Pilot,United States of America,"10004, 10005, 10038"
+580030,Shooting Permit,05/28/2021 10:00:00 AM,05/28/2021 11:00:00 PM,05/24/2021 09:20:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+580029,Shooting Permit,05/27/2021 09:00:00 AM,05/27/2021 10:00:00 PM,05/24/2021 09:18:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+580027,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 10:00:00 PM,05/24/2021 09:05:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVE SOUTH between EAST 33 STREET and EAST 30 STREET, EAST 32 STREET between PARK AVENUE and LEXINGTON AVENUE, BRIDGE STREET between FRONT STREET and PROSPECT STREET, EAST 32 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 31 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PROSPECT ST between JAY ST and BRIDGE ST, YORK STREET between BRIDGE STREET and GOLD STREET",Manhattan,"2, 5, 6","14, 17, 84",Commercial,Commercial,United States of America,"10016, 11201"
+580023,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 09:00:00 PM,05/24/2021 09:02:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","116TH ST between FREDRICK DOUGLASS BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 115 STREET and WEST 113 STREET, WEST 114 STREET between ADAM CLAYTON POWELL BOULEVARD and ST NICHOLAS AVENUE, EAST 167 STREET between JEROME AVENUE and GRAND CONCOURSE, GRAND CONCOURSE between EAST 167 STREET and MCCLELLAN STREET, WALTON AVENUE between EAST 158 STREET and EAST 161 STREET",Manhattan,"10, 4","28, 44",Commercial,Commercial,United States of America,"10026, 10451, 10452, 10456"
+580024,Shooting Permit,05/28/2021 07:00:00 AM,05/28/2021 07:00:00 PM,05/24/2021 09:02:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between ASTOR PLACE and EAST 4 STREET, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, PINE STREET between WILLIAM STREET and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, AVENUE D between EAST 12 STREET and EAST 10 STREET, EAST 10 STREET between AVENUE D and AVENUE C",Manhattan,"1, 2, 3","1, 6, 9",Commercial,Commercial,United States of America,"10003, 10005, 10009, 10045"
+580007,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 08:00:00 PM,05/24/2021 06:42:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",GREENWICH STREET between JANE STREET and HORATIO STREET,Manhattan,2,6,Commercial,Commercial,United States of America,"10011, 10014"
+580006,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 05:00:00 PM,05/24/2021 06:33:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE,Manhattan,"5, 64","18, 22",Commercial,Commercial,United States of America,"10019, 10023"
+580005,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 07:00:00 PM,05/24/2021 05:56:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 1 STREET, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 3 STREET and METROPOLITAN AVENUE",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,11249
+579711,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 07:00:00 PM,05/21/2021 04:28:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","PERRY STREET between BLEEKER STREET and WEST 4 STREET, HUDSON STREET between CHARLES STREET and PERRY STREET",Manhattan,2,6,Commercial,Commercial,United States of America,10014
+579707,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 11:00:00 PM,05/21/2021 04:13:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WILLIAM STREET between WALL STREET and BEAVER STREET, WALL STREET between HANOVER STREET and WILLIAM STREET, BEAVER STREET between WILLIAM STREET and HANOVER STREET, JOHN STREET between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between MAIDEN LANE and PINE STREET",Manhattan,1,1,Television,Pilot,United States of America,"10004, 10005, 10038"
+579697,Shooting Permit,05/26/2021 07:00:00 AM,05/26/2021 11:00:00 PM,05/21/2021 03:18:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, WASHINGTON STREET between CHRISTOPHER STREET and BARROW STREET, GREENWICH STREET between CHRISTOPHER STREET and BARROW STREET, BARROW STREET between WEST STREET and GREENWICH STREET, HUDSON STREET between GROVE STREET and BARROW STREET, HUDSON STREET between BARROW STREET and MORTON STREET, BARROW STREET between HUDSON STREET and BEDFORD STREET, 7 AVENUE SOUTH between BARROW STREET and MORTON STREET, WEST 14 STREET between HIGH LINE and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,10014
+579688,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 10:00:00 PM,05/21/2021 03:04:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between PARK AVENUE and 5 AVENUE, PARK AVENUE between EAST 72 STREET and EAST 71 STREET, 5 AVENUE between EAST 74 STREET and EAST 80 STREET, EAST 77 STREET between MADISON AVENUE and 5 AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023, 10028, 10075"
+579678,Shooting Permit,05/27/2021 07:00:00 AM,05/27/2021 10:00:00 PM,05/21/2021 02:39:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","77 PLACE between JUNIPER VALLEY ROAD and 66 ROAD, 66 ROAD between 77 STREET and 78 STREET, 78 STREET between JUNIPER VALLEY ROAD and 66 ROAD, 78 STREET between 66 ROAD and 66 DRIVE, 78 STREET between 66 DRIVE and METROPOLITAN AVENUE",Queens,5,104,Film,Feature,United States of America,11379
+579661,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 09:00:00 PM,05/21/2021 02:09:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","84 STREET between 63 AVENUE and PENELOPE AVENUE, 63 AVENUE between 83 PLACE and 84 STREET, PENELOPE AVENUE between 83 PLACE and 84 STREET, 77 PLACE between JUNIPER VALLEY ROAD and 66 ROAD, 66 ROAD between 77 STREET and 78 STREET, 78 STREET between JUNIPER VALLEY ROAD and 66 ROAD, 78 STREET between 66 ROAD and 66 DRIVE, 78 STREET between METROPOLITAN AVENUE and 66 DRIVE",Queens,5,104,Film,Feature,United States of America,11379
+579631,Shooting Permit,05/24/2021 10:00:00 AM,05/24/2021 11:59:00 PM,05/21/2021 12:33:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between NEWEL STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579604,Shooting Permit,05/28/2021 07:00:00 AM,05/28/2021 11:00:00 PM,05/21/2021 11:17:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+579558,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 08:00:00 PM,05/21/2021 09:24:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and 4 AVENUE, NEVINS STREET between BALTIC STREET and BUTLER STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, NEVINS STREET between BALTIC STREET and DOUGLASS STREET, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,11217
+579501,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 09:00:00 PM,05/20/2021 07:46:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",48 AVENUE between 5 STREET and VERNON BOULEVARD,Queens,2,108,Television,Episodic series,United States of America,11101
+579482,Shooting Permit,05/26/2021 10:00:00 AM,05/26/2021 11:59:00 PM,05/20/2021 06:25:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 52 STREET and EAST 54 STREET, EAST 54 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"4, 6","10, 17",Television,Episodic series,United States of America,"10011, 10022"
+579430,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 11:00:00 PM,05/20/2021 03:43:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between HANOVER STREET and WILLIAM STREET, WILLIAM STREET between WALL STREET and BEAVER STREET, EXCHANGE PLACE between HANOVER STREET and WILLIAM STREET, JOHN STREET between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between MAIDEN LANE and PINE STREET",Manhattan,1,1,Television,Pilot,United States of America,"10004, 10005, 10038"
+579419,Shooting Permit,05/25/2021 09:00:00 AM,05/25/2021 11:00:00 PM,05/20/2021 03:19:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 59 STREET and EAST 60 STREET, MADISON AVENUE between EAST 59 STREET and EAST 58 STREET, MADISON AVENUE between EAST 58 STREET and EAST 57 STREET, PARK AVENUE between EAST 57 STREET and EAST 55 STREET, PARK AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,10022
+579373,Shooting Permit,05/24/2021 08:00:00 AM,05/24/2021 12:00:00 PM,05/20/2021 02:05:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, CLIFFORD PLACE between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between GEM STREET and DOBBIN STREET, MESEROLE AVENUE between CLIFFORD PLACE and GUERNSEY STREET, MESEROLE AVENUE between GUERNSEY STREET and LORIMER STREET",Brooklyn,1,94,Film,Feature,United States of America,11222
+579340,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 09:00:00 PM,05/20/2021 12:42:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+579333,Shooting Permit,05/28/2021 03:00:00 PM,05/29/2021 05:30:00 AM,05/20/2021 12:28:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE",Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+579328,Shooting Permit,05/27/2021 01:00:00 PM,05/28/2021 03:00:00 AM,05/20/2021 12:20:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE",Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+579323,Shooting Permit,05/23/2021 06:00:00 AM,05/23/2021 09:00:00 PM,05/20/2021 12:15:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 10 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+579322,Shooting Permit,05/28/2021 10:00:00 AM,05/28/2021 11:59:00 PM,05/20/2021 12:13:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+579312,Shooting Permit,05/27/2021 09:00:00 AM,05/28/2021 01:00:00 AM,05/20/2021 11:52:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, EAST 82 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 84 STREET and EAST 81 STREET, MADISON AVENUE between EAST 83 STREET and EAST 82 STREET, PARK AVENUE between EAST 83 STREET and EAST 81 STREET, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 84 STREET and EAST 80 STREET, EAST 85 STREET between MADISON AVENUE and PARK AVENUE",Brooklyn,"1, 64, 8","19, 22, 94",Television,Cable-episodic,United States of America,"10028, 11222"
+579305,Shooting Permit,05/27/2021 08:00:00 AM,05/28/2021 01:00:00 AM,05/20/2021 11:32:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579301,Shooting Permit,05/26/2021 07:00:00 AM,05/27/2021 12:00:00 AM,05/20/2021 11:26:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579296,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 11:00:00 PM,05/20/2021 11:18:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579258,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 08:00:00 PM,05/20/2021 10:18:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between MERCER STREET and GREENE STREET,Manhattan,2,"1, 5, 84",Commercial,Commercial,United States of America,"10012, 10013, 11201"
+579244,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 04:00:00 PM,05/20/2021 09:09:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","MERCER STREET between BROOME STREET and SPRING STREET, GREENE STREET between BROOME STREET and SPRING STREET, MERCER STREET between BROOME STREET and GRAND STREET",Manhattan,2,1,Commercial,Commercial,United States of America,"10012, 10013"
+579228,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 11:00:00 PM,05/19/2021 11:11:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579217,Theater Load in and Load Outs,05/21/2021 05:00:00 AM,05/26/2021 07:30:00 AM,05/19/2021 09:11:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and 5 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+579202,Shooting Permit,05/25/2021 05:00:00 AM,05/25/2021 07:00:00 PM,05/19/2021 08:05:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between BROADWAY and 5 AVENUE,Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+579200,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 11:30:00 PM,05/19/2021 07:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between READE STREET and DUANE STREET, BROADWAY between CHAMBERS STREET and READE STREET, READE STREET between BROADWAY and CHURCH STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, FRANKLIN STREET between BROADWAY and CHURCH STREET, 6 AVENUE between FRANKLIN STREET and WHITE STREET, BROADWAY between DUANE STREET and THOMAS STREET, DUANE STREET between BROADWAY and TRIMBLE PLACE",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013, 10278"
+579193,Shooting Permit,05/26/2021 10:30:00 AM,05/27/2021 01:00:00 AM,05/19/2021 06:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between BAY STREET and ERRINGTON PLACE, VANDERBILT AVENUE between ERRINGTON PLACE and TALBOT PLACE",Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+579179,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 09:00:00 PM,05/19/2021 04:54:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 PLACE between HENRY STREET and CLINTON STREET, CLINTON STREET between 2 PLACE and 4 PLACE",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+579133,Shooting Permit,05/22/2021 08:00:00 AM,05/22/2021 11:30:00 PM,05/19/2021 03:30:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and DEAD END, KINGSLAND AVE between GREENPOINT AVE and DEAD END, KINGSLAND AVE between GREENPOINT AVE and NORMAN AVE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579132,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 09:00:00 PM,05/19/2021 03:26:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between BOND STREET and NEVINS STREET, NEVINS STREET between DEAN STREET and BERGEN STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11217
+579114,Shooting Permit,05/24/2021 11:00:00 AM,05/25/2021 01:00:00 AM,05/19/2021 03:04:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST BROADWAY between RUTGERS STREET and JEFFERSON STREET,Manhattan,3,7,Television,Pilot,United States of America,10002
+579111,Shooting Permit,05/25/2021 10:00:00 AM,05/26/2021 12:00:00 AM,05/19/2021 03:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 100 STREET and EAST 102 STREET, 3 AVENUE between EAST 99 STREET and EAST 100 STREET, EAST 99 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 85 STREET and EAST 86 STREET, LEXINGTON AVENUE between EAST 81 STREET and EAST 84 STREET",Manhattan,"11, 8","19, 23",Television,Episodic series,United States of America,"10028, 10029"
+579110,Shooting Permit,05/24/2021 08:00:00 AM,05/24/2021 11:00:00 PM,05/19/2021 03:03:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Cable-episodic,United States of America,"10016, 10017, 10018, 10036"
+579109,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 09:00:00 PM,05/19/2021 03:02:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERGEN STREET between BOND STREET and HOYT STREET, BOND STREET between DEAN STREET and BERGEN STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11217
+579100,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 09:00:00 PM,05/19/2021 02:48:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","96 STREET between 108 AVENUE and ROCKAWAY BOULEVARD, ROCKAWAY BOULEVARD between 96 STREET and 97 STREET, CROSS BAY BOULEVARD between 107 AVENUE and LIBERTY AVENUE, LIBERTY AVENUE between 91 STREET and CROSS BAY BOULEVARD, ROCKAWAY BOULEVARD between 103 AVENUE and 94 STREET, 103 AVENUE between 91 STREET and ROCKAWAY BOULEVARD, 95 STREET between 108 AVENUE and LIBERTY AVENUE",Queens,"10, 9","102, 106",Film,Feature,United States of America,11417
+579097,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 11:00:00 PM,05/19/2021 02:44:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+579086,Shooting Permit,05/28/2021 08:00:00 AM,05/28/2021 10:00:00 PM,05/19/2021 02:28:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between MONROE STREET and MADISON STREET, MONROE STREET between BEDFORD AVENUE and NOSTRAND AVENUE, MADISON STREET between BEDFORD AVENUE and NOSTRAND AVENUE, BEDFORD AVENUE between MADISON STREET and PUTNAM AVENUE, MADISON STREET between BEDFORD AVENUE and FRANKLIN AVENUE, FULTON STREET between FRANKLIN AVENUE and SPENCER PLACE, FULTON STREET between SPENCER PLACE and BEDFORD AVENUE, FULTON STREET between BEDFORD AVENUE and NOSTRAND AVENUE, FULTON STREET between NOSTRAND AVENUE and NEW YORK AVENUE, MADISON STREET between MARCY AVENUE and TOMPKINS AVENUE",Brooklyn,3,79,Television,Episodic series,United States of America,11216
+579085,Shooting Permit,05/27/2021 07:00:00 AM,05/27/2021 09:00:00 PM,05/19/2021 02:27:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between MONROE STREET and MADISON STREET, MONROE STREET between BEDFORD AVENUE and NOSTRAND AVENUE, MADISON STREET between BEDFORD AVENUE and NOSTRAND AVENUE, BEDFORD AVENUE between MADISON STREET and PUTNAM AVENUE, MADISON STREET between BEDFORD AVENUE and FRANKLIN AVENUE, FULTON STREET between FRANKLIN AVENUE and SPENCER PLACE, FULTON STREET between SPENCER PLACE and BEDFORD AVENUE, FULTON STREET between BEDFORD AVENUE and NOSTRAND AVENUE, FULTON STREET between NOSTRAND AVENUE and NEW YORK AVENUE, MADISON STREET between MARCY AVENUE and TOMPKINS AVENUE",Brooklyn,3,79,Television,Episodic series,United States of America,11216
+579076,Shooting Permit,05/25/2021 09:30:00 AM,05/25/2021 09:00:00 PM,05/19/2021 02:18:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 98 STREET and EAST 102 STREET, EAST 97 STREET between 5 AVENUE and MADISON AVENUE, EAST 99 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 104 STREET and EAST 103 STREET, CENTRAL PARK WEST between WEST 68 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 66 STREET and WEST 70 STREET, WEST 66 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 67 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"11, 64, 7","20, 22, 23",Television,Episodic series,United States of America,"10023, 10029"
+579075,Shooting Permit,05/26/2021 07:00:00 AM,05/26/2021 08:00:00 PM,05/19/2021 02:18:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between 11 PLACE and 21 STREET, 49 AVENUE between 21 STREET and 25 STREET, 21ST STREET between 49 AVENUE and 50 AVENUE, SKILLMAN AVENUE between 49 AVENUE and THOMPSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+579070,Shooting Permit,05/24/2021 11:00:00 AM,05/24/2021 11:59:00 PM,05/19/2021 02:08:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 49 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+579053,Shooting Permit,05/27/2021 09:00:00 AM,05/27/2021 11:00:00 PM,05/19/2021 01:32:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+579051,Shooting Permit,05/26/2021 08:00:00 AM,05/26/2021 10:00:00 PM,05/19/2021 01:26:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+579019,Shooting Permit,05/27/2021 09:00:00 AM,05/27/2021 11:00:00 PM,05/19/2021 12:07:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERDALE AVENUE between WEST 263 STREET and WEST 261 STREET, MOSHOLU AVENUE between WEST 254 STREET and WEST 256 STREET, WEST 254 STREET between RIVERDALE AVENUE and MOSHOLU AVENUE",Bronx,8,50,Television,Episodic series,United States of America,10471
+579001,Shooting Permit,05/21/2021 10:00:00 AM,05/22/2021 02:00:00 AM,05/19/2021 11:25:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between TOMPKINS AVENUE and BAY STREET,Staten Island,1,120,Television,Episodic series,United States of America,10304
+578957,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 09:00:00 PM,05/19/2021 09:49:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MALCOLM X BOULEVARD between WEST 134 STREET and WEST 129 STREET, MALCOLM X BOULEVARD between WEST 129 STREET and WEST 128 STREET, MALCOLM X BOULEVARD between WEST 128 STREET and WEST 127 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 129 STREET and WEST 127 STREET, WEST 128 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 120 STREET and WEST 117 STREET, WEST 118 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET, ADAM CLAYTON POWELL JR BOULEVARD between ODELL CLARK PLACE and WEST 137 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 136 STREET",Manhattan,10,"28, 32",Television,Pilot,United States of America,"10026, 10027, 10030, 10037"
+578947,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 02:00:00 PM,05/19/2021 09:07:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 37 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,14,Documentary,Not Applicable,United States of America,10018
+578942,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 08:00:00 PM,05/19/2021 08:37:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, WOODSIDE AVENUE between 57 STREET and 56 STREET, QUEENS BOULEVARD between 58 STREET and 51 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+578937,Shooting Permit,05/20/2021 08:00:00 AM,05/20/2021 05:00:00 PM,05/19/2021 06:27:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",Dead Road between Terrace Dr and Center Dr,Manhattan,"5, 64","14, 18, 22",WEB,Not Applicable,United States of America,"10016, 10017, 10018, 10023, 10036, 10110, 10175, 10176"
+578916,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 10:00:00 PM,05/18/2021 10:44:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD, EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 17 STREET and OCEAN AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+578917,Shooting Permit,05/27/2021 06:00:00 AM,05/27/2021 10:00:00 PM,05/18/2021 10:44:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD, EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 17 STREET and OCEAN AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+578915,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 10:00:00 PM,05/18/2021 10:44:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD, EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD, FOSTER AVENUE between EAST 17 STREET and OCEAN AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+578894,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 09:00:00 PM,05/18/2021 08:39:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between GRAND STREET and METROPOLITAN AVENUE, NORTH 1 STREET between RIVER STREET and KENT AVENUE, KENT AVENUE between GRAND STREET and NORTH 1 STREET",Brooklyn,1,90,Commercial,Commercial,United States of America,11249
+578839,Shooting Permit,05/26/2021 09:00:00 AM,05/27/2021 11:00:00 PM,05/18/2021 04:46:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERDALE AVENUE between WEST 263 STREET and WEST 261 STREET, MOSHOLU AVENUE between WEST 254 STREET and WEST 256 STREET, WEST 254 STREET between RIVERDALE AVENUE and MOSHOLU AVENUE",Bronx,8,50,Television,Episodic series,United States of America,10471
+578815,Shooting Permit,05/20/2021 12:00:00 PM,05/20/2021 11:00:00 PM,05/18/2021 04:03:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+578808,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 09:00:00 PM,05/18/2021 03:47:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSS BAY BOULEVARD between 107 AVENUE and LIBERTY AVENUE, LIBERTY AVENUE between 91 STREET and CROSS BAY BOULEVARD, ROCKAWAY BOULEVARD between 103 AVENUE and 94 STREET, 103 AVENUE between 91 STREET and ROCKAWAY BOULEVARD, 95 STREET between 108 AVENUE and LIBERTY AVENUE",Queens,"10, 9","102, 106",Film,Feature,United States of America,11417
+578807,Shooting Permit,05/24/2021 09:00:00 AM,05/24/2021 11:00:00 PM,05/18/2021 03:41:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDS STREET between WOLCOTT STREET and SULLIVAN STREET, RICHARDS STREET between SULLIVAN STREET and KING STREET, DELEVAN STREET between VAN BRUNT STREET and RICHARDS STREET, DELEVAN STREET between RICHARDS STREET and DWIGHT STREET, RICHARDS STREET between DELEVAN STREET and VERONA STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, VERONA STREET between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+578801,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 09:00:00 PM,05/18/2021 03:30:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 98 STREET and WEST 97 STREET, WEST 97 STREET between BROADWAY and WEST END AVENUE, WEST END AVENUE between WEST 96 STREET and WEST 98 STREET, WEST END AVENUE between WEST 99 STREET and WEST 98 STREET, RIVERSIDE DRIVE between WEST 103 STREET and WEST 97 STREET, WEST END AVENUE between WEST 106 STREET and WEST 103 STREET, WEST 105 STREET between WEST END AVENUE and RIVERSIDE DRIVE, RIVERSIDE DRIVE between WEST 106 STREET and WEST 105 STREET",Manhattan,7,24,Television,Cable-episodic,United States of America,10025
+578791,Shooting Permit,05/26/2021 07:00:00 AM,05/26/2021 11:00:00 PM,05/18/2021 03:06:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+578789,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 11:00:00 PM,05/18/2021 03:05:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST HOUSTON STREET and WASHINGTON SQUARE SOUTH, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Manhattan,"1, 2","6, 94",Television,Cable-episodic,United States of America,"10012, 11222"
+578782,Shooting Permit,05/21/2021 07:00:00 AM,05/21/2021 09:00:00 PM,05/18/2021 02:50:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK SOUTHWEST between 11 AVENUE and PROSPECT PARK WEST, 16 STREET between 10 AVENUE and PROSPECT PARK WEST, 16 STREET between PROSPECT PARK WEST and 8 AVENUE, PROSPECT PARK WEST between PROSPECT PARK SOUTHWEST and 16 STREET, PROSPECT PARK WEST between 16 STREET and WINDSOR PLACE, PROSPECT PARK WEST between WINDSOR PLACE and PROSPECT AVENUE",Brooklyn,"55, 7","72, 78",Television,Cable-episodic,United States of America,11215
+578775,DCAS Prep/Shoot/Wrap Permit,05/25/2021 06:00:00 AM,05/25/2021 10:00:00 PM,05/18/2021 02:41:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WORTH STREET between CENTER STREET and BAXTER STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, CENTRE STREET between WORTH STREET and PEARL STREET, LAFAYETTE STREET between WORTH STREET and DUANE STREET, LAFAYETTE STREET between LEONARD STREET and WORTH STREET",Manhattan,1,5,Television,Episodic series,United States of America,"10007, 10013"
+578773,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 08:00:00 PM,05/18/2021 02:37:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","15 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between 14 STREET and 15 STREET, 7 AVENUE between 15 STREET and 16 STREET, 8 AVENUE between 13 STREET and 16 STREET, PROSPECT PARK SOUTHWEST between PROSPECT PARK WEST and 11 AVENUE, 16 STREET between 10 AVENUE and PROSPECT PARK WEST, 16 STREET between PROSPECT PARK WEST and 8 AVENUE, PROSPECT PARK WEST between PROSPECT PARK SOUTHWEST and 16 STREET, PROSPECT PARK WEST between 16 STREET and WINDSOR PLACE, PROSPECT PARK WEST between WINDSOR PLACE and PROSPECT AVENUE",Brooklyn,"55, 6, 7","72, 78",Television,Cable-episodic,United States of America,11215
+578759,Shooting Permit,05/21/2021 08:00:00 AM,05/21/2021 10:00:00 PM,05/18/2021 01:42:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and 4 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, NEVINS STREET between BUTLER STREET and DOUGLASS STREET, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+578743,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 08:00:00 PM,05/18/2021 01:13:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between 29 STREET and 30 STREET, 30 STREET between BROADWAY and 34 AVENUE, 29 STREET between BROADWAY and 31 AVENUE, 29 STREET between BROADWAY and 33 AVENUE, BROADWAY between CRESCENT STREET and 29 STREET, 30 STREET between BROADWAY and 31 AVENUE, 31 AVENUE between 30 STREET and 29 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+578730,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 09:00:00 PM,05/18/2021 12:25:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+578726,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 07:00:00 PM,05/18/2021 12:13:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between GREENWICH STREET and BROADWAY, WARREN STREET between WEST BROADWAY and BROADWAY, WEST BROADWAY between MURRAY STREET and WARREN STREET, MURRAY STREET between GREENWICH STREET and WEST BROADWAY, CHURCH STREET between WARREN STREET and MURRAY STREET, MURRAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between WEST BROADWAY and CHURCH STREET, WEST BROADWAY between PARK PLACE and MURRAY STREET, WEST BROADWAY between PARK PLACE and BARCLAY STREET, CHURCH STREET between BARCLAY STREET and PARK PLACE, MURRAY STREET between GREENWICH STREET and WEST STREET, CHURCH STREET between WARREN STREET and CHAMBERS STREET",Manhattan,1,1,Television,Episodic series,United States of America,10007
+578719,Shooting Permit,05/20/2021 05:00:00 AM,05/20/2021 09:00:00 PM,05/18/2021 11:47:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 33 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 32 STREET between LEXINGTON AVENUE and 3 AVENUE, CHRYSTIE STREET between GRAND STREET and BROOME STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET, GRAND STREET between MOTT STREET and ELIZABETH STREET, MURRAY STREET between WEST STREET and GREENWICH STREET, GREENWICH STREET between PARK PLACE and BARCLAY STREET",Manhattan,"1, 2, 3, 6","1, 17, 5",Commercial,Commercial,United States of America,"10002, 10007, 10013, 10016"
+578671,Shooting Permit,05/22/2021 09:00:00 AM,05/22/2021 11:59:00 PM,05/18/2021 10:18:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+578666,Shooting Permit,05/21/2021 08:00:00 AM,05/21/2021 10:00:00 PM,05/18/2021 10:11:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+578647,Shooting Permit,05/21/2021 11:00:00 AM,05/22/2021 02:00:00 AM,05/18/2021 09:40:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 65 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 65 STREET and EAST 66 STREET, 3 AVENUE between EAST 64 STREET and EAST 65 STREET, EAST 66 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 52 STREET, PARK AVENUE between EAST 63 STREET and EAST 64 STREET",Manhattan,"5, 8","14, 18, 19",Television,Cable-episodic,United States of America,"10017, 10022, 10036, 10065, 10171"
+578642,Shooting Permit,05/20/2021 05:00:00 PM,05/21/2021 03:00:00 AM,05/18/2021 09:24:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, 10 AVENUE between WEST 29 STREET and WEST 28 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+578633,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 08:00:00 PM,05/18/2021 07:27:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+578629,Theater Load in and Load Outs,05/31/2021 06:00:00 AM,06/04/2021 05:00:00 AM,05/18/2021 04:15:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, WEST 75 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,20,Theater,Theater,United States of America,10023
+578572,Shooting Permit,05/20/2021 08:00:00 AM,05/20/2021 11:00:00 PM,05/17/2021 06:18:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, Kingsland Ave between Greenpoint Ave and Dead End, Kingsland ave between Greenpoint Ave and Norman Ave, Kingsland ave between NORMAN AVENUE and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+578561,Shooting Permit,05/21/2021 09:00:00 AM,05/22/2021 01:00:00 AM,05/17/2021 05:37:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, JEFFERSON STREET between STANWIX STREET and EVERGREEN AVENUE, MARCUS GARVEY BOULEVARD between WILLOUGHBY AVENUE and MYRTLE AVENUE, TROUTMAN STREET between MYRTLE AVENUE and BUSHWICK AVENUE, STANWIX STREET between JEFFERSON STREET and MELROSE STREET, METROPOLITAN AVENUE between FLUSHING AVENUE and WOODWARD AVENUE, WOODWARD AVENUE between METROPOLITAN AVENUE and FLUSHING AVENUE, WILLOUGHBY AVENUE between CENTRAL AVENUE and WILSON AVENUE, STANWIX STREET between RENAISSANCE COURT and NOLL STREET, MYRTLE AVENUE between LEWIS AVENUE and MARCUS GARVEY BOULEVARD",Brooklyn,"3, 4, 5","104, 79, 81, 83",Television,Episodic series,United States of America,"11206, 11221, 11385"
+578552,Shooting Permit,05/21/2021 10:00:00 AM,05/22/2021 03:00:00 AM,05/17/2021 04:57:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 9 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, GREENWICH AVENUE between CHRISTOPHER STREET and WEST 10 STREET, WEST 10 STREET between 6 AVENUE and 5 AVENUE, WEST 11 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 10 STREET and WEST 11 STREET, ASTOR PLACE between 3 AVENUE and FOURTH AVENUE, COOPER SQ between ASTOR PL and E 6TH ST, COOPER SQUARE between EAST 6 STREET and EAST 4 STREET",Manhattan,"2, 3","6, 9",Television,Pilot,United States of America,"10003, 10011, 10014"
+578536,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 11:00:00 PM,05/17/2021 04:27:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+578517,Shooting Permit,05/21/2021 01:00:00 PM,05/22/2021 04:00:00 AM,05/17/2021 03:34:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","49 AVENUE between VERNON BOULEVARD and JACKSON AVENUE, VERNON BOULEVARD between 48 AVENUE and 50 AVENUE, 5 STREET between BORDEN AVENUE and 48 AVENUE, BORDEN AVENUE between 2 STREET and 5 STREET, BORDEN AVENUE between BORDEN AVENUE and BORDEN AVENUE",Queens,2,108,Film,Feature,United States of America,"11101, 11109"
+578507,Shooting Permit,05/20/2021 09:00:00 AM,05/20/2021 05:00:00 PM,05/17/2021 03:10:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE STREET between BROOME STREET and SPRING STREET,Manhattan,2,1,Still Photography,Not Applicable,United States of America,10012
+578501,Shooting Permit,05/20/2021 06:30:00 AM,05/20/2021 08:00:00 PM,05/17/2021 02:56:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",INDIAN ROAD between WEST 215 STREET and WEST 218 STREET,Manhattan,12,34,Still Photography,Not Applicable,United States of America,10034
+578485,Shooting Permit,05/27/2021 07:00:00 AM,05/27/2021 09:00:00 PM,05/17/2021 02:14:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+578484,Shooting Permit,05/26/2021 07:00:00 AM,05/26/2021 09:00:00 PM,05/17/2021 02:12:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+578483,Shooting Permit,05/25/2021 07:00:00 AM,05/25/2021 09:00:00 PM,05/17/2021 02:10:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+578446,Shooting Permit,05/19/2021 02:00:00 PM,05/20/2021 12:00:00 AM,05/17/2021 12:57:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHATHAM SQUARE between MOTT STREET and DOYERS STREET, BOWERY between BAYARD STREET and DOYERS STREET, BOWERY between CANAL STREET and BAYARD STREET, BAYARD STREET between ELIZABETH STREET and BOWERY, PELL STREET between BOWERY and MOTT STREET, MOTT STREET between BAYARD STREET and PELL STREET, MOTT STREET between PELL STREET and MOSCO STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET, BOWERY between CANAL STREET and KENMARE STREET, BROOME STREET between BOWERY and ELIZABETH STREET, CANAL STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013, 10038"
+578432,Shooting Permit,05/21/2021 09:00:00 AM,05/21/2021 11:30:00 PM,05/17/2021 12:27:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","PAIDGE AVENUE between PROVOST STREET and CLAY STREET, PROVOST STREET between PAIDGE AVENUE and JAVA STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+578423,Theater Load in and Load Outs,05/27/2021 12:01:00 AM,05/27/2021 11:59:00 PM,05/17/2021 12:05:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+578420,Shooting Permit,05/24/2021 07:00:00 AM,05/24/2021 09:00:00 PM,05/17/2021 12:01:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+578411,Shooting Permit,05/21/2021 02:00:00 PM,05/22/2021 04:00:00 AM,05/17/2021 11:45:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 47 STREET and WEST 45 STREET, WEST 48 STREET between 8 AVENUE and BROADWAY, WEST 47 STREET between 8 AVENUE and BROADWAY, WEST 46 STREET between 8 AVENUE and BROADWAY, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE, WEST 51 STREET between 7 AVENUE and 5 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10019, 10020, 10036"
+578364,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 09:00:00 PM,05/17/2021 09:31:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+578360,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 09:00:00 PM,05/17/2021 09:21:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 101 STREET and EAST 98 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET, LEXINGTON AVENUE between EAST 104 STREET and EAST 109 STREET, PARK AVENUE between EAST 104 STREET and EAST 102 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+578295,Shooting Permit,05/20/2021 06:00:00 AM,05/20/2021 08:00:00 PM,05/16/2021 06:33:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASTORIA PARK SOUTH between SHORE BOULEVARD and 21 STREET,Queens,1,114,Still Photography,Not Applicable,United States of America,"11102, 11105"
+578290,Shooting Permit,05/20/2021 10:30:00 AM,05/21/2021 01:00:00 AM,05/16/2021 06:03:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between NORTH 1 STREET and GRAND STREET, KENT AVENUE between GRAND STREET and SOUTH 1 STREET, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE, SOUTH 6 STREET between KENT AVENUE and DUNHAM PLACE, DUNHAM PLACE between SOUTH 6 STREET and BROADWAY, KENT AVENUE between BROADWAY and SOUTH 6 STREET, GRAND STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,"1, 3","7, 90, 94",Television,Cable-episodic,United States of America,"10002, 11211, 11249"
+578182,Shooting Permit,05/19/2021 06:00:00 AM,05/19/2021 08:00:00 PM,05/15/2021 07:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",ASTORIA PARK SOUTH between 21 STREET and SHORE BOULEVARD,Queens,1,114,Still Photography,Not Applicable,United States of America,"11102, 11105"
+578109,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 08:00:00 PM,05/14/2021 07:01:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+578106,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 11:00:00 PM,05/14/2021 06:38:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+578083,Shooting Permit,05/20/2021 09:00:00 AM,05/21/2021 01:00:00 AM,05/14/2021 05:03:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and HOYT STREET, ATLANTIC AVENUE between HOYT STREET and BOND STREET, BOND STREET between ATLANTIC AVENUE and STATE STREET, SMITH STREET between PACIFIC STREET and ATLANTIC AVENUE, SMITH STREET between STATE STREET and SCHERMERHORN STREET",Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+578082,Shooting Permit,05/20/2021 10:00:00 AM,05/20/2021 04:00:00 PM,05/14/2021 05:02:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBEMARLE ROAD between WESTMINSTER ROAD and ARGYLE ROAD, WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, ARGYLE ROAD between CHURCH AVENUE and ALBEMARLE ROAD, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, STRATFORD ROAD between CATON AVENUE and CHURCH AVENUE, ARGYLE ROAD between CATON AVENUE and CHURCH AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11218
+578048,Shooting Permit,05/18/2021 09:00:00 AM,05/18/2021 10:00:00 PM,05/14/2021 03:36:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 148 STREET and WEST 149 STREET, WEST 148 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 148 STREET and WEST 147 STREET",Manhattan,9,"20, 30",Commercial,Commercial,United States of America,"10024, 10031"
+577987,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 11:00:00 PM,05/14/2021 12:35:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577982,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 11:00:00 PM,05/14/2021 12:27:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577961,Shooting Permit,05/21/2021 07:00:00 AM,05/21/2021 08:00:00 PM,05/14/2021 11:31:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",BERGEN STREET between HOYT STREET and BOND STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11217
+577957,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 08:00:00 PM,05/14/2021 11:18:58 AM,"Mayor's Office of Film, Theatre & Broadcasting",BERGEN STREET between HOYT STREET and BOND STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11217
+577949,Theater Load in and Load Outs,05/31/2021 12:01:00 AM,06/06/2021 11:59:00 PM,05/14/2021 10:48:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between RIVER AVENUE and JEROME AVENUE,Bronx,4,44,Television,Cable-other,United States of America,"10451, 10452"
+577941,Shooting Permit,05/19/2021 11:00:00 AM,05/20/2021 12:00:00 AM,05/14/2021 10:30:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALBION AVENUE between QUEENS BOULEVARD and BARNWELL AVENUE, QUEENS BOULEVARD between IRELAND STREET and JACOBUS STREET, QUEENS BOULEVARD between HILLYER STREET and BARNWELL AVENUE, BARNWELL AVENUE between QUEENS BOULEVARD and POYER STREET",Queens,4,110,Television,Episodic series,United States of America,11373
+577936,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 10:00:00 PM,05/14/2021 10:25:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 9 STREET and WEST 11 STREET, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10003, 10011"
+577930,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 09:00:00 PM,05/14/2021 10:03:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",36 AVENUE between 21 STREET and 24 STREET,Manhattan,"1, 8",114,Television,Episodic series,United States of America,"10044, 11106"
+577929,Shooting Permit,05/18/2021 02:00:00 PM,05/19/2021 04:00:00 AM,05/14/2021 10:03:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between ZULETTE AVENUE and WELLMAN AVENUE, MAYFLOWER AVENUE between MAITLAND AVENUE and WELLMAN AVENUE, ZULETTE AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, WELLMAN AVENUE between ERICSON PLACE and MAYFLOWER AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, Hutchinson River Parkway E between E Tremont Ave and Roebling Ave",Bronx,10,45,Television,Cable-episodic,United States of America,10461
+577921,Shooting Permit,05/18/2021 10:00:00 AM,05/19/2021 10:00:00 PM,05/14/2021 09:39:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 60 STREET and EAST 63 STREET, EAST 60 STREET between 5 AVENUE and MADISON AVENUE, EAST 62 STREET between 5 AVENUE and MADISON AVENUE, EAST 62 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"1, 2, 64, 8","108, 114, 19, 22, 94",Television,Cable-episodic,United States of America,"10022, 10023, 10044, 10065, 11101, 11222"
+577912,Shooting Permit,05/19/2021 07:00:00 AM,05/20/2021 01:00:00 AM,05/14/2021 08:47:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","ESSEX STREET between GRAND STREET and CANAL STREET, EAST BROADWAY between JEFFERSON STREET and CLINTON STREET, EAST BROADWAY between RUTGERS STREET and JEFFERSON STREET, RUTGERS STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between PIKE STREET and RUTGERS STREET, HENRY STREET between FORSYTH STREET and PIKE STREET, HENRY STREET between MARKET STREET and FORSYTH STREET, PIKE STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET, MARKET STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and FORSYTH STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+577900,Shooting Permit,05/21/2021 06:00:00 AM,05/21/2021 08:00:00 PM,05/13/2021 11:14:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between 5 AVENUE and MADISON AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE, EAST 27 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"4, 5","10, 13",WEB,Not Applicable,United States of America,"10001, 10010, 10016"
+577891,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 09:00:00 PM,05/13/2021 10:04:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+577889,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 09:00:00 PM,05/13/2021 10:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+577888,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 09:00:00 PM,05/13/2021 09:57:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+577829,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 11:59:00 PM,05/13/2021 04:59:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","ESSEX STREET between GRAND STREET and CANAL STREET, EAST BROADWAY between JEFFERSON STREET and CLINTON STREET, EAST BROADWAY between RUTGERS STREET and JEFFERSON STREET, RUTGERS STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between PIKE STREET and RUTGERS STREET, HENRY STREET between FORSYTH STREET and PIKE STREET, HENRY STREET between MARKET STREET and FORSYTH STREET, PIKE STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between FORSYTH STREET and PIKE STREET, MARKET STREET between EAST BROADWAY and HENRY STREET, EAST BROADWAY between CATHERINE STREET and MARKET STREET, EAST BROADWAY between MARKET STREET and FORSYTH STREET, FORSYTH STREET between EAST BROADWAY and HENRY STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+577791,Shooting Permit,05/19/2021 02:00:00 PM,05/20/2021 05:00:00 AM,05/13/2021 03:31:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",METROPOLITAN AVENUE between RENTAR PLAZA and 69 STREET,Queens,5,104,Film,Feature,United States of America,11379
+577757,Shooting Permit,05/16/2021 06:00:00 AM,05/16/2021 09:00:00 PM,05/13/2021 02:17:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between CHURCH STREET and BROADWAY, CHURCH STREET between BARCLAY STREET and WARREN STREET, PARK PLACE between CHURCH STREET and BROADWAY, WARREN STREET between BROADWAY and GREENWICH STREET, CORTLANDT STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007"
+577725,Shooting Permit,05/18/2021 08:00:00 AM,05/18/2021 08:00:00 PM,05/13/2021 01:13:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARFIELD PLACE between 8 AVENUE and FISKE PLACE, 7 AVENUE between CARROLL STREET and GARFIELD PLACE, 1 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between LINCOLN PLACE and BERKELEY PLACE, POLHEMUS PLACE between CARROLL STREET and GARFIELD PLACE",Brooklyn,6,78,Commercial,PSA,United States of America,"11215, 11217"
+577710,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 11:00:00 PM,05/13/2021 12:42:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577678,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 07:00:00 PM,05/13/2021 11:26:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, WEST 9 STREET between HICKS STREET and COLUMBIA STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+577668,Shooting Permit,05/13/2021 03:00:00 PM,05/14/2021 07:00:00 AM,05/13/2021 11:10:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 47 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 47 STREET and WEST 48 STREET, 10 AVENUE between WEST 47 STREET and WEST 48 STREET, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, 8 AVENUE between WEST 43 STREET and WEST 44 STREET, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, WEST 45 STREET between 8 AVENUE and 7 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 47 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 6 AVENUE and 7 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+577650,Shooting Permit,05/18/2021 11:00:00 AM,05/19/2021 02:00:00 AM,05/13/2021 10:03:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 10 AVENUE and 8 AVENUE, WEST 58 STREET between 9 AVENUE and 8 AVENUE, BROADWAY between WEST 58 STREET and WEST 57 STREET, BROADWAY between WEST 61 STREET and WEST 63 STREET, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 61 STREET and WEST 62 STREET",Manhattan,"4, 5, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+577649,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 07:00:00 PM,05/13/2021 10:00:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, WEST 9 STREET between HICKS STREET and COLUMBIA STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+577637,Shooting Permit,05/15/2021 07:00:00 AM,05/15/2021 11:00:00 PM,05/13/2021 09:16:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577636,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 08:00:00 PM,05/13/2021 09:12:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRYSTIE STREET between CANAL STREET and HESTER STREET, CHRYSTIE STREET between HESTER STREET and GRAND STREET, EAST 24 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH, EAST 24 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 21 STREET between PARK AVENUE SOUTH and Gramercy park west",Manhattan,"3, 5, 6","13, 5",Television,Cable-episodic,United States of America,"10002, 10010"
+577634,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 07:00:00 PM,05/13/2021 08:50:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","HICKS STREET between WEST 9 STREET and HUNTINGTON STREET, WEST 9 STREET between HICKS STREET and COLUMBIA STREET",Brooklyn,6,76,Still Photography,Not Applicable,United States of America,11231
+577627,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 08:00:00 PM,05/13/2021 08:39:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 1 STREET between BERRY STREET and WYTHE AVENUE, WYTHE AVENUE between NORTH 1 STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between BERRY STREET and BEDFORD AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,11249
+577566,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 08:30:00 PM,05/12/2021 06:28:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAUNCEY STREET between LEWIS AVENUE and STUYVESANT AVENUE, JAMAICA AVENUE between 85 STREET and FOREST PARKWAY",Brooklyn,"3, 9","102, 81",Television,Game show,United States of America,"11213, 11233, 11421"
+577548,Shooting Permit,05/17/2021 09:00:00 AM,05/17/2021 11:00:00 PM,05/12/2021 05:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 60 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 67 STREET and WEST 69 STREET, BROADWAY between WEST 70 STREET and WEST 68 STREET, WEST 69 STREET between BROADWAY and AMSTERDAM AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Manhattan,"4, 7, 9","18, 20, 43",Television,Cable-episodic,United States of America,"10019, 10023, 10473"
+577541,Shooting Permit,05/14/2021 07:00:00 AM,05/14/2021 11:00:00 PM,05/12/2021 04:58:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577509,Shooting Permit,05/19/2021 08:00:00 AM,05/19/2021 11:00:00 PM,05/12/2021 03:31:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577505,Shooting Permit,05/14/2021 10:00:00 AM,05/14/2021 11:00:00 PM,05/12/2021 03:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, WILIAM ST between LIBERTY ST and CEDAR ST, LIBERTY STREET between NASSAU STREET and BROADWAY, LIBERTY STREET between BROADWAY and TRINITY PLACE, BROADWAY between CORTLANDT STREET and CEDAR STREET",Manhattan,"1, 2","1, 108",Television,Cable-episodic,United States of America,"10005, 10006, 10038, 10045, 11101"
+577463,Shooting Permit,05/16/2021 08:00:00 AM,05/16/2021 11:00:00 PM,05/12/2021 01:21:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 7 STREET between AVENUE B and AVENUE A,Manhattan,3,9,WEB,Not Applicable,United States of America,10009
+577459,Shooting Permit,05/15/2021 08:00:00 AM,05/15/2021 11:30:00 PM,05/12/2021 01:13:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 7 STREET between AVENUE B and AVENUE A,Manhattan,3,9,WEB,Not Applicable,United States of America,10009
+577454,Shooting Permit,05/16/2021 10:00:00 AM,05/16/2021 11:59:00 PM,05/12/2021 12:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between HURON STREET and EAGLE STREET",Brooklyn,1,94,Television,Pilot,United States of America,11222
+577451,Shooting Permit,05/15/2021 07:00:00 AM,05/15/2021 09:00:00 PM,05/12/2021 12:56:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER DRIVE between HOLLYWOOD AVENUE and MANOR ROAD, CENTER DRIVE between MANOR ROAD and BEVERLY ROAD, CENTER DRIVE between BEVERLY ROAD and GROSVENOR STREET, CENTER DRIVE between GROSVENOR STREET and WARWICK AVENUE, CENTER DR between WARWICK AVENUE and RICHMOND ROAD, BEVERLY ROAD between CENTER DRIVE and WEST DRIVE, NORTHERN BOULEVARD between LITTLE NECK PARKWAY and BROWVALE LANE, LITTLE NECK PARKWAY between 42 AVENUE and NORTHERN BOULEVARD, NORTHERN BOULEVARD between LITTLE NECK PARKWAY and 254 STREET, MANOR ROAD between CENTER DRIVE and EAST DRIVE",Queens,11,111,Television,Pilot,United States of America,"11360, 11362, 11363"
+577443,Shooting Permit,05/18/2021 08:00:00 AM,05/18/2021 11:00:00 PM,05/12/2021 12:42:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577442,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 10:00:00 PM,05/12/2021 12:41:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+577440,Shooting Permit,05/21/2021 07:00:00 AM,05/21/2021 11:00:00 PM,05/12/2021 12:32:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+577436,Shooting Permit,05/20/2021 07:00:00 AM,05/20/2021 11:00:00 PM,05/12/2021 12:22:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+577432,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 11:00:00 PM,05/12/2021 12:09:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+577420,Shooting Permit,05/21/2021 10:00:00 AM,05/21/2021 11:59:00 PM,05/12/2021 11:45:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+577406,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 07:00:00 PM,05/12/2021 11:17:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",51 AVENUE between 2 STREET and 5 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+577403,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 07:00:00 PM,05/12/2021 11:14:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",51 AVENUE between 2 STREET and 5 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+577335,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 10:00:00 PM,05/12/2021 09:12:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","PINE STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET, PEARL STREET between MAIDEN LANE and PINE STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between MAIDEN LANE and WALL STREET, WATER STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between PEARL STREET and FRONT STREET, JOHN STREET between FRONT STREET and SOUTH STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+577314,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 08:00:00 PM,05/12/2021 07:17:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between RIEGELMANN BOARDWALK and SURF AVENUE, WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK",Brooklyn,13,60,Television,Cable-episodic,United States of America,11224
+577272,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 09:00:00 PM,05/11/2021 08:53:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+577271,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 09:00:00 PM,05/11/2021 08:51:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+577257,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 11:00:00 PM,05/11/2021 07:45:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 116 STREET between THIRD AVENUE and PARK AVENUE, EAST 116 STREET between THIRD AVENUE and 2 AVENUE, THIRD AVENUE between EAST 118 STREET and EAST 116 STREET, EAST 109 STREET between SECOND AVENUE and FIRST AVENUE, 1 AVENUE between EAST 109 STREET and EAST 110 STREET, EAST 109 STREET between 2 AVENUE and 3 AVENUE",Manhattan,11,"23, 25",Television,Pilot,United States of America,"10029, 10035"
+577239,Shooting Permit,05/14/2021 07:00:00 AM,05/14/2021 07:00:00 PM,05/11/2021 06:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NORTH HENRY STREET and RUSSELL STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Pilot,United States of America,11222
+577217,Shooting Permit,05/16/2021 05:00:00 AM,05/16/2021 10:00:00 PM,05/11/2021 05:30:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WORTH STREET and LEONARD STREET, CENTRE STREET between HOGAN PLACE and WHITE STREET, CENTRE STREET between WHITE STREET and WALKER STREET, WHITE STREET between LAFAYETTE STREET and CENTRE STREET, WHITE STREET between LAFAYETTE STREET and CORTLANDT ALLEY, LEONARD STREET between CENTRE STREET and LAFAYETTE STREET, MERCER STREET between BROOME STREET and GRAND STREET, WORTH STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between WORTH STREET and LEONARD STREET, CATHERINE LANE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between WORTH STREET and LEONARD STREET",Manhattan,"1, 2","1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+577175,Shooting Permit,05/20/2021 06:00:00 AM,05/20/2021 10:00:00 PM,05/11/2021 04:06:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577173,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 10:00:00 PM,05/11/2021 03:57:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+577152,Shooting Permit,05/17/2021 12:00:00 PM,05/18/2021 03:00:00 AM,05/11/2021 03:07:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLINTON AVENUE between PARK AVENUE and WILLOUGHBY AVENUE, WAVERLY AVENUE between PARK AVENUE and WILLOUGHBY AVENUE, CLIFTON PLACE between GRAND AVENUE and ST JAMES PLACE, WASHINGTON AVENUE between GREENE AVENUE and GATES AVENUE, ST JAMES PLACE between GREENE AVENUE and GATES AVENUE, CLINTON AVENUE between GREENE AVENUE and GATES AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,"11205, 11238"
+577138,Shooting Permit,05/13/2021 04:00:00 PM,05/14/2021 03:00:00 AM,05/11/2021 02:47:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",11 AVENUE between WEST 55 STREET and WEST 56 STREET,Manhattan,"1, 4, 5, 6, 7","1, 13, 14, 17, 18, 20",Television,Cable-episodic,United States of America,"10002, 10003, 10007, 10009, 10010, 10016, 10017, 10019, 10022, 10023, 10069, 10152, 10167, 10171, 10172, 10177"
+577067,Shooting Permit,05/19/2021 07:00:00 AM,05/19/2021 08:00:00 PM,05/11/2021 12:23:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 110 STREET between MALCOLM X BOULEVARD and DUKE ELLINGTON CIRCLE,Manhattan,"10, 64","22, 28",Still Photography,Not Applicable,United States of America,"10025, 10026"
+577023,Shooting Permit,05/14/2021 07:00:00 AM,05/14/2021 10:00:00 PM,05/11/2021 11:23:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+577003,Shooting Permit,05/14/2021 08:00:00 AM,05/14/2021 08:00:00 PM,05/11/2021 10:51:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",SEAVER WAY between ROOSEVELT AVENUE and 37 AVENUE,Queens,"7, 81",110,Commercial,Commercial,United States of America,11368
+576971,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 09:00:00 PM,05/11/2021 09:56:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 75 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 74 STREET between WEST END AVENUE and BROADWAY, WEST 74 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 76 STREET and WEST 75 STREET, BROADWAY between WEST 74 STREET and WEST 73 STREET, BROADWAY between WEST 75 STREET and WEST 74 STREET, AMSTERDAM AVENUE between WEST 75 STREET and WEST 73 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK W between WEST 77 STREET and W 78TH ST",Manhattan,"64, 7","20, 22",Film,Feature,United States of America,"10023, 10024, 10025"
+576959,Shooting Permit,05/13/2021 05:00:00 PM,05/14/2021 05:00:00 AM,05/11/2021 09:23:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 56 STREET between 10 AVENUE and 11 AVENUE, WEST 56 STREET between 9 AVENUE and 10 AVENUE, BROADWAY between WEST 38 STREET and WEST 41 STREET, WEST 40 STREET between BROADWAY and 6 AVENUE, WEST 40 STREET between 6 AVENUE and 5 AVENUE, WEST 39 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 42 STREET and EAST 40 STREET, WEST 42 STREET between 5 AVENUE and 6 AVENUE, WEST 57 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,"10017, 10018, 10019, 10036"
+576940,Shooting Permit,05/14/2021 08:00:00 AM,05/14/2021 10:00:00 PM,05/11/2021 07:18:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, BUTLER STREET between 3 AVENUE and 4 AVENUE, DEGRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+576939,Shooting Permit,05/14/2021 08:00:00 AM,05/14/2021 10:00:00 PM,05/11/2021 07:18:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+576904,Shooting Permit,05/13/2021 08:00:00 PM,05/14/2021 03:00:00 AM,05/10/2021 09:13:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 54 STREET between MADISON AVENUE and 5 AVENUE, WEST 49 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Made for TV/mini-series,United States of America,"10020, 10022, 10112"
+576868,Shooting Permit,05/14/2021 08:00:00 AM,05/15/2021 12:30:00 AM,05/10/2021 06:59:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+576857,Shooting Permit,05/13/2021 07:00:00 AM,05/13/2021 11:00:00 PM,05/10/2021 06:38:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between GREENPOINT AVENUE and DEAD END, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576847,Shooting Permit,05/13/2021 11:00:00 AM,05/14/2021 12:00:00 AM,05/10/2021 05:50:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 113 STREET and WEST 112 STREET, RIVERSIDE DRIVE between WEST 113 STREET and WEST 116 STREET, BROADWAY between WEST 111 STREET and WEST 109 STREET, BROADWAY between WEST 111 STREET and WEST 120 STREET",Manhattan,"7, 9","24, 26",Television,Episodic series,United States of America,"10025, 10027"
+576843,Shooting Permit,05/14/2021 12:00:00 PM,05/14/2021 11:59:00 PM,05/10/2021 05:22:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","STAGG STREET between STEWART AVENUE and GARDNER AVENUE, EAST BROADWAY between JEFFERSON STREET and RUTGERS STREET",Manhattan,"1, 3","5, 7, 90",Film,Short,United States of America,"10002, 11237"
+576831,Shooting Permit,05/13/2021 08:00:00 AM,05/13/2021 06:00:00 PM,05/10/2021 04:57:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","PRINCE STREET between BOWERY and ELIZABETH STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BLEECKER STREET and BOND STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 9 STREET and EAST 10 STREET, 3 AVENUE between ASTOR PLACE and EAST 9 STREET",Brooklyn,"1, 2, 3","5, 9, 94",Television,Episodic series,United States of America,"10003, 10012, 11222"
+576806,Shooting Permit,05/12/2021 06:30:00 AM,05/12/2021 09:30:00 PM,05/10/2021 04:07:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between DEAD END and COMMERCIAL STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576785,Shooting Permit,05/13/2021 07:00:00 PM,05/14/2021 02:00:00 AM,05/10/2021 03:22:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, FURMANVILLE AVENUE between 78 STREET and 79 PLACE, JUNIPER VALLEY ROAD between 78 STREET and 79 STREET, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, JUNIPER BLVD SOUTH between 77 STREET and 80 STREET",Queens,5,104,Television,Episodic series,United States of America,11379
+576752,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 12:00:00 PM,05/10/2021 02:00:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between SPRING STREET and CANAL STREET",Manhattan,2,1,Television,Cable-other,United States of America,"10013, 10014"
+576749,Shooting Permit,05/14/2021 06:30:00 AM,05/14/2021 10:00:00 PM,05/10/2021 01:52:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576737,Shooting Permit,05/13/2021 08:00:00 AM,05/14/2021 12:30:00 AM,05/10/2021 01:22:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+576728,Shooting Permit,05/13/2021 09:00:00 AM,05/13/2021 11:00:00 PM,05/10/2021 01:05:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","FINDLAY AVENUE between EAST 167 STREET and EAST 168 STREET, FINDLAY AVENUE between EAST 167 STREET and EAST 168 STREET, FINDLAY AVENUE between EAST 168 STREET and EAST 169 STREET, EAST 168 STREET between FINDLAY AVENUE and TELLER AVENUE, WEBSTER AVENUE between CLAREMONT PARKWAY and EAST 170 STREET, WEBSTER AVENUE between EAST 170 STREET and EAST 169 STREET, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"3, 4, 9","42, 43, 44",Television,Cable-episodic,United States of America,"10456, 10457, 10473"
+576727,Shooting Permit,05/26/2021 06:00:00 AM,05/26/2021 10:00:00 PM,05/10/2021 01:03:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576724,Shooting Permit,05/25/2021 06:00:00 AM,05/25/2021 10:00:00 PM,05/10/2021 01:00:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576722,Shooting Permit,05/24/2021 06:00:00 AM,05/24/2021 10:00:00 PM,05/10/2021 12:57:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576717,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 11:00:00 PM,05/10/2021 12:49:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+576714,Shooting Permit,05/17/2021 07:00:00 AM,05/17/2021 11:00:00 PM,05/10/2021 12:44:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+576710,Shooting Permit,05/16/2021 07:00:00 AM,05/16/2021 11:00:00 PM,05/10/2021 12:38:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+576707,Shooting Permit,05/15/2021 07:00:00 AM,05/16/2021 01:00:00 AM,05/10/2021 12:33:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+576695,Shooting Permit,05/13/2021 08:00:00 AM,05/13/2021 11:59:00 PM,05/10/2021 12:03:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","39 AVENUE between 29 STREET and 30 STREET, 30 STREET between 39 AVENUE and 40 AVENUE, 29 STREET between 38 AVENUE and 39 AVENUE, 39 AVENUE between 28 STREET and 29 STREET, 39 AVENUE between 30 STREET and 31 STREET, 31 STREET between 38 AVENUE and 39 AVENUE, 29 STREET between 39 AVENUE and 40 AVENUE, SKILLMAN AVENUE between 33 STREET and 39 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+576677,Shooting Permit,05/13/2021 07:00:00 AM,05/13/2021 10:00:00 PM,05/10/2021 11:26:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+576633,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 09:00:00 PM,05/10/2021 09:09:54 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+576631,Shooting Permit,05/16/2021 06:00:00 AM,05/16/2021 09:00:00 PM,05/10/2021 09:07:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+576628,Shooting Permit,05/15/2021 06:00:00 AM,05/15/2021 09:00:00 PM,05/10/2021 09:04:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+576626,Shooting Permit,05/14/2021 06:00:00 AM,05/14/2021 09:00:00 PM,05/10/2021 09:01:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+576623,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 11:00:00 PM,05/10/2021 08:55:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+576611,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 12:00:00 PM,05/10/2021 08:03:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON STREET between FRONT STREET and YORK STREET,Brooklyn,2,84,Television,Made for TV/mini-series,United States of America,11201
+576594,Shooting Permit,05/13/2021 07:00:00 AM,05/13/2021 07:00:00 PM,05/09/2021 10:45:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 104 STREET and WEST 103 STREET,Manhattan,7,24,WEB,Not Applicable,United States of America,"10024, 10025"
+576592,Shooting Permit,05/13/2021 08:00:00 AM,05/13/2021 09:00:00 PM,05/09/2021 10:29:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11230
+576590,Shooting Permit,05/12/2021 08:00:00 AM,05/12/2021 08:00:00 PM,05/09/2021 10:22:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Commercial,Commercial,United States of America,11205
+576576,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 08:00:00 PM,05/09/2021 06:41:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between BUSHWICK AVENUE and BROADWAY, MYRTLE AVENUE between NORTH PORTLAND AVENUE and ST EDWARDS STREET",Brooklyn,"2, 4","83, 88",Commercial,Commercial,United States of America,"11201, 11205, 11207"
+576398,Shooting Permit,05/18/2021 07:00:00 AM,05/18/2021 11:30:00 PM,05/07/2021 05:43:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANSON PLACE between ASHLAND PLACE and ST FELIX STREET, ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, HANSON PLACE between ST FELIX STREET and FORT GREENE PLACE, ST FELIX STREET between FULTON STREET and LAFAYETTE AVENUE, ASHLAND PLACE between FULTON STREET and LAFAYETTE AVENUE, ASHLAND PLACE between DEKALB AVENUE and FULTON STREET, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, ST FELIX STREET between DEKALB AVENUE and FULTON STREET, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE, MYRTLE AVENUE between ASHLAND PLACE and NORTH PORTLAND AVENUE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,"11201, 11205, 11217"
+576394,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 11:00:00 PM,05/07/2021 05:30:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576391,Shooting Permit,05/12/2021 08:00:00 AM,05/12/2021 09:00:00 PM,05/07/2021 05:15:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 72 STREET between AMSTERDAM AVENUE and CENTRAL PARK WEST, COLUMBUS AVENUE between WEST 75 STREET and WEST 71 STREET, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY, RIVERSIDE DRIVE between WEST 113 STREET and WEST 112 STREET, RIVERSIDE DRIVE between WEST 113 STREET and WEST 116 STREET, BROADWAY between WEST 111 STREET and WEST 109 STREET, BROADWAY between WEST 111 STREET and WEST 120 STREET",Manhattan,"64, 7, 9","20, 22, 24, 26",Television,Episodic series,United States of America,"10023, 10025, 10027"
+576374,Shooting Permit,05/15/2021 12:00:00 PM,05/15/2021 11:59:00 PM,05/07/2021 04:42:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",STAGG STREET between STEWART AVENUE and GARDNER AVENUE,Brooklyn,1,90,Film,Short,United States of America,11237
+576363,Shooting Permit,05/15/2021 10:00:00 AM,05/15/2021 11:59:00 PM,05/07/2021 04:31:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 4 STREET between AVENUE C and AVENUE D,Manhattan,3,9,Film,Short,United States of America,10009
+576355,Shooting Permit,05/12/2021 10:00:00 AM,05/12/2021 06:00:00 PM,05/07/2021 04:07:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 9 AVENUE and 10 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 8 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+576349,DCAS Prep/Shoot/Wrap Permit,05/12/2021 05:00:00 PM,05/13/2021 02:00:00 AM,05/07/2021 03:51:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between FRANKLIN STREET and WALKER STREET, WALKER STREET between BROADWAY and CHURCH STREET, MURRAY STREET between BROADWAY and CHURCH STREET, CENTRE STREET between DUANE STREET and READE STREET, CHAMBERS STREET between ELK STREET and BROADWAY",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10013"
+576347,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 10:00:00 PM,05/07/2021 03:45:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 6 STREET and 8 STREET, 8 STREET between 3 AVENUE and 4 AVENUE, 68 STREET between SHORE ROAD and NARROWS AVENUE, 85 STREET between NARROWS AVENUE and RIDGE BOULEVARD",Brooklyn,"10, 6","68, 78",Commercial,Commercial,United States of America,"11209, 11215, 11220"
+576346,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 10:00:00 PM,05/07/2021 03:45:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between WARREN STREET and BALTIC STREET, COURT STREET between ATLANTIC AVENUE and DEAN STREET, ATLANTIC AVENUE between COURT STREET and BOERUM PLACE",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,"11201, 11231"
+576345,Shooting Permit,05/13/2021 07:00:00 AM,05/13/2021 11:00:00 PM,05/07/2021 03:45:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 2 STREET between BOWERY and 2 AVENUE, COOPER SQUARE between EAST 6 STREET and ST MARKS PLACE, EAST BROADWAY between FORSYTH STREET and PIKE STREET, EAST BROADWAY between PIKE STREET and MARKET STREET, PIKE STREET between EAST BROADWAY and HENRY STREET",Manhattan,3,"5, 7, 9",Commercial,Commercial,United States of America,"10002, 10003"
+576325,Shooting Permit,05/11/2021 06:00:00 AM,05/11/2021 08:00:00 PM,05/07/2021 02:49:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, JEFFERSON AVENUE between STUYVESANT AVENUE and MALCOLM X BOULEVARD",Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11221
+576322,Shooting Permit,05/11/2021 06:30:00 AM,05/11/2021 09:00:00 PM,05/07/2021 02:35:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 41 STREET and EAST 39 STREET, PARK AVENUE between EAST 39 STREET and EAST 35 STREET, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 36 STREET between MADISON AVENUE and PARK AVENUE, EAST 35 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017"
+576321,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 10:00:00 PM,05/07/2021 02:33:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, WEST 23 STREET between 8 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+576312,Shooting Permit,05/12/2021 06:30:00 AM,05/12/2021 07:30:00 PM,05/07/2021 02:07:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH, 19 STREET between 22 ROAD and 23 AVENUE",Queens,1,114,WEB,Not Applicable,United States of America,11105
+576283,Shooting Permit,05/11/2021 06:00:00 AM,05/11/2021 08:00:00 PM,05/07/2021 01:07:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD, WESTMINSTER ROAD between ALBEMARLE ROAD and BEVERLY ROAD",Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+576269,Shooting Permit,05/12/2021 02:00:00 PM,05/13/2021 07:00:00 AM,05/07/2021 12:18:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 9 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, 8 AVENUE between WEST 47 STREET and WEST 48 STREET, WEST 48 STREET between 8 AVENUE and BROADWAY, WEST 47 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 47 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 47 STREET and WEST 48 STREET, 10 AVENUE between WEST 47 STREET and WEST 48 STREET, WEST 45 STREET between 8 AVENUE and 7 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+576247,Shooting Permit,05/11/2021 06:00:00 AM,05/11/2021 09:00:00 PM,05/07/2021 11:11:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between ALBERMARLE ROAD and CHURCH AVENUE,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+576233,Shooting Permit,06/07/2021 07:00:00 AM,06/07/2021 09:00:00 PM,05/07/2021 10:49:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+576173,Shooting Permit,05/10/2021 09:00:00 AM,05/10/2021 10:00:00 PM,05/07/2021 08:22:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 ROAD between 11 STREET and 21 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+576172,Shooting Permit,05/11/2021 09:00:00 AM,05/11/2021 10:00:00 PM,05/07/2021 08:22:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",44 ROAD between 11 STREET and 21 STREET,Queens,2,108,Still Photography,Not Applicable,United States of America,11101
+576171,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 10:00:00 PM,05/07/2021 08:13:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between BROADWAY and CHURCH STREET, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET, WARREN STREET between BROADWAY and GREENWICH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+576170,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 07:00:00 PM,05/07/2021 08:12:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between READE STREET and CHAMBERS STREET, BROADWAY between MURRAY STREET and WARREN STREET",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,10007
+576124,Shooting Permit,05/13/2021 06:00:00 AM,05/14/2021 02:00:00 AM,05/06/2021 09:16:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576103,Theater Load in and Load Outs,05/13/2021 12:01:00 AM,05/13/2021 11:59:00 PM,05/06/2021 07:52:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+576100,Shooting Permit,05/12/2021 05:00:00 PM,05/13/2021 07:00:00 AM,05/06/2021 07:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","157 STREET between FOCH BOULEVARD and 116 AVENUE, BARRON STREET between 116 AVENUE and FOCH BOULEVARD, 116 ROAD between BARRON STREET and 155 STREET, 157 STREET between 115 DRIVE and 116 AVENUE, 116 AVENUE between BARRON STREET and 159 STREET, FOCH BOULEVARD between 155 STREET and BARRON STREET, FOCH BOULEVARD between 155 STREET and SUTPHIN BOULEVARD, 155 STREET between 116 ROAD and FOCH BOULEVARD, 155 STREET between FOCH BOULEVARD and 118 AVENUE, 155TH ST between 118 AVENUE and 119 AVENUE, BAISLEY BOULEVARD between LAKEVIEW LANE and 155 STREET",Queens,"12, 8","107, 113",Television,Cable-episodic,United States of America,"11432, 11434"
+576087,Shooting Permit,05/21/2021 06:00:00 AM,05/21/2021 10:00:00 PM,05/06/2021 05:46:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576084,Shooting Permit,05/20/2021 06:00:00 AM,05/20/2021 10:00:00 PM,05/06/2021 05:42:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576082,Shooting Permit,05/19/2021 06:00:00 AM,05/19/2021 10:00:00 PM,05/06/2021 05:39:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576078,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 10:00:00 PM,05/06/2021 05:35:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576076,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 10:00:00 PM,05/06/2021 05:30:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+576047,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 07:00:00 PM,05/06/2021 04:02:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","13 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 12 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 13 STREET and 21 STREET, 43 AVENUE between 13 STREET and 21 STREET, 43 AVENUE between 11 STREET and 12 STREET, 11 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+576037,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 10:00:00 PM,05/06/2021 03:33:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576012,Shooting Permit,05/12/2021 07:00:00 AM,05/12/2021 09:00:00 PM,05/06/2021 02:18:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","81 AVENUE between AUSTIN STREET and KEW GARDENS ROAD, KEW GARDENS ROAD between 80 ROAD and 82 AVENUE, 82 AVENUE between AUSTIN STREET and KEW GARDENS ROAD, WOODHAVEN BOULEVARD between 86 ROAD and JAMAICA AVENUE, 86 ROAD between 91 STREET and WOODHAVEN BOULEVARD, 86 DRIVE between 91 STREET and WOODHAVEN BOULEVARD",Queens,9,102,Film,Feature,United States of America,"11415, 11421"
+576003,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 11:00:00 PM,05/06/2021 02:07:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+576002,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 10:00:00 PM,05/06/2021 02:06:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575974,Shooting Permit,05/14/2021 10:00:00 AM,05/15/2021 02:00:00 AM,05/06/2021 01:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+575971,Shooting Permit,05/13/2021 10:00:00 AM,05/14/2021 02:00:00 AM,05/06/2021 01:15:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+575963,Shooting Permit,05/13/2021 04:00:00 PM,05/14/2021 02:00:00 AM,05/06/2021 12:57:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between VERNON BOULEVARD and 11 STREET, 44 DRIVE between 11 STREET and 21 STREET, 11 STREET between 44 DRIVE and 43 ROAD, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Queens,"1, 2","108, 94",Television,Cable-other,United States of America,"11101, 11222"
+575935,Shooting Permit,05/12/2021 09:00:00 AM,05/12/2021 11:00:00 PM,05/06/2021 12:07:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 8 AVENUE and 7 AVENUE, WEST 41 STREET between 8 AVENUE and 7 AVENUE, WEST 47 STREET between 8 AVENUE and 9 AVENUE, WEST 51 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 42 STREET and WEST 41 STREET, 7 AVENUE between WEST 41 STREET and WEST 40 STREET, WEST 40 STREET between 8 AVENUE and 7 AVENUE, WEST 50 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5","14, 18",Film,Feature,United States of America,"10018, 10019, 10020, 10036"
+575872,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 07:00:00 PM,05/06/2021 09:09:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between CHURCH STREET and BROADWAY, CHURCH STREET between BARCLAY STREET and WARREN STREET, PARK PLACE between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Cable-episodic,United States of America,10007
+575871,Shooting Permit,05/11/2021 07:00:00 AM,05/12/2021 12:00:00 AM,05/06/2021 09:08:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between BROADWAY and CHURCH STREET, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET, WARREN STREET between BROADWAY and GREENWICH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+575866,Shooting Permit,05/07/2021 08:00:00 AM,05/07/2021 11:00:00 PM,05/06/2021 08:51:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575863,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 09:00:00 PM,05/06/2021 08:44:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 13 STREET and EAST 14 STREET, 3 AVENUE between EAST 13 STREET and EAST 12 STREET, 3 AVENUE between EAST 12 STREET and EAST 11 STREET, 4 AVENUE between EAST 13 STREET and EAST 12 STREET, 4 AVENUE between EAST 12 STREET and EAST 11 STREET, EAST 12 STREET between 4 AVENUE and 3 AVENUE, EAST 12 STREET between UNIVERSITY PLACE and 5 AVENUE, 5 AVENUE between EAST 11 STREET and EAST 12 STREET, EAST 13 STREET between UNIVERSITY PLACE and 5 AVENUE, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, UNIVERSITY PLACE between EAST 12 STREET and EAST 13 STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10011, 10012"
+575850,Shooting Permit,05/13/2021 06:00:00 AM,05/13/2021 08:00:00 PM,05/06/2021 01:50:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, JEFFERSON AVENUE between STUYVESANT AVENUE and MALCOM X BOULEVARD",Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11221
+575773,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 09:00:00 PM,05/05/2021 05:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 53 STREET and WEST 52 STREET, WEST 58 STREET between 9 AVENUE and 8 AVENUE, WEST 58 STREET between 9 AVENUE and 10 AVENUE, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 62 STREET and WEST 60 STREET",Manhattan,"4, 5, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023, 10103"
+575727,Shooting Permit,05/08/2021 07:00:00 AM,05/08/2021 11:00:00 PM,05/05/2021 03:42:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575706,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 10:00:00 PM,05/05/2021 03:01:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575701,Shooting Permit,05/08/2021 07:30:00 AM,05/08/2021 07:00:00 PM,05/05/2021 02:44:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between EAST HOUSTON STREET and BROOME STREET, CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3",5,Television,Episodic series,United States of America,"10002, 10012, 10013"
+575680,Shooting Permit,05/11/2021 08:00:00 AM,05/11/2021 06:00:00 PM,05/05/2021 02:11:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","79 STREET between ROOSEVELT AVENUE and 37 AVENUE, 37 AVENUE between 79 STREET and 78 STREET, 37 AVENUE between 79 STREET and 80 STREET, 79 STREET between 37 AVENUE and 35 AVENUE",Queens,3,115,Television,Cable-episodic,United States of America,11372
+575641,Shooting Permit,05/09/2021 07:00:00 PM,05/10/2021 02:00:00 AM,05/05/2021 12:58:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 54 STREET between MADISON AVENUE and 5 AVENUE, WEST 49 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Made for TV/mini-series,United States of America,"10020, 10022, 10112"
+575640,Shooting Permit,05/12/2021 11:00:00 AM,05/13/2021 02:00:00 AM,05/05/2021 12:58:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between DUPONT STREET and FREEMAN STREET, PROVOST STREET between GREEN STREET and JAVA STREET, WEST 49 STREET between 6 AVENUE and 5 AVENUE, WEST 50 STREET between 6 AVENUE and 5 AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, WEST 51 STREET between 6 AVENUE and 5 AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE",Brooklyn,"1, 5","18, 94",Television,Cable-episodic,United States of America,"10019, 10020, 10022, 10111, 10112, 11222"
+575633,Shooting Permit,05/14/2021 06:00:00 AM,05/14/2021 10:00:00 PM,05/05/2021 12:46:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+575631,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 10:00:00 PM,05/05/2021 12:43:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575630,Shooting Permit,05/13/2021 06:00:00 AM,05/13/2021 10:00:00 PM,05/05/2021 12:42:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+575626,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 10:00:00 PM,05/05/2021 12:39:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+575624,Shooting Permit,05/11/2021 06:00:00 AM,05/11/2021 10:00:00 PM,05/05/2021 12:36:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+575622,Shooting Permit,05/10/2021 06:00:00 AM,05/10/2021 10:00:00 PM,05/05/2021 12:32:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+575613,Shooting Permit,05/09/2021 04:00:00 AM,05/09/2021 08:00:00 PM,05/05/2021 12:12:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, EAST HOUSTON STREET between SUFFOLK STREET and CLINTON STREET, COLUMBIA STREET between EAST HOUSTON STREET and DELANCEY ST NORTH, BARUCH DRIVE between EAST HOUSTON STREET and DELANCEY ST NORTH, BARUCH PLACE between EAST HOUSTON STREET and STANTON STREET, STANTON STREET between BARUCH PLACE and MANGIN STREET, MANGIN STREET between EAST HOUSTON STREET and STANTON STREET, DELANCEY ST NORTH between FDR DRIVE and BARUCH DRIVE, DELANCEY ST NORTH between BARUCH DRIVE and COLUMBIA STREET, DELANCEY ST NORTH between COLUMBIA STREET and PITT STREET, FDR DRIVE SERVICE ROAD SB between EAST HOUSTON STREET and DELANCEY STREET",Manhattan,3,"7, 9",Television,Cable-episodic,United States of America,"10002, 10009"
+575584,Shooting Permit,05/14/2021 10:30:00 AM,05/15/2021 12:30:00 AM,05/05/2021 11:13:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+575581,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 10:00:00 PM,05/05/2021 11:08:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","ANDERSON AVENUE between PORT RICHMOND AVENUE and PARK AVENUE, PORT RICHMOND AVENUE between CHARLES AVENUE and GROVE AVENUE, MAPLE AVENUE between GROVE AVENUE and RICHMOND TERRACE, GROVE AVENUE between MAPLE AVENUE and PORT RICHMOND AVENUE, ANN STREET between PORT RICHMOND AVENUE and PARK AVENUE, PORT RICHMOND AVENUE between BENNETT STREET and CHURCH STREET, GRANITE AVENUE between RICHMOND TERRACE and LA SALLE STREET",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10303, 10310"
+575576,Shooting Permit,05/13/2021 10:00:00 AM,05/13/2021 11:59:00 PM,05/05/2021 11:01:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+575556,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 11:59:00 PM,05/05/2021 09:51:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 8 STREET and EAST 10 STREET, BROADWAY between EAST 8 STREET and ASTOR PLACE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, EAST 10 STREET between LAFAYETTE STREET and STUYVESANT STREET, 3 AVENUE between EAST 9 STREET and EAST 10 STREET, 3 AVENUE between EAST 9 STREET and ST MARKS PLACE, COOPER SQ between EAST 4 STREET and EAST 7 STREET, EAST 9 STREET between BROADWAY and 3 AVENUE, E 8TH ST between 4 AVENUE and 3RD AVE, LAFAYETTE STREET between EAST 8 STREET and EAST 9 STREET, 4 AVENUE between EAST 8 STREET and EAST 9 STREET, EAST 8 STREET between LAFAYETTE STREET and 4 AVENUE, WEST 20 STREET between 5 AVENUE and 6 AVENUE, EAST 20 STREET between 5 AVENUE and BROADWAY, EAST 19 STREET between 5 AVENUE and BROADWAY, 5 AVENUE between EAST 20 STREET and EAST 21 STREET, BROADWAY between EAST 19 STREET and EAST 20 STREET, EAST 21 STREET between BROADWAY and PARK AVENUE SOUTH, EAST 21 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET, PARK AVENUE SOUTH between EAST 22 STREET and EAST 23 STREET",Manhattan,"2, 3, 5, 6","13, 18, 6, 9",Television,Episodic series,United States of America,"10003, 10010, 10011, 10172"
+575550,Shooting Permit,05/08/2021 06:00:00 AM,05/08/2021 11:30:00 PM,05/05/2021 09:34:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between FRONT STREET and YORK STREET, PIKE STREET between MADISON STREET and MONROE STREET, MONROE STREET between PIKE STREET and MECHANICS ALLEY",Brooklyn,"2, 3","5, 7, 84",Television,Made for TV/mini-series,United States of America,"10002, 11201"
+575549,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 11:00:00 PM,05/05/2021 09:32:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between SURF AVENUE and BOARDWALK, SURF AVENUE between WEST 10 STREET and STILLWELL AVENUE, GARGIULO'S WAY between SURF AVENUE and MERMAID AVENUE, MERMAID AVENUE between STILLWELL AVENUE and WEST 16 STREET",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+575532,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 08:00:00 PM,05/05/2021 08:08:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, STUYVESANT AVENUE between PUTNAM AVENUE and JEFFERSON AVENUE, JEFFERSON AVENUE between STUYVESANT AVENUE and MALCOM X BOULEVARD",Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11221
+575529,Shooting Permit,05/08/2021 06:00:00 AM,05/08/2021 07:00:00 PM,05/05/2021 07:43:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 9 AVENUE and 10 AVENUE, 7 AVENUE between 2 STREET and 3 STREET, 3 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 6","10, 78",Still Photography,Not Applicable,United States of America,"10018, 11215"
+575491,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 08:00:00 PM,05/04/2021 10:23:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD, DITMAS AVENUE between RUGBY ROAD and MARLBOROUGH ROAD, EAST 50 STREET between MADISON AVENUE and FIFTH AVENUE, EAST 51 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 50 STREET and EAST 51 STREET",Brooklyn,"14, 5","18, 70",Television,Made for TV/mini-series,United States of America,"10022, 11226"
+575474,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 11:30:00 PM,05/04/2021 08:57:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 5 AVENUE and 6 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, WEST 43 STREET between 5 AVENUE and 6 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 45 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Episodic series,United States of America,"10017, 10022, 10036, 10152"
+575444,Shooting Permit,05/08/2021 07:00:00 AM,05/08/2021 11:00:00 PM,05/04/2021 06:23:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575441,Shooting Permit,05/07/2021 02:00:00 PM,05/08/2021 05:00:00 AM,05/04/2021 05:56:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WEST HOUSTON STREET between WOOSTER STREET and WEST BROADWAY, WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET, WEST HOUSTON STREET between WEST BROADWAY and THOMPSON STREET",Brooklyn,"1, 2","1, 6, 94",Television,Cable-episodic,United States of America,"10012, 11222, 11249"
+575437,Shooting Permit,05/09/2021 12:00:00 PM,05/09/2021 11:59:00 PM,05/04/2021 05:33:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",STAGG STREET between STEWART AVENUE and GARDNER AVENUE,Brooklyn,1,90,Film,Short,United States of America,11237
+575416,Theater Load in and Load Outs,05/21/2021 12:01:00 AM,05/27/2021 11:59:00 PM,05/04/2021 04:46:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between RIVER AVENUE and JEROME AVENUE,Bronx,4,44,Television,Cable-other,United States of America,"10451, 10452"
+575414,Shooting Permit,05/27/2021 05:00:00 AM,05/27/2021 11:30:00 AM,05/04/2021 04:45:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,14,Documentary,Not Applicable,United States of America,10036
+575391,Shooting Permit,05/10/2021 06:00:00 AM,05/10/2021 06:00:00 PM,05/04/2021 03:43:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPRING STREET between MERCER STREET and BROADWAY, SPRING STREET between BROADWAY and CROSBY STREET, BROOME STREET between BROADWAY and LAFAYETTE STREET, CROSBY STREET between SPRING STREET and BROOME STREET, CROSBY STREET between SPRING STREET and PRINCE STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,"10012, 10013"
+575388,Shooting Permit,05/06/2021 07:00:00 AM,05/07/2021 02:00:00 AM,05/04/2021 03:32:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 7 AVENUE, 8 AVENUE between WEST 44 STREET and WEST 45 STREET, 8 AVENUE between WEST 45 STREET and WEST 46 STREET, 8 AVENUE between WEST 46 STREET and WEST 47 STREET, 8 AVENUE between WEST 47 STREET and WEST 48 STREET, BROADWAY between WEST 47 STREET and WEST 48 STREET, WEST 45 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 46 STREET between 8 AVENUE and 9 AVENUE, WEST 47 STREET between 9 AVENUE and 10 AVENUE, WEST 48 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 47 STREET and WEST 48 STREET, 10 AVENUE between WEST 47 STREET and WEST 48 STREET, WEST 48 STREET between 8 AVENUE and BROADWAY, BROADWAY between WEST 48 STREET and WEST 49 STREET, 7 AVENUE between WEST 48 STREET and WEST 49 STREET",Manhattan,"1, 4, 5","1, 14, 18",Television,Cable-episodic,United States of America,"10004, 10019, 10036"
+575381,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 11:00:00 PM,05/04/2021 03:15:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 12 STREET and NORTH 10 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 14 STREET and NORTH 12 STREET, NORTH 13 STREET between KENT AVENUE and BERRY STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+575376,Shooting Permit,05/19/2021 06:00:00 AM,05/19/2021 09:00:00 PM,05/04/2021 03:04:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between THROOP AVENUE and TOMPKINS AVENUE, THROOP AVENUE between LAFAYETTE AVENUE and KOSCIUSZKO STREET",Brooklyn,3,79,Commercial,Commercial,United States of America,11221
+575375,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 09:00:00 PM,05/04/2021 03:04:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between THROOP AVENUE and TOMPKINS AVENUE, THROOP AVENUE between LAFAYETTE AVENUE and KOSCIUSZKO STREET",Brooklyn,3,79,Commercial,Commercial,United States of America,11221
+575366,Shooting Permit,05/06/2021 10:00:00 AM,05/07/2021 02:00:00 AM,05/04/2021 02:46:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 47 STREET and EAST 49 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, EAST 42 STREET between 2 AVENUE and 3 AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, EAST 45 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+575364,Shooting Permit,05/19/2021 06:00:00 AM,05/19/2021 10:00:00 PM,05/04/2021 02:45:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+575362,Shooting Permit,05/17/2021 06:00:00 AM,05/17/2021 10:00:00 PM,05/04/2021 02:45:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+575363,Shooting Permit,05/18/2021 06:00:00 AM,05/18/2021 10:00:00 PM,05/04/2021 02:45:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+575361,Shooting Permit,05/16/2021 06:00:00 AM,05/16/2021 10:00:00 PM,05/04/2021 02:45:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+575358,Shooting Permit,05/12/2021 09:00:00 AM,05/12/2021 11:00:00 PM,05/04/2021 02:40:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+575317,Shooting Permit,05/11/2021 08:00:00 AM,05/11/2021 10:00:00 PM,05/04/2021 01:18:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+575310,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 08:00:00 PM,05/04/2021 01:06:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",CALYER STREET between WEST STREET and FRANKLIN STREET,Brooklyn,1,94,Commercial,Industrial/Corporate,United States of America,11222
+575306,Shooting Permit,05/06/2021 06:00:00 PM,05/07/2021 07:00:00 AM,05/04/2021 01:00:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","116 AVENUE between BARRON STREET and 157 STREET, GUY R BREWER BOULEVARD between 116 AVENUE and FOCH BOULEVARD, GUY R BREWER BOULEVARD between 115 AVENUE and LINDEN BOULEVARD, 157 STREET between 115 DRIVE and FOCH BOULEVARD, FOCH BOULEVARD between 157 STREET and BARRON STREET, BARRON STREET between 116 AVENUE and FOCH BOULEVARD, 116 AVENUE between 157 STREET and GUY R BREWER BOULEVARD, BAISLEY BOULEVARD between LAKEVIEW LANE and 155 STREET",Queens,12,113,Television,Cable-episodic,United States of America,11434
+575279,Shooting Permit,05/11/2021 07:00:00 AM,05/11/2021 09:00:00 PM,05/04/2021 12:08:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","FARRINGTON STREET between 32 AVENUE and 35 AVENUE, FARRINGTON STREET between 35 AVENUE and NORTHERN BOULEVARD, 35 AVENUE between FARRINGTON STREET and LINDEN PLACE, NORTHERN BOULEVARD between PRINCE STREET and LEAVITT STREET",Queens,7,109,Film,Feature,United States of America,11354
+575264,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 11:00:00 PM,05/04/2021 11:28:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between SURF AVENUE and BOARDWALK, SURF AVENUE between WEST 10 STREET and STILLWELL AVENUE, GARGIULO'S WAY between SURF AVENUE and MERMAID AVENUE",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+575254,Shooting Permit,05/07/2021 04:00:00 PM,05/08/2021 06:00:00 AM,05/04/2021 11:08:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between LEONARD STREET and ECKFORD STREET, LEONARD STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, BANKER STREET between CALYER STREET and MESEROLE AVENUE, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between BANKER STREET and CLIFFORD PLACE, MESEROLE AVENUE between CLIFFORD PLACE and GUERNSEY STREET, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, GEM STREET between MESEROLE AVENUE and NORTH 15 STREET, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and LORIMER STREET, NORMAN AVENUE between LORIMER STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575253,Shooting Permit,05/09/2021 07:00:00 AM,05/09/2021 10:00:00 PM,05/04/2021 11:06:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+575252,Shooting Permit,05/08/2021 08:00:00 AM,05/08/2021 09:00:00 PM,05/04/2021 11:05:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,14,Film,Feature,United States of America,10036
+575243,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 09:00:00 PM,05/04/2021 10:49:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, 56 STREET between WOODSIDE AVENUE and SKILLMAN AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+575226,Shooting Permit,05/19/2021 12:00:00 PM,05/20/2021 02:00:00 AM,05/04/2021 10:16:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+575221,Shooting Permit,05/11/2021 06:00:00 AM,05/12/2021 01:00:00 AM,05/04/2021 09:59:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between DELANCEY STREET and BROOME STREET, BROOME STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, BOWERY between RIVINGTON STREET and DELANCEY STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, EAST HOUSTON STREET between ELIZABETH STREET and CHRYSTIE STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, BOWERY between EAST HOUSTON STREET and EAST 1 STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012, 10013"
+575220,Shooting Permit,05/10/2021 06:00:00 AM,05/10/2021 11:00:00 PM,05/04/2021 09:58:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between ELIZABETH STREET and BOWERY, BOWERY between DELANCEY STREET and BROOME STREET, BROOME STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between BROOME STREET and GRAND STREET, BOWERY between RIVINGTON STREET and DELANCEY STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, EAST HOUSTON STREET between ELIZABETH STREET and CHRYSTIE STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, BOWERY between EAST HOUSTON STREET and EAST 1 STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012, 10013"
+575208,Shooting Permit,05/17/2021 12:00:00 PM,05/18/2021 02:00:00 AM,05/04/2021 09:11:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+575195,Shooting Permit,05/06/2021 06:00:00 AM,05/06/2021 10:00:00 PM,05/04/2021 08:30:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 21 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+575121,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 07:00:00 PM,05/03/2021 06:51:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+575120,Shooting Permit,05/10/2021 06:00:00 AM,05/10/2021 10:00:00 PM,05/03/2021 06:49:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575119,Shooting Permit,05/08/2021 06:00:00 AM,05/08/2021 10:00:00 PM,05/03/2021 06:33:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575118,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 10:00:00 PM,05/03/2021 06:25:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575117,Shooting Permit,05/06/2021 06:00:00 AM,05/06/2021 10:00:00 PM,05/03/2021 06:15:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+575111,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 09:00:00 PM,05/03/2021 05:55:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+575109,Shooting Permit,05/07/2021 09:30:00 AM,05/07/2021 11:30:00 PM,05/03/2021 05:47:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH AVENUE between MARLBOROUGH ROAD and OCEAN AVENUE, EAST 18 STREET between CATON AVENUE and CHURCH AVENUE, MARLBOROUGH ROAD between BEVERLEY ROAD and ALBERMARLE ROAD, MARLBOROUGH ROAD between CHURCH AVENUE and ALBERMARLE ROAD, BEVERLEY ROAD between ARGYLE ROAD and EAST 16 STREET",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+575103,Shooting Permit,05/08/2021 12:00:00 PM,05/08/2021 11:59:00 PM,05/03/2021 05:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between AVENUE C and AVENUE D, EAST BROADWAY between JEFFERSON STREET and RUTGERS STREET",Manhattan,3,"5, 7, 9",Film,Short,United States of America,"10002, 10009"
+575066,Shooting Permit,05/07/2021 10:00:00 AM,05/08/2021 02:00:00 AM,05/03/2021 04:11:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEROY STREET between BEDFORD STREET and BLEECKER STREET, BLEECKER STREET between LEROY STREET and DOWNING STREET, CARMINE STREET between BLEECKER STREET and BEDFORD STREET, AVENUE OF THE AMERICAS between DOWNING STREET and BEDFORD STREET, AVENUE OF THE AMERICAS between MINETTA LANE and MINETTA STREET, AVENUE OF THE AMERICAS between WEST 3 STREET and WEST 4 STREET, AVENUE OF THE AMERICAS between WEST 4 STREET and WEST WASHINGTON PLACE, WEST 3 STREET between AVENUE OF THE AMERICAS and MACDOUGAL STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+575062,Shooting Permit,05/06/2021 06:00:00 AM,05/06/2021 11:00:00 PM,05/03/2021 04:07:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+575058,Shooting Permit,05/07/2021 07:00:00 AM,05/07/2021 09:00:00 PM,05/03/2021 04:02:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+575046,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 09:00:00 PM,05/03/2021 03:46:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between HARRISON PLACE and FLUSHING AVENUE, THAMES STREET between PORTER AVENUE and VARICK AVENUE, THAMES STREET between PORTER AVENUE and KNICKERBOCKER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+575041,Shooting Permit,05/07/2021 06:30:00 AM,05/07/2021 09:00:00 PM,05/03/2021 03:40:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+575027,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 09:00:00 PM,05/03/2021 03:13:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 44 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,14,Film,Feature,United States of America,10036
+575019,Shooting Permit,05/07/2021 07:30:00 AM,05/07/2021 11:00:00 PM,05/03/2021 03:01:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",15 AVENUE between 138 STREET and 142 STREET,Queens,7,109,Television,Episodic series,United States of America,11357
+575015,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 09:00:00 PM,05/03/2021 02:48:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","DRIGGS AVENUE between UNION AVENUE and LORIMER STREET, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, BAYARD STREET between UNION AVENUE and LORIMER STREET, BAYARD STREET between LORIMER STREET and LEONARD STREET, LORIMER STREET between BAYARD STREET and RICHARDSON STREET, LORIMER STREET between RICHARDSON STREET and FROST STREET, LEONARD STREET between BAYARD STREET and RICHARDSON STREET, RICHARDSON STREET between LORIMER STREET and LEONARD STREET, RICHARDSON STREET between LEONARD STREET and MEEKER STREET, JACKSON STREET between LORIMER STREET and LEONARD STREET, GRAHAM AVENUE between RICHARDSON STREET and FROST STREET, GRAHAM AVENUE between FROST STREET and WITHERS STREET, GRAHAM AVENUE between WITHERS STREET and JACKSON STREET, GRAHAM AVENUE between JACKSON STREET and SKILLMAN AVENUE, SKILLMAN AVENUE between MANHATTAN AVENUE and GRAHAM AVENUE, SKILLMAN AVENUE between GRAHAM AVENUE and HUMBOLDT STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+575010,Shooting Permit,05/07/2021 07:00:00 AM,05/07/2021 10:00:00 PM,05/03/2021 02:38:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEKALB AVENUE between BUSHWICK AVENUE and EVERGREEN AVENUE,Brooklyn,4,83,WEB,Not Applicable,United States of America,11221
+575003,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 10:00:00 PM,05/03/2021 02:32:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 88 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST,Manhattan,7,24,WEB,Not Applicable,United States of America,10024
+574988,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 10:00:00 PM,05/03/2021 02:06:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 22 STREET between 9 AVENUE and 8 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+574985,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 10:00:00 PM,05/03/2021 02:00:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574984,Shooting Permit,05/07/2021 01:00:00 PM,05/08/2021 03:00:00 AM,05/03/2021 01:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 ROAD between PLEASANTVIEW STREET and 73 PLACE, PLEASANTVIEW STREET between 66 DRIVE and 66 ROAD, 73 PLACE between 66 DRIVE and 66 ROAD, METROPOLITAN AVENUE between 71 STREET and PLEASANTVIEW STREET, METROPOLITAN AVENUE between 75 STREET and 78 STREET",Queens,5,104,Film,Feature,United States of America,11379
+574983,Shooting Permit,05/06/2021 08:00:00 AM,05/06/2021 10:00:00 PM,05/03/2021 01:55:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 ROAD between PLEASANTVIEW STREET and 73 PLACE, PLEASANTVIEW STREET between 66 DRIVE and 66 ROAD, 73 PLACE between 66 DRIVE and 66 ROAD, METROPOLITAN AVENUE between PLEASANTVIEW STREET and 71 STREET, METROPOLITAN AVENUE between 75 STREET and 78 STREET",Queens,5,104,Film,Feature,United States of America,11379
+574981,Shooting Permit,05/05/2021 08:00:00 AM,05/05/2021 10:00:00 PM,05/03/2021 01:46:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 ROAD between PLEASANTVIEW STREET and 73 PLACE, PLEASANTVIEW STREET between 66 DRIVE and 66 ROAD, 73 PLACE between 66 DRIVE and 66 ROAD, METROPOLITAN AVENUE between 71 STREET and PLEASANTVIEW STREET, METROPOLITAN AVENUE between 75 STREET and 78 STREET",Queens,5,104,Film,Feature,United States of America,11379
+574970,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 08:00:00 PM,05/03/2021 01:26:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 ROAD between VERNON BOULEVARD and 10 STREET, 9 STREET between 43 AVENUE and 44 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, QUEENS PLAZA S between VERNON BOULEVARD and 13 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between 9 STREET and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+574960,Shooting Permit,05/14/2021 12:00:00 PM,05/15/2021 02:00:00 AM,05/03/2021 01:14:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+574957,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 09:00:00 PM,05/03/2021 01:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+574930,Shooting Permit,05/11/2021 11:00:00 AM,05/12/2021 02:00:00 AM,05/03/2021 12:40:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+574917,Shooting Permit,05/10/2021 08:00:00 AM,05/11/2021 12:00:00 AM,05/03/2021 12:18:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,"90, 94",Television,Cable-other,United States of America,"11206, 11222"
+574911,Shooting Permit,05/10/2021 07:00:00 AM,05/10/2021 10:00:00 PM,05/03/2021 12:13:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+574910,Shooting Permit,05/07/2021 08:00:00 AM,05/07/2021 11:00:00 PM,05/03/2021 12:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+574904,Shooting Permit,05/06/2021 08:00:00 AM,05/06/2021 11:00:00 PM,05/03/2021 12:08:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+574900,Shooting Permit,05/05/2021 08:00:00 AM,05/05/2021 11:00:00 PM,05/03/2021 12:05:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,"1, 2","108, 94",Television,Cable-episodic,United States of America,"11101, 11222"
+574899,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 07:00:00 PM,05/03/2021 12:04:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11237
+574884,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 08:30:00 PM,05/03/2021 11:38:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between KING STREET and VANDAM STREET, THOMPSON STREET between 6 AVENUE and GRAND STREET",Manhattan,2,1,Still Photography,Not Applicable,United States of America,"10012, 10013, 10014"
+574869,Shooting Permit,05/06/2021 09:00:00 AM,05/06/2021 11:00:00 PM,05/03/2021 11:09:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574828,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 10:00:00 PM,05/03/2021 09:39:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+574823,Shooting Permit,05/07/2021 07:00:00 AM,05/07/2021 09:00:00 PM,05/03/2021 09:01:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and SKILLMAN AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+574812,Shooting Permit,05/13/2021 06:00:00 AM,05/13/2021 10:00:00 PM,05/03/2021 07:53:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+574806,Shooting Permit,05/05/2021 05:00:00 PM,05/06/2021 07:00:00 AM,05/03/2021 07:22:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","157 STREET between FOCH BOULEVARD and 116 AVENUE, BARRON STREET between 116 AVENUE and FOCH BOULEVARD, 116 ROAD between BARRON STREET and 155 STREET, 157 STREET between 115 DRIVE and 116 AVENUE, 116 AVENUE between BARRON STREET and 159 STREET, FOCH BOULEVARD between 155 STREET and BARRON STREET, FOCH BOULEVARD between 155 STREET and SUTPHIN BOULEVARD, 155 STREET between 116 ROAD and FOCH BOULEVARD, 155 STREET between FOCH BOULEVARD and 118 AVENUE, 155 STREET between 118 AVENUE and 119 AVENUE, BAISLEY BOULEVARD between LAKEVIEW LANE and 155 STREET",Queens,12,113,Television,Cable-episodic,United States of America,11434
+574804,Shooting Permit,05/12/2021 06:00:00 AM,05/12/2021 09:00:00 PM,05/03/2021 06:05:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+574786,Shooting Permit,05/05/2021 03:00:00 AM,05/05/2021 10:00:00 PM,05/02/2021 09:22:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN STREET between CHURCH STREET and BROADWAY, WALKER STREET between BROADWAY and CHURCH STREET",Manhattan,1,"1, 5",Still Photography,Not Applicable,United States of America,10013
+574719,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 09:00:00 PM,05/02/2021 11:07:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 10 AVENUE and 11 AVENUE, WEST 20 STREET between 8 AVENUE and 9 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,10011
+574554,Shooting Permit,05/06/2021 09:00:00 AM,05/07/2021 11:00:00 PM,04/30/2021 06:27:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 22 ROAD and 22 DRIVE, 21 STREET between 22 ROAD and 23 ROAD, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 19 STREET and 21 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+574541,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 09:00:00 PM,04/30/2021 05:21:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between BROADWAY and 5 AVENUE, BROADWAY between WEST 24 STREET and WEST 25 STREET, EAST 27 STREET between 5 AVENUE and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 25 STREET and EAST 28 STREET, EAST 25 STREET between MADISON AVENUE and PARK AVENUE SOUTH, 5 AVENUE between EAST 26 STREET and EAST 27 STREET, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE SOUTH between EAST 24 STREET and EAST 25 STREET",Manhattan,"2, 5, 6","108, 13, 14, 17",Television,Episodic series,United States of America,"10001, 10010, 10016, 10017, 11101"
+574503,Shooting Permit,05/05/2021 08:00:00 AM,05/05/2021 11:59:00 PM,04/30/2021 03:54:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, BLEEKER STREET between LAGUARDIA PLACE and MERCER STREET, WEST 3 STREET between LAGUARDIA PLACE and MERCER STREET, LAGUARDIA PLACE between WEST 3 STREET and WASHINGTON SQUARE SOUTH, THOMPSON STREET between WASHINGTON SQUARE SOUTH and WEST 3 STREET, THOMPSON STREET between BLEEKER STREET and WEST 3 STREET, WEST 3 STREET between SULLIVAN STREET and THOMPSON STREET, SULLIVAN STREET between WEST 3 STREET and WASHINGTON SQUARE SOUTH, SULLIVAN STREET between WEST 3 STREET and BLEEKER STREET, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET, CHRISTOPHER STREET between WEST 4 STREET and BLEEKER STREET, PUTNAM AVENUE between HOWARD AVENUE and BROADWAY, BROADWAY between MADISON STREET and PUTNAM AVENUE, PUTNAM AVENUE between BROADWAY and BUSHWICK AVENUE, BROADWAY between PUTNAM AVENUE and CORNELIA STREET, CORNELIA STREET between BUSHWICK AVENUE and BROADWAY, BROADWAY between CORNELIA STREET and JEFFERSON AVENUE, BUSHWICK AVENUE between GROVE STREET and JEFFERSON AVENUE",Manhattan,"1, 16, 2, 3, 4","1, 6, 73, 81, 83",Television,Cable-episodic,United States of America,"10004, 10012, 10014, 11221"
+574500,Shooting Permit,05/04/2021 10:00:00 AM,05/04/2021 11:00:00 PM,04/30/2021 03:48:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 46 STREET, PARK AVENUE between EAST 46 STREET and EAST 49 STREET, 11 AVENUE between WEST 30 STREET and WEST 27 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 27 STREET, WEST 29 STREET between 10 AVENUE and 11 AVENUE, EAST 46 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"11, 4, 5, 6","10, 14, 17, 18, 25",Television,Cable-episodic,United States of America,"10001, 10016, 10017, 10022, 10035, 10158, 10167, 10171, 10172, 10173, 10177"
+574465,Shooting Permit,05/06/2021 01:00:00 PM,05/07/2021 03:00:00 AM,04/30/2021 02:29:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and MESEROLE AVENUE, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, BANKER STREET between CALYER STREET and MESEROLE AVENUE, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between BANKER STREET and CLIFFORD PLACE, MESEROLE AVENUE between CLIFFORD PLACE and GUERNSEY STREET, NORMAN AVENUE between BANKER STREET and DOBBIN STREET, GEM STREET between MESEROLE AVENUE and NORTH 15 STREET, GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, LORIMER STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and LEONARD STREET, NORMAN AVENUE between DOBBIN STREET and GUERNSEY STREET, NORMAN AVENUE between GUERNSEY STREET and LORIMER STREET, NORMAN AVENUE between LORIMER STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574461,Shooting Permit,05/07/2021 09:00:00 AM,05/07/2021 05:00:00 PM,04/30/2021 02:24:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+574458,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 05:00:00 PM,04/30/2021 02:19:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WEST SIDE HIGHWAY and WASHINGTON STREET, CENTRAL PARK SOUTH between 7 AVENUE and COLUMBUS CIRCLE",Manhattan,"2, 5, 64","18, 22, 6",Still Photography,Not Applicable,United States of America,"10014, 10019, 10023"
+574456,Shooting Permit,05/06/2021 09:00:00 AM,05/06/2021 05:00:00 PM,04/30/2021 02:11:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+574427,Shooting Permit,05/07/2021 07:00:00 AM,05/07/2021 08:00:00 PM,04/30/2021 12:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HOYT STREET and NEVINS STREET, NEVINS STREET between ATLANTIC AVENUE and STATE STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11217
+574425,Shooting Permit,05/05/2021 09:00:00 AM,05/06/2021 02:00:00 AM,04/30/2021 12:44:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 31 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, EAST 30 STREET between 1 AVENUE and 2 AVENUE, EAST 33 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,"13, 17",Television,Episodic series,United States of America,10016
+574420,Shooting Permit,05/05/2021 08:00:00 AM,05/05/2021 09:00:00 PM,04/30/2021 12:32:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+574414,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 08:00:00 PM,04/30/2021 12:25:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",BELMONT AVENUE between EAST 188 STREET and EAST 187 STREET,Bronx,6,48,Commercial,Commercial,United States of America,10458
+574411,Shooting Permit,05/04/2021 08:00:00 AM,05/04/2021 09:00:00 PM,04/30/2021 12:22:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+574399,Shooting Permit,05/03/2021 04:00:00 AM,05/03/2021 09:00:00 PM,04/30/2021 11:59:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between FIFTH AVENUE and PARK AVENUE, PARK AVENUE between EAST 72 STREET and EAST 75 STREET, PARK AVENUE between EAST 49 STREET and EAST 53 STREET, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 50 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 47 STREET and EAST 49 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6, 64, 8","17, 18, 19, 22",Television,Cable-episodic,United States of America,"10017, 10021, 10022, 10023, 10152, 10171, 10172"
+574388,Shooting Permit,05/06/2021 07:00:00 AM,05/06/2021 09:00:00 PM,04/30/2021 11:43:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, 56 STREET between WOODSIDE AVENUE and SKILLMAN AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+574374,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 10:00:00 PM,04/30/2021 11:26:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+574368,Shooting Permit,05/06/2021 06:00:00 AM,05/06/2021 10:00:00 PM,04/30/2021 11:14:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+574366,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 10:00:00 PM,04/30/2021 11:08:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET, 35 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+574353,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 10:00:00 PM,04/30/2021 10:35:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+574352,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/30/2021 10:35:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+574351,Shooting Permit,05/07/2021 10:00:00 AM,05/07/2021 11:59:00 PM,04/30/2021 10:34:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+574349,Shooting Permit,05/05/2021 09:00:00 AM,05/05/2021 11:00:00 PM,04/30/2021 10:32:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574348,Shooting Permit,05/01/2021 06:00:00 AM,05/01/2021 10:00:00 PM,04/30/2021 10:31:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between CALYER STREET and MESEROLE AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574335,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 07:00:00 PM,04/30/2021 10:03:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 23 STREET between 7 AVENUE and 8 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+574306,Shooting Permit,05/07/2021 07:00:00 AM,05/07/2021 11:00:00 PM,04/30/2021 07:56:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HENRY STREET and CLINTON STREET, HENRY STREET between MONTAGUE STREET and REMSEN STREET, CLINTON STREET between PIERREPONT STREET and LIVINGSTON STREET, MONTAGUE STREET between HENRY STREET and COURT STREET, REMSEN STREET between CLINTON STREET and COURT STREET, COURT STREET between REMSEN STREET and JORALEMON STREET, JORALEMON STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+574303,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 07:00:00 PM,04/30/2021 06:58:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",CHRISTOPHER STREET between WEST SIDE HIGHWAY and WASHINGTON STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+574282,Shooting Permit,05/04/2021 06:00:00 PM,05/05/2021 07:00:00 AM,04/29/2021 10:57:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","111 AVENUE between 140 STREET and 142 STREET, 141 STREET between 111 AVENUE and LINDEN BOULEVARD, BRINKERHOFF AVENUE between 111 AVENUE and 143 STREET, 143rd ST between Brinkerhoff Ave and Glassboro Ave, 143rd St between 111th Ave and Linden Blvd, 111th Ave between 143rd St and 144th St, 111th Ave between 143rd ST and Inwood St, 111 AVENUE between 144 STREET and 145 STREET, 115th Ave between Van Wyck Expressway and 140th St, 140 STREET between 115 AVENUE and 116 AVENUE, Lakeview Blvd East between 119 DRIVE and 122nd Ave, 122nd Ave between Lakeview Blvd East and Long Street, Lakeview Lane between 122nd Ave and Baisley Blvd, 120 AVENUE between LAKEVIEW BLVD EAST and LONG STREET, BAISLEY BOULEVARD between LAKEVIEW LANE and ROCKAWAY BOULEVARD, BAISLEY BOULEVARD between ROCKAWAY BOULEVARD and 132 AVENUE",Queens,12,"103, 113",Television,Cable-episodic,United States of America,"11434, 11435, 11436"
+574249,Shooting Permit,05/04/2021 05:00:00 AM,05/04/2021 09:00:00 PM,04/29/2021 07:04:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between WEST 3 STREET and WASHINGTON SQUARE SOUTH, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and BLEEKER STREET, WEST 3 STREET between LAGUARDIA PLACE and Schwartz Plaza, WEST 3 STREET between Schwartz Plaza and MERCER STREET, WEST 3 STREET between MERCER STREET and BROADWAY, MERCER STREET between WEST 3 STREET and WEST 4 STREET, MERCER STREET between WEST 3 STREET and BLEEKER STREET, BROADWAY between WEST 3 STREET and WEST 4 STREET, BROADWAY between WEST 4 STREET and WASHINGTON PLACE, WEST 4 STREET between MERCER STREET and BROADWAY, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, SULLIVAN STREET between WEST HOUSTON STREET and PRINCE STREET, CHRISTOPHER STREET between WEST 4 STREET and BLEEKER STREET",Manhattan,2,"1, 6, 9",Television,Cable-episodic,United States of America,"10003, 10011, 10012, 10014"
+574240,Shooting Permit,05/05/2021 09:00:00 AM,05/05/2021 11:00:00 PM,04/29/2021 06:28:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","20 AVENUE between 19 STREET and 24 STREET, 21 AVENUE between 23 STREET and 21 STREET, 21 AVENUE between 24 STREET and 23 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, Kingsland ave between Greenpoint Ave and N Henry Street, Kingsland ave between Greenpoint Ave and N Henry Street, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Queens,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+574236,Shooting Permit,05/01/2021 06:15:00 AM,05/01/2021 11:00:00 AM,04/29/2021 06:04:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",80 STREET between 16 AVENUE and 17 AVENUE,Brooklyn,"10, 11","62, 68",Television,Reality,United States of America,"11209, 11214"
+574226,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/29/2021 05:35:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574213,Shooting Permit,05/06/2021 09:00:00 AM,05/06/2021 11:00:00 PM,04/29/2021 04:53:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+574205,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 09:00:00 PM,04/29/2021 04:32:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+574170,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 10:00:00 PM,04/29/2021 03:15:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+574169,Shooting Permit,05/06/2021 09:00:00 AM,05/06/2021 11:00:00 PM,04/29/2021 03:14:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between HENRY STREET and CLINTON STREET, CLINTON STREET between PIERREPONT STREET and LIVINGSTON STREET, HENRY STREET between REMSEN STREET and MONTAGUE STREET, MONTAGUE STREET between HENRY STREET and COURT STREET, REMSEN STREET between CLINTON STREET and COURT STREET, COURT STREET between REMSEN STREET and JORALEMON STREET, JORALEMON STREET between CLINTON STREET and COURT STREET",Brooklyn,2,84,Television,Cable-episodic,United States of America,11201
+574168,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 11:00:00 PM,04/29/2021 03:13:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between CARROLL STREET and SACKETT STREET, COURT STREET between DEGRAW STREET and BUTLER STREET, PRESIDENT STREET between COURT STREET and SMITH STREET, SMITH STREET between 2 STREET and UNION STREET, DOUGLASS STREET between HOYT STREET and BOND STREET, HOYT STREET between SACKETT STREET and DEGRAW STREET, HOYT STREET between DEGRAW STREET and DOUGLASS STREET, HOYT STREET between DOUGLASS STREET and BALTIC STREET",Brooklyn,6,76,Television,Episodic series,United States of America,"11217, 11231"
+574162,Shooting Permit,05/01/2021 06:00:00 AM,05/01/2021 09:00:00 PM,04/29/2021 03:06:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between BROADWAY and 8 AVENUE, WEST 47 STEET between BROADWAY and 8 AVE",Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+574155,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 09:00:00 PM,04/29/2021 02:46:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and SKILLMAN AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+574152,Shooting Permit,05/03/2021 07:00:00 AM,05/04/2021 12:00:00 AM,04/29/2021 02:17:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between BROADWAY and 8 AVENUE, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,"1, 4, 5, 7","1, 18, 20",Television,Cable-episodic,United States of America,"10004, 10005, 10007, 10019, 10023, 10041, 10279"
+574149,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/29/2021 02:09:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVE between RAILROAD AVE and JOHN JAY BYRNE BRIDGE,Queens,2,108,Television,Episodic series,United States of America,11101
+574089,Shooting Permit,05/02/2021 12:00:00 PM,05/03/2021 03:00:00 AM,04/29/2021 12:32:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 30 STREET and 35 STREET, 33RD STREET between 34 AVENUE and ASTORIA BLVD N, LIBERTY STREET between NASSAU STREET and WILLIAM STREET",Queens,"1, 2, 5, 7","1, 108, 114, 14, 20",Television,Cable-episodic,United States of America,"10005, 10007, 10017, 10024, 10038, 10045, 11101, 11102, 11103"
+574083,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 11:00:00 PM,04/29/2021 12:19:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+574082,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 11:00:00 PM,04/29/2021 12:18:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+574003,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 09:00:00 PM,04/29/2021 08:59:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+574000,Shooting Permit,05/04/2021 08:30:00 AM,05/04/2021 10:30:00 PM,04/29/2021 08:50:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+573982,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 11:59:00 PM,04/29/2021 12:56:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573977,Shooting Permit,05/03/2021 05:00:00 PM,05/04/2021 09:00:00 PM,04/28/2021 10:55:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSS BRONX EXPRESSWAY between E Tremont Ave and Revere Ave, E Tremont Ave between Cross Bronx Expressway and Schley Ave, EAST TREMONT AVENUE between SCHLEY AVENUE and RANDALL AVENUE, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, Schley Ave between EAST TREMONT AVENUE and Revere Ave, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, Clearview Expressway SR WEST between 32nd Ave and 29th Ave, 29 AVENUE between CLEARVIEW EXPRESSWAY SR WEST and 203 PLACE, CLEARVIEW EXPRESSWAY SR WEST between 42 AVENUE and 43rd Ave, 42nd Ave between Clearview Expressway SR West and 205th St, Clearview Expressway SR West between 42nd Ave and Dead End, 205 STREET between 42 AVENUE and DEAD END, 205 STREET between 42 AVENUE and 43 AVENUE, Clearview Expressway SR West between 36 AVENUE and 38th Ave, Clearview Expressway SR West between 36th Ave and 35th Ave, BELL BOULEVARD between 39 AVENUE and 38 AVENUE",Bronx,"10, 11","111, 45",Television,Cable-episodic,United States of America,"10465, 11360, 11361"
+573962,Shooting Permit,05/02/2021 05:00:00 AM,05/02/2021 10:00:00 PM,04/28/2021 09:29:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",TIEBOUT AVENUE between EAST 181 STREET and EAST 182 STREET,Bronx,5,46,Commercial,Promo,United States of America,10457
+573955,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 08:30:00 PM,04/28/2021 09:07:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALBANY AVENUE between FOSTER AVENUE and FARRAGUT ROAD, ALBANY AVENUE between FOSTER AVENUE and FARRAGUT ROAD",Brooklyn,"17, 18","63, 67",Television,Game show,United States of America,"11203, 11234"
+573948,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 08:30:00 PM,04/28/2021 08:35:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","29TH ST between 24 AVENUE and HOYT AVENUE N, LURTING AVENUE between PELHAM PARKWAY SOUTH and ESPLANADE AVENUE",Queens,"1, 11","114, 49",Television,Game show,United States of America,"10461, 11102"
+573898,Shooting Permit,04/30/2021 04:00:00 PM,05/01/2021 06:00:00 AM,04/28/2021 05:13:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 8 AVENUE and 7 AVENUE, WEST 21 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 23 STREET and WEST 20 STREET, WEST 22 STREET between 7 AVENUE and 6 AVENUE, WEST 22 STREET between 6 AVENUE and 5 AVENUE, EAST 60 STREET between PARK AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 61 STREET, MADISON AVENUE between EAST 61 STREET and EAST 62 STREET, EAST 60 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 60 STREET and EAST 61 STREET, EAST 59 STREET between 5 AVENUE and MADISON AVENUE, WEST 56 STREET between 7 AVENUE and 6 AVENUE",Manhattan,"4, 5, 64, 8","10, 13, 18, 19, 22",Television,Episodic series,United States of America,"10010, 10011, 10019, 10022, 10065"
+573882,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 09:00:00 PM,04/28/2021 04:58:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LEFFERTS AVENUE and LINCOLN ROAD, LEFFERTS AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, FLATBUSH AVENUE between Ocean Ave and WINTHROP STREET",Brooklyn,9,71,Television,Episodic series,United States of America,11225
+573870,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 07:00:00 PM,04/28/2021 04:26:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",SHORE FRONT PARKWAY between BEACH 84 STREET and BEACH 81 STREET,Queens,14,100,Still Photography,Not Applicable,United States of America,11693
+573861,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/28/2021 04:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHAMBERS STREET between ELK STREET and BROADWAY, BAXTER STREET between HOGAN PLACE and WORTH STREET, BROADWAY between MURRAY STREET and WARREN STREET, BROADWAY between READE STREET and CHAMBERS STREET, WORTH STREET between BAXTER STREET and CENTRE STREET, BROADWAY between FRANKLIN STREET and WALKER STREET, WALKER STREET between BROADWAY and CHURCH STREET, WATER STREET between GOUVERNEUR LANE and JOHN STREET, MAIDEN LANE between WATER STREET and FRONT STREET, CENTRE STREET between DUANE STREET and READE STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10005, 10007, 10013, 10038"
+573860,Shooting Permit,05/05/2021 09:00:00 AM,05/05/2021 11:00:00 PM,04/28/2021 04:00:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+573856,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/28/2021 03:46:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 ROAD between PLEASANTVIEW STREET and 73 PLACE, PLEASANTVIEW STREET between 66 DRIVE and 66 ROAD, 73 PLACE between 66 DRIVE and 66 ROAD, METROPOLITAN AVENUE between 71 STREET and PLEASANTVIEW STREET, METROPOLITAN AVENUE between PLEASANTVIEW STREET and 73 PLACE, METROPOLITAN AVENUE between 75 STREET and 78 STREET",Queens,5,104,Film,Feature,United States of America,11379
+573850,Shooting Permit,05/05/2021 01:00:00 PM,05/06/2021 04:30:00 AM,04/28/2021 03:37:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 5 AVENUE and 6 AVENUE, WEST 53 STREET between 5 AVENUE and 6 AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, EAST 53 STREET between 5 AVENUE and MADISON AVENUE, EAST 53 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 55 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 52 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10103, 10152"
+573838,Shooting Permit,05/04/2021 10:00:00 AM,05/05/2021 03:00:00 AM,04/28/2021 03:15:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 54 STREET, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 54 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10022, 10152"
+573835,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 07:00:00 PM,04/28/2021 03:09:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 AVENUE between 35 STREET and 36 STREET, 35 STREET between 37 AVENUE and 38 AVENUE, WEST 29 STREET between 10 AVENUE and 11 AVENUE",Queens,"1, 4","10, 114",Still Photography,Not Applicable,United States of America,"10001, 11101"
+573810,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 11:00:00 PM,04/28/2021 02:32:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573799,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 09:00:00 PM,04/28/2021 02:07:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and SKILLMAN AVENUE, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11377
+573776,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 10:00:00 PM,04/28/2021 01:28:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","66 ROAD between PLEASANTVIEW STREET and 73 PLACE, PLEASANTVIEW STREET between 66 DRIVE and 66 ROAD, 73 PLACE between 66 DRIVE and 66 ROAD, METROPOLITAN AVENUE between 71 STREET and PLEASANTVIEW STREET, METROPOLITAN AVENUE between PLEASANTVIEW STREET and 73 PLACE, METROPOLITAN AVENUE between 75 STREET and 78 STREET",Queens,5,104,Film,Feature,United States of America,11379
+573763,Shooting Permit,04/30/2021 10:00:00 AM,05/01/2021 01:00:00 AM,04/28/2021 01:02:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAST END AVENUE between EAST 80 STREET and EAST 81 STREET, EAST 80 STREET between EAST END AVENUE and YORK AVENUE, EAST 80 STREET between EAST END AVENUE and DEAD END, EAST 79 STREET between YORK AVENUE and EAST END AVENUE, EAST 81 STREET between YORK AVENUE and EAST END AVENUE, YORK AVENUE between EAST 80 STREET and EAST 83 STREET, EAST 82 STREET between YORK AVENUE and EAST END AVENUE, YORK AVENUE between EAST 78 STREET and EAST 79 STREET",Brooklyn,"1, 8","19, 94",Television,Cable-episodic,United States of America,"10028, 10075, 11222"
+573752,Shooting Permit,05/02/2021 06:00:00 AM,05/02/2021 07:00:00 PM,04/28/2021 12:38:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",IRVING AVENUE between MYRTLE AVENUE and GATES AVENUE,Brooklyn,4,83,Still Photography,Not Applicable,United States of America,11237
+573735,Shooting Permit,05/01/2021 06:00:00 AM,05/01/2021 09:00:00 PM,04/28/2021 12:07:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","VANDERBILT AVENUE between EAST 44 STREET and EAST 45 STREET, EAST 44 STREET between VANDERBILT AVENUE and MADISON AVENUE, VANDERBILT AVENUE between EAST 45 STREET and EAST 46 STREET, EAST 45 STREET between VANDERBILT AVENUE and PARK AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, PARK AVE between EAST 42 STREET and 43RD ST",Manhattan,5,"14, 18",Commercial,Commercial,United States of America,"10017, 10173"
+573718,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 11:00:00 PM,04/28/2021 11:30:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+573709,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 07:00:00 PM,04/28/2021 10:56:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+573708,Shooting Permit,05/05/2021 07:00:00 AM,05/05/2021 11:00:00 PM,04/28/2021 10:53:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+573689,Shooting Permit,04/30/2021 09:00:00 AM,05/01/2021 12:00:00 AM,04/28/2021 10:08:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573688,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 10:00:00 PM,04/28/2021 10:04:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+573683,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 10:00:00 PM,04/28/2021 10:00:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 28 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 28 STREET and WEST 29 STREET, 11 AVENUE between WEST 28 STREET and WEST 30 STREET, WEST 29 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10001
+573671,Shooting Permit,04/30/2021 07:00:00 AM,04/30/2021 07:00:00 PM,04/28/2021 09:38:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAIGHT STREET between HUDSON STREET and VARICK STREET, GREENWICH STREET between DESBROSSES STREET and VESTRY STREET, MADISON AVENUE between EAST 72 STREET and EAST 71 STREET, DESBROSSES STREET between HUDSON STREET and GREENWICH STREET",Manhattan,"1, 8","1, 19",Still Photography,Not Applicable,United States of America,"10013, 10021"
+573669,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 08:00:00 PM,04/28/2021 09:30:10 AM,"Mayor's Office of Film, Theatre & Broadcasting",BROOME STREET between MULBERRY STREET and CENTRE STREET,Manhattan,2,5,Film,Feature,United States of America,10013
+573659,Shooting Permit,05/03/2021 08:00:00 AM,05/03/2021 10:00:00 PM,04/28/2021 08:54:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between WAVERLY PLACE and 7 AVENUE SOUTH, WEST 10 STREET between WAVERLY PLACE and 6 AVENUE, GREENWICH STREET between WEST 10 STREET and CHRISTOPHER STREET, 6 AVENUE between WEST 8 STREET and WEST HOUSTON STREET, WEST 9 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 8 STREET and WEST 10 STREET, 6 AVENUE between KING STREET and VANDAM STREET, WEST 14 STREET between 10 AVENUE and 8 AVENUE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET",Manhattan,"2, 4, 5","1, 10, 13, 14, 18, 6",Television,Episodic series,United States of America,"10001, 10010, 10011, 10013, 10014, 10018, 10019, 10020, 10036, 10105, 10119"
+573609,DCAS Prep/Shoot/Wrap Permit,05/03/2021 03:00:00 PM,05/03/2021 09:00:00 PM,04/27/2021 10:26:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",HOGAN PLACE between BAXTER STREET and CENTRE STREET,Manhattan,1,5,Television,Episodic series,United States of America,10013
+573562,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 09:00:00 PM,04/27/2021 06:00:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+573560,Shooting Permit,05/02/2021 07:00:00 AM,05/02/2021 09:00:00 PM,04/27/2021 05:56:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+573559,Shooting Permit,05/02/2021 03:00:00 AM,05/02/2021 08:00:00 PM,04/27/2021 05:53:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, EAST HOUSTON STREET between SUFFOLK STREET and CLINTON STREET, COLUMBIA STREET between EAST HOUSTON STREET and DELANCEY ST NORTH, BARUCH DRIVE between EAST HOUSTON STREET and DELANCEY ST NORTH, BARUCH PLACE between EAST HOUSTON STREET and STANTON STREET, STANTON STREET between BARUCH PLACE and MANGIN STREET, MANGIN STREET between EAST HOUSTON STREET and STANTON STREET, DELANCEY ST NORTH between FDR DRIVE and BARUCH DRIVE, DELANCEY ST NORTH between BARUCH DRIVE and COLUMBIA STREET, DELANCEY ST NORTH between COLUMBIA STREET and PITT STREET, PITT STREET between RIVINGTON STREET and STANTON STREET, FDR DRIVE SERVICE ROAD SB between EAST HOUSTON STREET and DELANCEY STREET",Manhattan,3,"7, 9",Television,Cable-episodic,United States of America,"10002, 10009"
+573537,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 08:00:00 PM,04/27/2021 05:00:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK SOUTHWEST between 11 AVENUE and TERRACE PLACE, WEST 10 STREET between SURF AVENUE and BOARDWALK, SURF AVENUE between WEST 12 STREET and WEST 10 STREET, SURF AVENUE between WEST 10 STREET and POLICE OFFICER HARRY RYMAN PLACE",Brooklyn,"13, 55, 7","60, 72, 78",Commercial,PSA,United States of America,"11215, 11218, 11224"
+573532,Shooting Permit,04/30/2021 07:00:00 AM,04/30/2021 07:00:00 PM,04/27/2021 04:54:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","TOMPKINS AVENUE between GATES AVENUE and MADISON STREET, RANDOLPH STREET between SCOTT AVENUE and GARDNER AVENUE",Brooklyn,"1, 3","79, 90",Still Photography,Not Applicable,United States of America,"11216, 11237"
+573510,Shooting Permit,04/29/2021 07:00:00 AM,04/29/2021 11:59:00 PM,04/27/2021 04:25:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 48 STREET and EAST 49 STREET, LEXINGTON AVENUE between EAST 47 STREET and EAST 48 STREET",Manhattan,"1, 5, 6","1, 17, 18",Television,Cable-episodic,United States of America,"10004, 10017, 10022, 10152, 10171, 10172"
+573502,Shooting Permit,04/29/2021 08:00:00 PM,04/30/2021 03:00:00 AM,04/27/2021 03:59:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEROY STREET between BEDFORD STREET and BLEECKER STREET, BLEECKER STREET between LEROY STREET and 6 AVENUE",Manhattan,2,6,Television,Episodic series,United States of America,10014
+573501,Shooting Permit,04/29/2021 02:30:00 PM,04/30/2021 03:00:00 AM,04/27/2021 03:59:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST HOUSTON STREET, BLEECKER STREET between LAGUARDIA PLACE and MERCER STREET, WEST 3 STREET between MACDOUGAL STREET and THOMPSON STREET, WEST 3 STREET between THOMPSON STREET and LAGUARDIA PLACE, SULLIVAN STREET between WEST 3 STREET and WASHINGTON SQUARE SOUTH, MINETTA LANE between MACDOUGAL STREET and 6 AVENUE, 6 AVENUE between WASHINGTON PLACE and CARMINE STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10012, 10014"
+573490,Shooting Permit,05/03/2021 08:00:00 AM,05/03/2021 11:00:00 PM,04/27/2021 03:29:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573485,Shooting Permit,05/02/2021 06:00:00 AM,05/02/2021 07:00:00 PM,04/27/2021 03:15:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 6 AVENUE and 5 AVENUE, WEST 50 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,18,Commercial,Promo,United States of America,"10019, 10020, 10111, 10112"
+573479,Shooting Permit,04/29/2021 09:00:00 AM,04/30/2021 12:00:00 AM,04/27/2021 02:35:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573474,Shooting Permit,04/30/2021 10:30:00 AM,04/30/2021 11:00:00 PM,04/27/2021 02:23:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+573450,Shooting Permit,04/30/2021 07:00:00 AM,04/30/2021 09:00:00 PM,04/27/2021 01:39:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+573445,Shooting Permit,04/29/2021 07:00:00 AM,04/29/2021 09:00:00 PM,04/27/2021 01:35:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+573437,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 09:00:00 PM,04/27/2021 01:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 8 AVENUE and 7 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+573401,Shooting Permit,05/14/2021 12:00:00 PM,05/15/2021 03:00:00 AM,04/27/2021 11:54:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","BORDEN AVENUE between 29 STREET and DEAD END, BORDEN AVENUE between BORDEN AVENUE NORTH and BORDEN AVENUE SOUTH, 30 ST between 49 AVENUE and BORDEN AVENUE, 27 STREET between 51 AVENUE and 49 AVENUE, PEARSON PLACE between 27 STREET and SKILLMAN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+573369,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 09:00:00 PM,04/27/2021 10:35:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+573367,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 09:00:00 PM,04/27/2021 10:30:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+573353,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 05:00:00 PM,04/27/2021 09:20:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","DAVIS AVENUE between DAVIS COURT and HENDERSON AVENUE, HENDERSON AVENUE between DAVIS AVENUE and CURTIS COURT",Staten Island,1,120,Television,Episodic series,United States of America,10310
+573352,Rigging Permit,04/29/2021 08:00:00 PM,04/30/2021 02:00:00 PM,04/27/2021 09:04:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",PORT RICHMOND AVENUE between GROVE AVENUE and HARRISON AVENUE,Staten Island,1,121,Television,Episodic series,United States of America,10302
+573351,Rigging Permit,04/28/2021 09:00:00 PM,04/29/2021 06:00:00 AM,04/27/2021 09:03:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",PORT RICHMOND AVENUE between GROVE AVENUE and NEW STREET,Staten Island,1,121,Television,Episodic series,United States of America,10302
+573350,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 08:00:00 PM,04/27/2021 09:02:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","PORT RICHMOND AVENUE between RICHMOND TERRACE and HARRISON AVENUE, MAPLE AVENUE between RICHMOND TERRACE and GROVE AVENUE, GROVE AVENUE between MAPLE AVENUE and PORT RICHMOND AVENUE, PORT RICHMOND AVENUE between HARRISON AVENUE and ALBION PLACE, CASTLETON AVENUE between PORT RICHMOND AVENUE and HEBERTON AVENUE, HARRISON AVENUE between FABER STREET and PORT RICHMOND AVENUE, MAPLE AVENUE between GROVE AVENUE and HARRISON AVENUE",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10310"
+573344,Shooting Permit,04/30/2021 11:00:00 AM,05/01/2021 02:00:00 AM,04/27/2021 08:29:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573342,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 11:00:00 PM,04/27/2021 08:21:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573341,Shooting Permit,04/30/2021 06:00:00 AM,04/30/2021 11:00:00 PM,04/27/2021 07:51:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,"10019, 10020, 10111"
+573252,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 11:00:00 PM,04/26/2021 05:09:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,"10019, 10020, 10111, 10112"
+573225,Shooting Permit,04/30/2021 10:00:00 AM,05/01/2021 01:00:00 AM,04/26/2021 03:51:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, EAST END AVENUE between EAST 80 STREET and EAST 81 STREET, EAST 80 STREET between EAST END AVENUE and YORK AVENUE, EAST 79 STREET between EAST END AVENUE and YORK AVENUE, EAST 81 STREET between EAST END AVENUE and YORK AVENUE, YORK AVENUE between EAST 80 STREET and EAST 83 STREET, EAST 82 STREET between EAST END AVENUE and YORK AVENUE, YORK AVENUE between EAST 83 STREET and EAST 84 STREET, YORK AVENUE between EAST 85 STREET and EAST 86 STREET",Brooklyn,"1, 8","19, 94",Television,Cable-episodic,United States of America,"10028, 10075, 11222"
+573224,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 11:00:00 PM,04/26/2021 03:50:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between RUSSELL STREET and JEWEL STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, GREENPOINT AVENUE between HUMBOLDT STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+573219,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 12:00:00 PM,04/26/2021 03:41:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between HIGH LINE and WASHINGTON STREET, WEST 14 STREET between WASHINGTON STREET and 9 AVENUE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between WEST 12 STREET and HORATIO STREET, WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, WEST 12 STREET between GREENWICH STREET and 8 AVENUE, GREENWICH STREET between GANSEVOORT STREET and WEST 11 STREET, BETHUNE STREET between GREENWICH STREET and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+573209,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 11:00:00 PM,04/26/2021 03:27:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+573199,Shooting Permit,04/28/2021 08:00:00 AM,04/28/2021 09:00:00 PM,04/26/2021 02:58:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",MYRTLE AVENUE between WASHINGTON PARK and ST EDWARDS STREET,Brooklyn,2,"84, 88",WEB,Not Applicable,United States of America,"11201, 11205"
+573155,Shooting Permit,05/01/2021 10:00:00 AM,05/01/2021 11:59:00 PM,04/26/2021 01:20:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+573138,Shooting Permit,04/28/2021 06:00:00 AM,04/28/2021 09:00:00 PM,04/26/2021 12:49:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","BENNETT STREET between PARK AVENUE and HEBERTON AVENUE, GROVE AVENUE between PORT RICHMOND AVENUE and MAPLE AVENUE, MAPLE AVENUE between GROVE AVENUE and RICHMOND TERRACE, PORT RICHMOND AVENUE between GROVE AVENUE and CHURCH STREET, ANN STREET between PORT RICHMOND AVENUE and PARK AVENUE, PORT RICHMOND AVENUE between HARRISON AVENUE and CASTLETON AVENUE, PORT RICHMOND AVENUE between GROVE AVENUE and NEW STREET, PORT RICHMOND AVENUE between RICHMOND TERRACE and CHURCH STREET, PORT RICHMOND AVENUE between ALBION PLACE and CASTLETON AVENUE, CASTLETON AVENUE between PORT RICHMOND AVENUE and HEBERTON AVENUE",Staten Island,1,"120, 121",Television,Episodic series,United States of America,"10302, 10310"
+573135,Shooting Permit,04/28/2021 06:00:00 AM,04/28/2021 11:00:00 PM,04/26/2021 12:45:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,"10019, 10020, 10111, 10112"
+573132,Shooting Permit,04/29/2021 03:00:00 PM,04/30/2021 05:00:00 AM,04/26/2021 12:42:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",JEROME AVENUE between EAST 233 STREET and BAINBRIDGE AVENUE,Bronx,"12, 26, 7","109, 47, 50",Television,Cable-episodic,United States of America,"10466, 10470, 10471, 11360"
+573131,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 06:00:00 PM,04/26/2021 12:37:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, UNION STREET between HOYT STREET and BOND STREET",Brooklyn,6,76,Film,Feature,United States of America,11231
+573130,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 06:00:00 PM,04/26/2021 12:35:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between LEONARD STREET and LORIMER STREET,Brooklyn,1,90,Film,Short,United States of America,11206
+573128,Shooting Permit,05/02/2021 12:00:00 PM,05/02/2021 09:00:00 PM,04/26/2021 12:31:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between LEONARD STREET and LORIMER STREET,Brooklyn,1,90,Film,Short,United States of America,11206
+573126,Shooting Permit,04/30/2021 06:00:00 AM,04/30/2021 10:00:00 PM,04/26/2021 12:27:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between LEONARD STREET and LORIMER STREET,Brooklyn,1,90,Film,Short,United States of America,11206
+573124,Shooting Permit,04/29/2021 07:00:00 AM,04/30/2021 01:00:00 AM,04/26/2021 12:24:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 41 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between 41 AVENUE and 40 AVENUE",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+573122,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 08:00:00 PM,04/26/2021 12:18:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 44 STREET",Manhattan,5,14,Commercial,Commercial,United States of America,10036
+573080,Shooting Permit,05/06/2021 07:00:00 PM,05/06/2021 10:00:00 PM,04/26/2021 11:06:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 48 STREET between 5 AVENUE and 6 AVENUE,Manhattan,5,18,Television,Special/Awards Show,United States of America,"10020, 10036, 10112"
+573073,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 07:00:00 PM,04/26/2021 10:48:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between VESEY STREET and FULTON STREET, FULTON STREET between BROADWAY and NASSAU STREET",Manhattan,1,1,Film,Feature,United States of America,"10007, 10038"
+573061,Shooting Permit,04/29/2021 09:00:00 AM,04/29/2021 11:00:00 PM,04/26/2021 10:18:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+573060,Shooting Permit,04/30/2021 06:00:00 AM,04/30/2021 11:30:00 PM,04/26/2021 10:15:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between CARROLL STREET and 1 PLACE, CARROLL STREET between HICKS STREET and CLINTON STREET, SUMMIT STREET between HICKS STREET and HENRY STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+573041,Shooting Permit,04/30/2021 10:00:00 AM,05/01/2021 12:00:00 AM,04/26/2021 09:29:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 57 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+573040,Shooting Permit,04/29/2021 12:00:00 PM,04/30/2021 03:00:00 AM,04/26/2021 09:28:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 57 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+573031,Shooting Permit,04/28/2021 05:00:00 AM,04/28/2021 10:00:00 PM,04/26/2021 07:56:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 67 STREET between BEACH FRONT ROAD and ROCKAWAY BEACH BOULEVARD, BEACH 63 STREET between THURSBY AVENUE and BEACH CHANNEL DRIVE, BEACH 66 STREET between THURSBY AVENUE and BEACH CHANNEL DRIVE, THURSBY AVENUE between BEACH 62 STREET and BEACH 63 STREET, BEACH 62 STREET between THURSBY AVENUE and BEACH CHANNEL DRIVE",Queens,14,"100, 101",Commercial,PSA,United States of America,"11691, 11692"
+572820,Shooting Permit,04/30/2021 09:00:00 AM,04/30/2021 10:00:00 PM,04/23/2021 07:44:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+572819,Shooting Permit,04/29/2021 09:00:00 AM,04/29/2021 10:00:00 PM,04/23/2021 07:40:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+572809,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 10:00:00 PM,04/23/2021 07:18:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 6 AVENUE and 5 AVENUE,Manhattan,5,18,Commercial,Promo,United States of America,"10019, 10020, 10111"
+572777,Shooting Permit,04/27/2021 08:00:00 AM,04/28/2021 12:00:00 AM,04/23/2021 04:27:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572767,Shooting Permit,04/30/2021 10:00:00 AM,04/30/2021 11:59:00 PM,04/23/2021 04:09:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+572752,Shooting Permit,04/29/2021 10:00:00 AM,04/30/2021 12:00:00 AM,04/23/2021 03:39:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 58 STREET between 5 AVENUE and 7 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+572734,Shooting Permit,04/29/2021 01:00:00 PM,04/30/2021 04:00:00 AM,04/23/2021 02:56:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between BROOME STREET and GRAND STREET, LAFAYETTE STREET between GRAND STREET and HOWARD STREET, LAFAYETTE STREET between HOWARD STREET and CANAL STREET, GRAND STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, MOTT STREET between GRAND STREET and BROOME STREET, GRAND STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between BROOME STREET and HESTER STREET, MOTT STREET between GRAND STREET and HESTER STREET, 6 AVENUE between WHITE STREET and WEST BROADWAY, WALKER STREET between 6 AVENUE and CHURCH STREET, CHURCH STREET between FRANKLIN STREET and LEONARD STREET, SOUTH STREET between BROAD STREET and OLD SLIP, GRAND STREET between MOTT STREET and ELIZABETH STREET, CHURCH STREET between WALKER STREET and WHITE STREET, HOWARD STREET between CROSBY STREET and LAFAYETTE STREET",Manhattan,"1, 2","1, 5",Television,Episodic series,United States of America,"10004, 10013"
+572725,Shooting Permit,04/27/2021 02:00:00 PM,04/27/2021 10:00:00 PM,04/23/2021 02:29:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 10 AVENUE and 11 AVENUE, WEST 26 STREET between 11 AVENUE and WEST SIDE HIGHWAY, 11 AVENUE between WEST 25 STREET and WEST 26 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10001
+572717,Shooting Permit,04/28/2021 02:00:00 AM,04/28/2021 08:00:00 PM,04/23/2021 02:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between NOSTRAND AVENUE and MARCY AVENUE, RANDOLPH STREET between VARICK AVENUE and GARDNER AVENUE",Brooklyn,"1, 3","79, 90",Still Photography,Not Applicable,United States of America,"11216, 11237"
+572700,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 07:00:00 PM,04/23/2021 01:54:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572699,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 07:00:00 PM,04/23/2021 01:52:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572696,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 07:00:00 PM,04/23/2021 01:48:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572690,Shooting Permit,04/30/2021 12:00:00 PM,05/01/2021 03:00:00 AM,04/23/2021 01:33:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTIN STREET between 63 AVENUE and 63 DRIVE, AUSTIN STREET between 63 DRIVE and 64 ROAD, 63 AVENUE between AUSTIN STREET and DEAD END, 63 AVENUE between AUSTIN STREET and BOOTH STREET",Queens,6,112,Film,Feature,United States of America,11374
+572674,Shooting Permit,04/24/2021 07:00:00 AM,04/24/2021 08:00:00 PM,04/23/2021 12:48:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14TH ST between 9TH AVE and WASHINGTON ST, 9 AVENUE between WEST 13 STREET and GANSEVOORT STREET, WEST 13 STREET between HUDSON STREET and GANSEVOORT STREET",Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10011, 10014"
+572656,Shooting Permit,05/04/2021 07:00:00 AM,05/04/2021 10:00:00 PM,04/23/2021 12:01:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572649,Shooting Permit,05/03/2021 07:00:00 AM,05/03/2021 10:00:00 PM,04/23/2021 11:42:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572615,Theater Load in and Load Outs,05/07/2021 12:01:00 AM,05/08/2021 06:00:00 AM,04/23/2021 10:41:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET",Manhattan,"11, 3","23, 9",Theater,Theater,United States of America,"10003, 10029"
+572609,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 10:00:00 PM,04/23/2021 10:21:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+572603,Shooting Permit,04/30/2021 07:00:00 AM,04/30/2021 09:00:00 PM,04/23/2021 10:03:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","FORT GREENE PLACE between LAFAYETTE AVENUE and HANSON PLACE, FORT GREENE PLACE between DEKALB AVENUE and FULTON STREET, ASHLAND PLACE between MYRTLE AVENUE and DEKALB AVENUE, DEKALB AVENUE between CUMBERLAND STREET and FORT GREENE PLACE, DEKALB AVENUE between ST FELIX STREET and FORT GREENE PLACE, ST FELIX STREET between DEKALB AVENUE and LAFAYETTE AVENUE, SOUTH ELLIOTT PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between ST FELIX STREET and SOUTH PORTLAND AVENUE, HANSON PLACE between FORT GREENE PLACE and SOUTH ELLIOTT PLACE, SOUTH ELLIOTT PLACE between HANSON PLACE and LAFAYETTE AVENUE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,"11201, 11217"
+572601,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 08:00:00 PM,04/23/2021 09:59:25 AM,"Mayor's Office of Film, Theatre & Broadcasting",WOOSTER STREET between WEST HOUSTON STREET and PRINCE STREET,Manhattan,2,1,WEB,Not Applicable,United States of America,10012
+572595,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 11:59:00 PM,04/23/2021 09:49:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10171"
+572589,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 08:00:00 PM,04/23/2021 09:06:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 21 STREET and WEST 22 STREET",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+572587,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 10:00:00 PM,04/23/2021 08:50:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+572545,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 08:00:00 PM,04/22/2021 07:27:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and DOCK STREET, WATER STREET between MAIN STREET and DOCK STREET",Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11201
+572524,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 07:00:00 PM,04/22/2021 05:35:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WASHINGTON PLACE and EAST 4 STREET,Manhattan,2,"6, 9",Still Photography,Not Applicable,United States of America,10003
+572521,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 07:00:00 PM,04/22/2021 05:30:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WASHINGTON PLACE and EAST 4 STREET,Manhattan,2,"6, 9",Still Photography,Not Applicable,United States of America,10003
+572516,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 10:00:00 PM,04/22/2021 05:18:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572515,Shooting Permit,04/27/2021 04:00:00 PM,04/28/2021 05:00:00 PM,04/22/2021 05:17:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORONA AVENUE between 51 AVENUE and 52 AVENUE, 108 STREET between 52 AVENUE and 53 AVENUE, 52 AVENUE between 108 STREET and 103 STREET, 52 AVENUE between 108 STREET and 111 STREET, 53 AVENUE between 108 STREET and 103 STREET, 108 STREET between 53 AVENUE and MARTENSE AVENUE, 111 AVENUE between 140 STREET and 142 STREET, 111 AVENUE between 143 STREET and 144 STREET, 141 STREET between 111 AVENUE and LINDEN BOULEVARD, 143 STREET between 111 AVENUE and LINDEN BOULEVARD, BRINKERHOFF AVENUE between 142 STREET and 143 STREET, 143 STREET between GLASSBORO AVENUE and BRINKERHOFF AVENUE, 111 AVENUE between 143 STREET and INWOOD STREET, 116 AVENUE between VAN WYCK EXPRESSWAY and 140 STREET, 140 STREET between 116 AVENUE and 115 AVENUE, CORONA AVENUE between 104 STREET and 51 AVENUE",Queens,"12, 4","110, 113",Television,Cable-episodic,United States of America,"11368, 11435, 11436"
+572506,Shooting Permit,04/29/2021 09:00:00 AM,04/29/2021 11:00:00 PM,04/22/2021 04:50:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+572496,Shooting Permit,04/29/2021 07:00:00 AM,04/29/2021 09:00:00 PM,04/22/2021 04:17:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 31 STREET and 36 STREET, 36 STREET between 2 AVENUE and 3 AVENUE, 37 STREET between 2 AVENUE and 3 AVENUE, 39 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between 30 STREET and 32 STREET, 2 AVENUE between 33 STREET and 34 STREET, 2 AVENUE between 35 STREET and 36 STREET",Brooklyn,7,72,Television,Episodic series,United States of America,11232
+572484,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 07:00:00 PM,04/22/2021 03:55:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between 47 STREET and 44 STREET, 2 AVENUE between 48 STREET and 47 STREET, 2 AVENUE between 43 STREET and 44 STREET",Brooklyn,7,72,Film,Feature,United States of America,11232
+572482,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 11:59:00 PM,04/22/2021 03:44:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+572478,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 08:30:00 PM,04/22/2021 03:37:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between 10 STREET and 11 STREET, ASHLAND PLACE between MYRTLE AVENUE and WILLOUGHBY STREET",Brooklyn,"2, 6","78, 88",Television,Game show,United States of America,"11201, 11205, 11215"
+572475,Shooting Permit,04/28/2021 09:00:00 AM,04/28/2021 11:00:00 PM,04/22/2021 03:32:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 58 STREET between 5 AVENUE and 7 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+572458,Shooting Permit,05/11/2021 06:00:00 AM,05/11/2021 09:00:00 PM,04/22/2021 03:07:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572455,Shooting Permit,05/10/2021 06:00:00 AM,05/10/2021 09:00:00 PM,04/22/2021 03:04:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572446,Shooting Permit,05/09/2021 06:00:00 AM,05/09/2021 09:00:00 PM,04/22/2021 02:42:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572444,Shooting Permit,05/08/2021 06:00:00 AM,05/08/2021 09:00:00 PM,04/22/2021 02:39:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572441,Shooting Permit,05/07/2021 06:00:00 AM,05/07/2021 09:00:00 PM,04/22/2021 02:37:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572437,Shooting Permit,05/06/2021 06:00:00 AM,05/06/2021 09:00:00 PM,04/22/2021 02:34:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572433,Shooting Permit,05/05/2021 06:00:00 AM,05/05/2021 09:00:00 PM,04/22/2021 02:28:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+572430,Shooting Permit,04/30/2021 08:00:00 AM,05/01/2021 02:00:00 AM,04/22/2021 02:21:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE OF THE AMERICAS between WEST 26 STREET and WEST 29 STREET, WEST 28 STREET between 6 AVENUE and BROADWAY, WEST 27 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 30 STREET and WEST 31 STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE",Manhattan,5,"13, 14",Television,Episodic series,United States of America,10001
+572429,Shooting Permit,04/30/2021 07:00:00 AM,04/30/2021 10:00:00 PM,04/22/2021 02:19:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",DWIGHT STREET between COFFEY STREET and VAN DYKE STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+572423,Shooting Permit,04/27/2021 10:00:00 AM,04/27/2021 03:00:00 PM,04/22/2021 02:08:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHRISTOPHER AVENUE between EAST NY AVENUE and LIBERTY AVENUE,Brooklyn,16,73,Still Photography,Not Applicable,United States of America,11212
+572412,Shooting Permit,04/25/2021 07:00:00 AM,04/25/2021 08:00:00 PM,04/22/2021 01:43:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLIFTON PLACE between FRANKLIN AVENUE and CLASSON AVENUE, WEST 36 STREET between 8 AVENUE and 9 AVENUE",Brooklyn,"2, 3, 4","14, 5, 79",Documentary,Not Applicable,United States of America,"10013, 10018, 11238"
+572406,Shooting Permit,04/26/2021 07:00:00 AM,04/27/2021 03:00:00 PM,04/22/2021 01:19:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 12 STREET between GREENWICH STREET and WASHINGTON STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,"10011, 10014"
+572405,Shooting Permit,04/29/2021 08:00:00 AM,04/30/2021 12:00:00 AM,04/22/2021 01:15:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 31 STREET between 6 AVENUE and 7 AVENUE, AVENUE OF THE AMERICAS between WEST 26 STREET and WEST 29 STREET, WEST 28 STREET between 6 AVENUE and BROADWAY, WEST 27 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 30 STREET and WEST 31 STREET, BROADWAY between WEST 31 STREET and WEST 32 STREET, WEST 31 STREET between BROADWAY and 5 AVENUE",Manhattan,5,"13, 14",Television,Episodic series,United States of America,10001
+572399,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 10:00:00 PM,04/22/2021 01:01:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572376,Shooting Permit,04/29/2021 07:00:00 AM,04/29/2021 09:00:00 PM,04/22/2021 12:29:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","FURMANVILLE AVENUE between 82 STREET and 82 PLACE, 82 PLACE between 64 ROAD and FURMANVILLE AVENUE, 64 ROAD between 82 STREET and 82 PLACE, JUNIPER BOULEVARD SOUTH between 81 STREET and DRY HARBOR ROAD, 81 STREET between JUNIPER BOULEVARD SOUTH and PENELOPE AVENUE",Queens,5,104,Film,Feature,United States of America,11379
+572358,Shooting Permit,04/27/2021 10:00:00 AM,04/27/2021 11:59:00 PM,04/22/2021 12:03:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between TOMPKINS AVENUE and BAY STREET,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+572350,Shooting Permit,04/24/2021 08:00:00 AM,04/24/2021 09:00:00 PM,04/22/2021 11:48:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between PRINCE STREET and WEST HOUSTON STREET, BETHUNE STREET between WEST STREET and WASHINGTON STREET",Manhattan,2,"1, 5, 6",Documentary,Not Applicable,United States of America,"10012, 10013, 10014"
+572322,Shooting Permit,04/28/2021 10:00:00 AM,04/29/2021 04:00:00 AM,04/22/2021 10:34:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 152 STREET and WEST 155 STREET, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 152 STREET between BROADWAY and AMSTERDAM AVENUE, 12 AVENUE between WEST 135 STREET and WEST 138 STREET, 12 AVENUE between WEST 133 STREET and WEST 135 STREET, 12 AVENUE between WEST 132 STREET and WEST 133 STREET, 12 AVENUE between WEST 131 STREET and WEST 132 STREET, 12 AVENUE between WEST 130 STREET and WEST 131 STREET, W 134th st between 12 AVENUE and DEAD END, WEST 133 STREET between 12 AVENUE and BROADWAY",Manhattan,"12, 9","26, 30, 33",Television,Episodic series,United States of America,"10027, 10031, 10032"
+572307,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 11:00:00 PM,04/22/2021 09:46:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10171"
+572306,Shooting Permit,04/26/2021 08:30:00 AM,04/26/2021 10:30:00 PM,04/22/2021 09:44:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","DYCKMAN STREET between SEAMAN AVENUE and DEAD END, RIVERSIDE DRIVE between HENSHAW STREET and DYCKMAN STREET, BROADWAY between DYCKMAN STREET and CUMMING STREET",Manhattan,12,"30, 34",Television,Episodic series,United States of America,"10033, 10034, 10040"
+572299,Shooting Permit,04/27/2021 09:00:00 AM,04/28/2021 02:00:00 AM,04/22/2021 08:52:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+572296,Shooting Permit,04/26/2021 06:00:00 AM,04/26/2021 10:00:00 PM,04/22/2021 08:15:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572295,Shooting Permit,04/24/2021 06:00:00 AM,04/24/2021 10:00:00 PM,04/22/2021 08:09:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572293,Shooting Permit,04/29/2021 07:00:00 AM,04/29/2021 10:00:00 PM,04/22/2021 06:27:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",DWIGHT STREET between COFFEY STREET and VAN DYKE STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+572292,Shooting Permit,04/28/2021 06:00:00 AM,04/28/2021 10:00:00 PM,04/22/2021 06:21:39 AM,"Mayor's Office of Film, Theatre & Broadcasting",DWIGHT STREET between COFFEY STREET and VAN DYKE STREET,Brooklyn,6,76,Film,Feature,United States of America,11231
+572212,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 09:00:00 PM,04/21/2021 05:27:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572208,Shooting Permit,04/28/2021 09:00:00 AM,04/29/2021 01:00:00 AM,04/21/2021 05:04:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 85 STREET between WEST END AVENUE and RIVERSIDE DRIVE, RIVERSIDE DRIVE between WEST 83 STREET and WEST 85 STREET, BROADWAY between WEST 79 STREET and WEST 84 STREET, WEST 82 STREET between WEST END AVENUE and BROADWAY, RIVERSIDE DRIVE between WEST 88 STREET and WEST 89 STREET",Manhattan,"7, 9","20, 24",Television,Episodic series,United States of America,10024
+572207,Shooting Permit,04/28/2021 11:00:00 AM,04/29/2021 01:00:00 AM,04/21/2021 04:54:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 3 AVENUE and 2 AVENUE, EAST 43 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 46 STREET and EAST 44 STREET, 3 AVENUE between EAST 44 STREET and EAST 43 STREET, EAST 44 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 43 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 45 STREET between 3 AVENUE and 2 AVENUE, BLEECKER STREET between ELIZABETH STREET and MULBERRY STREET, BOWERY between BLEECKER STREET and EAST HOUSTON STREET, ELIZABETH STREET between BLEECKER STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between MOTT STREET and ELIZABETH STREET, MOTT STREET between BLEECKER STREET and EAST HOUSTON STREET, MULBERRY STREET between BLEECKER STREET and EAST HOUSTON STREET, MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between BLEECKER STREET and GREAT JONES STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, GREAT JONES STREET between LAFAYETTE STREET and BOWERY, WHITE STREET between BROADWAY and LAFAYETTE STREET, WHITE STREET between CHURCH STREET and BROADWAY, WALKER STREET between LAFAYETTE STREET and CENTRE STREET, WALKER STREET between LAFAYETTE STREET and CHURCH STREET, LISPENARD STREET between CHURCH STREET and BROADWAY, CORTLANDT ALLEY between WHITE STREET and WALKER STREET",Manhattan,"1, 2, 3, 6","1, 17, 5, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013, 10017"
+572188,Shooting Permit,04/27/2021 08:00:00 AM,04/27/2021 10:00:00 PM,04/21/2021 03:52:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 57 STREET and WEST 59 STREET, WEST 58 STREET between 7 AVENUE and 5 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, WEST 59 STREET between 6 AVENUE and COLUMBUS CIRCLE, 7 AVENUE between WEST 58 STREET and WEST 59 STREET, WEST 58 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+572184,Shooting Permit,04/26/2021 06:00:00 AM,04/26/2021 08:00:00 PM,04/21/2021 03:39:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between GLENWOOD ROAD and AVENUE H, AVENUE H between EAST 19 STREET and EAST 18 STREET",Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+572158,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 09:00:00 PM,04/21/2021 02:41:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 57 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+572157,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 09:00:00 PM,04/21/2021 02:41:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 57 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+572135,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 10:00:00 PM,04/21/2021 02:08:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLERMONT AVENUE between GREENE AVENUE and FULTON STREET, GATES AVENUE between FULTON STREET and VANDERBILT AVENUE",Brooklyn,2,88,Commercial,Commercial,United States of America,11238
+572113,Shooting Permit,04/24/2021 06:00:00 AM,04/24/2021 11:59:00 PM,04/21/2021 01:36:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",168 STREET between 33 AVENUE and 35 AVENUE,Queens,7,109,WEB,Not Applicable,United States of America,11358
+572086,Shooting Permit,04/24/2021 04:00:00 PM,04/25/2021 01:30:00 AM,04/21/2021 12:44:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","ESSEX STREET between CANAL STREET and GRAND STREET, EAST BROADWAY between RUTGERS STREET and PIKE STREET",Manhattan,3,7,Commercial,Commercial,United States of America,10002
+572085,Shooting Permit,04/23/2021 12:00:00 PM,04/24/2021 02:00:00 AM,04/21/2021 12:44:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 56 AVENUE and BORDEN AVENUE, 55 AVENUE between CENTER BOULEVARD and 2 STREET, 44 ROAD between 10 STREET and 11 STREET, 44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 AVENUE and 45 AVENUE",Queens,2,108,Commercial,Commercial,United States of America,11101
+572071,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 09:00:00 PM,04/21/2021 12:19:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","FURMANVILLE AVENUE between 82 STREET and 82 PLACE, 82 PLACE between 64 ROAD and FURMANVILLE AVENUE, 64 ROAD between 82 STREET and 82 PLACE, 81 STREET between JUNIPER BOULEVARD SOUTH and PENELOPE AVENUE, JUNIPER BOULEVARD SOUTH between 81 STREET and DRY HARBOR ROAD",Queens,5,104,Film,Feature,United States of America,11379
+572049,Shooting Permit,04/24/2021 08:00:00 AM,04/24/2021 11:00:00 PM,04/21/2021 11:50:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+572048,Shooting Permit,04/30/2021 06:00:00 AM,04/30/2021 09:00:00 PM,04/21/2021 11:43:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 7 AVENUE and 6 AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 46 STREET and WEST 47 STREET",Manhattan,5,"14, 18",Television,Cable-other,United States of America,10036
+572011,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 09:00:00 PM,04/21/2021 10:29:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, WOODWARD AVENUE between STARR STREET and WILLOUGHBY AVENUE, 54 STREET between FLUSHING AVENUE and GRAND AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+572005,Shooting Permit,04/28/2021 09:00:00 AM,04/28/2021 11:00:00 PM,04/21/2021 10:16:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+571972,Theater Load in and Load Outs,04/26/2021 12:01:00 AM,04/27/2021 06:00:00 AM,04/21/2021 08:50:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 64 STREET and WEST 65 STREET,Manhattan,7,20,Theater,Theater,United States of America,10023
+571971,Shooting Permit,04/26/2021 08:00:00 AM,04/26/2021 11:59:00 PM,04/21/2021 08:48:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, LEXINGTON AVENUE between EAST 47 STREET and EAST 48 STREET, LEXINGTON AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, PARK AVENUE between EAST 53 STREET and EAST 54 STREET, PARK AVENUE between EAST 54 STREET and EAST 55 STREET, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10152, 10172"
+571958,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 08:00:00 PM,04/21/2021 12:44:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE,Manhattan,"2, 3","5, 88",Still Photography,Not Applicable,United States of America,"10002, 11238"
+571927,Shooting Permit,04/23/2021 06:00:00 AM,04/23/2021 08:00:00 PM,04/20/2021 09:54:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",27 STREET between 5 AVENUE and 4 AVENUE,Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+571881,Shooting Permit,04/23/2021 07:00:00 AM,04/23/2021 08:00:00 PM,04/20/2021 06:02:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and MAIN STREET, CADMAN PLAZA WEST between MIDDAGH STREET and PINEAPPLE WALK",Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+571867,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 09:00:00 PM,04/20/2021 05:25:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 57 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE, WOODSIDE AVENUE between 56 STREET and 54 STREET, 57 STREET between WOODSIDE AVENUE and ROOSEVELT AVENUE, 60 STREET between 37 AVENUE and BROADWAY",Queens,2,108,Television,Cable-episodic,United States of America,11377
+571854,Shooting Permit,04/23/2021 06:00:00 AM,04/23/2021 06:00:00 PM,04/20/2021 04:29:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between MILL STREET and HUNTINGTON STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+571851,Shooting Permit,05/04/2021 06:00:00 AM,05/04/2021 11:59:00 PM,04/20/2021 04:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571850,Shooting Permit,05/03/2021 06:00:00 AM,05/03/2021 09:00:00 PM,04/20/2021 04:18:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571847,Shooting Permit,05/02/2021 06:00:00 AM,05/02/2021 09:00:00 PM,04/20/2021 04:10:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571845,Shooting Permit,05/01/2021 06:00:00 AM,05/01/2021 09:00:00 PM,04/20/2021 04:08:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571844,Shooting Permit,04/30/2021 06:00:00 AM,04/30/2021 09:00:00 PM,04/20/2021 04:06:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571841,Shooting Permit,04/29/2021 06:00:00 AM,04/29/2021 09:00:00 PM,04/20/2021 04:03:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571835,Shooting Permit,04/28/2021 06:00:00 AM,04/28/2021 09:00:00 PM,04/20/2021 03:55:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571834,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 09:00:00 PM,04/20/2021 03:52:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571832,Shooting Permit,04/26/2021 06:00:00 AM,04/26/2021 09:00:00 PM,04/20/2021 03:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571831,Shooting Permit,04/25/2021 06:00:00 AM,04/25/2021 09:00:00 PM,04/20/2021 03:47:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 10 AVENUE and 9 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+571823,Shooting Permit,04/27/2021 06:00:00 AM,04/27/2021 09:00:00 PM,04/20/2021 03:35:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 90 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 91 STREET and WEST 92 STREET, BROADWAY between WEST 91 STREET and WEST 87 STREET, AMSTERDAM AVENUE between WEST 87 STREET and WEST 92 STREET",Manhattan,7,24,Television,Episodic series,United States of America,"10024, 10025"
+571821,Shooting Permit,04/22/2021 09:00:00 AM,04/22/2021 09:00:00 PM,04/20/2021 03:28:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","HULL STREET between FULTON STREET and SARATOGA AVENUE, FULTON STREET between HULL STREET and SARATOGA AVENUE",Brooklyn,"16, 2, 3, 5","73, 75, 81, 84",WEB,Not Applicable,United States of America,"11201, 11207, 11208, 11233"
+571808,Shooting Permit,04/27/2021 08:00:00 AM,04/27/2021 10:00:00 PM,04/20/2021 02:55:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+571805,Shooting Permit,04/23/2021 07:30:00 AM,04/23/2021 08:30:00 PM,04/20/2021 02:44:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 130 STREET and WEST 131 STREET, WEST 130 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, LENOX AVENUE between WEST 129 STREET and WEST 130 STREET, WEST 129 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 131 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 129 STREET and WEST 130 STREET",Manhattan,10,32,Television,Episodic series,United States of America,10027
+571769,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 11:00:00 PM,04/20/2021 01:36:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between DUPONT STREET and FREEMAN STREET, PROVOST STREET between GREEN STREET and JAVA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+571756,Shooting Permit,04/22/2021 06:00:00 AM,04/22/2021 06:00:00 PM,04/20/2021 01:21:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",HICKS STREET between HUNTINGTON STREET and MILL STREET,Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+571734,Shooting Permit,04/23/2021 06:00:00 PM,04/24/2021 07:00:00 AM,04/20/2021 12:49:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","157 STREET between 116 AVENUE and FOCH BOULEVARD, 116 DRIVE between 155 STREET and BARRON STREET, BARRON STREET between FOCH BOULEVARD and 116 AVENUE, 116 AVENUE between 155 STREET and BARRON STREET, 116 AVENUE between BARRON STREET and 158 STREET, 157 STREET between 115 DRIVE and 116 AVENUE, GUY R BREWER BOULEVARD between MATHIAS AVENUE and CLAUDE AVENUE, GUY R BREWER BOULEVARD between CLAUDE AVENUE and 111 AVENUE, 111 AVENUE between UNION HALL STREET and GUY R BREWER BOULEVARD, Claude Ave between GUY R BREWER BOULEVARD and 166th St",Queens,12,113,Television,Cable-episodic,United States of America,"11433, 11434"
+571723,Shooting Permit,04/22/2021 06:00:00 AM,04/22/2021 07:00:00 PM,04/20/2021 12:30:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHERRY STREET between MARKET STREET and CATHERINE STREET,Manhattan,"2, 3, 8","19, 5, 84, 9",Still Photography,Not Applicable,United States of America,"10002, 10035, 11201"
+571719,Shooting Permit,04/21/2021 07:00:00 AM,04/21/2021 09:00:00 PM,04/20/2021 12:19:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+571701,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 09:00:00 PM,04/20/2021 11:45:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between BROAD STREET and OLD SLIP, WATER STREET between WALL STREET and OLD SLIP, WATER STREET between WHITEHALL STREET and BROAD STREET, BROAD STREET between PEARL STREET and SOUTH STREET, WHITEHALL STREET between WATER STREET and SOUTH STREET, SOUTH STREET between WHITEHALL STREET and BROAD STREET, SOUTH STREET between BROAD STREET and OLD SLIP, OLD SLIP between WATER STREET and SOUTH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005, 10041"
+571697,Shooting Permit,04/28/2021 06:00:00 AM,04/28/2021 09:00:00 PM,04/20/2021 11:36:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between WYCKOFF AVENUE and IRVING AVENUE, WYCKOFF AVENUE between FLUSHING AVENUE and TROUTMAN STREET, JEFFERSON STREET between IRVING AVENUE and ST NICHOLAS AVENUE",Brooklyn,"1, 4","83, 90",Television,Cable-other,United States of America,11237
+571680,Shooting Permit,04/22/2021 05:00:00 PM,04/22/2021 09:00:00 PM,04/20/2021 11:00:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","90 STREET between JAMAICA AVENUE and 86 ROAD, JAMAICA AVENUE between 90 STREET and 91 STREET",Queens,9,102,Television,Episodic series,United States of America,11421
+571679,Shooting Permit,04/22/2021 01:00:00 PM,04/23/2021 02:00:00 AM,04/20/2021 10:59:13 AM,"Mayor's Office of Film, Theatre & Broadcasting",WOODHAVEN BOULEVARD between FOREST PARK DRIVE and PARK LANE SOUTH,Queens,"82, 9",102,Television,Episodic series,United States of America,"11385, 11421"
+571671,Shooting Permit,04/22/2021 11:00:00 AM,04/23/2021 12:00:00 AM,04/20/2021 10:42:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD, 56 ROAD between LAUREL HILL BOULEVARD and 43 STREET, LAUREL HILL BOULEVARD between 54 ROAD and 56 ROAD, 43 STREET between 56 ROAD and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11378
+571636,Shooting Permit,04/22/2021 10:00:00 AM,04/23/2021 02:00:00 AM,04/20/2021 09:07:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 140 STREET, WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 139 STREET and WEST 141 STREET, WEST 141 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,32,Television,Episodic series,United States of America,"10030, 10037"
+571633,Shooting Permit,04/23/2021 06:00:00 AM,04/23/2021 08:00:00 PM,04/20/2021 08:52:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 87 STREET between ROCKAWAY FREEWAY and BEACH CHANNEL DRIVE, BEACH 87 STREET between ROCKAWAY FREEWAY and ROCKAWAY BEACH BOULEVARD",Queens,14,100,WEB,Not Applicable,United States of America,11693
+571630,Rigging Permit,04/23/2021 02:00:00 AM,04/23/2021 02:00:00 PM,04/20/2021 08:48:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,32,Television,Episodic series,United States of America,10030
+571629,Rigging Permit,04/21/2021 10:00:00 PM,04/22/2021 10:00:00 AM,04/20/2021 08:47:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD,Manhattan,10,32,Television,Episodic series,United States of America,10030
+571627,Shooting Permit,04/22/2021 06:00:00 AM,04/22/2021 09:00:00 PM,04/20/2021 08:35:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 4 STREET and CARMINE STREET, PROSPECT PL between NOSTRAND AVENUE and ROGERS AVE",Manhattan,"2, 8","6, 77",WEB,Not Applicable,United States of America,"10014, 11216"
+571624,Shooting Permit,04/23/2021 06:00:00 AM,04/23/2021 07:00:00 PM,04/20/2021 08:06:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+571598,Shooting Permit,04/24/2021 06:00:00 AM,04/25/2021 03:00:00 AM,04/19/2021 10:31:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+571597,Shooting Permit,04/23/2021 06:00:00 AM,04/24/2021 02:00:00 AM,04/19/2021 10:26:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+571595,Shooting Permit,04/22/2021 06:00:00 AM,04/23/2021 02:00:00 AM,04/19/2021 10:20:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+571555,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 11:00:00 PM,04/19/2021 07:41:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, PROVOST STREET between GREENPOINT AVENUE and HURON STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+571548,Shooting Permit,04/22/2021 06:00:00 AM,04/22/2021 08:00:00 PM,04/19/2021 06:30:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",27 STREET between 5 AVENUE and 4 AVENUE,Brooklyn,7,72,Still Photography,Not Applicable,United States of America,11232
+571545,Shooting Permit,04/23/2021 04:00:00 PM,04/24/2021 06:00:00 AM,04/19/2021 06:24:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street, 19 STREET between 23 AVENUE and 22 ROAD, 21 STREET between 22 ROAD and 23 AVENUE, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 21 STREET and 19 STREET",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11105, 11222"
+571492,Shooting Permit,04/23/2021 04:00:00 PM,04/24/2021 05:00:00 AM,04/19/2021 04:25:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 14 ST between HIGH LINE and 9TH AVE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, WASHINGTON STREET between JANE STREET and BETHUNE STREET, WASHINGTON STREET between BANK STREET and BETHUNE STREET, BANK STREET between WASHINGTON STREET and GREENWICH STREET, BANK STREET between GREENWICH STREET and HUDSON STREET, GREENWICH STREET between BETHUNE STREET and WEST 11 STREET, HUDSON STREET between BANK STREET and BLEECKER STREET, GREENWICH STREET between BETHUNE STREET and HORATIO STREET, BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+571456,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 10:00:00 PM,04/19/2021 03:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 36 STREET and WEST 37 STREET, 10 AVENUE between WEST 36 STREET and WEST 35 STREET",Manhattan,4,10,Commercial,Commercial,United States of America,10018
+571445,Shooting Permit,04/28/2021 07:00:00 AM,04/28/2021 09:00:00 PM,04/19/2021 02:42:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+571432,Shooting Permit,04/27/2021 06:30:00 AM,04/27/2021 09:00:00 PM,04/19/2021 02:18:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 108 STREET and WEST 102 STREET, COLUMBUS AVENUE between WEST 110 STREET and WEST 106 STREET, WEST 106 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 106 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 105 STREET between WEST END AVENUE and BROADWAY",Manhattan,7,24,Television,Episodic series,United States of America,10025
+571419,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 11:00:00 PM,04/19/2021 01:55:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 35 STREET between LEXINGTON AVENUE and MADISON AVENUE, PARK AVENUE between EAST 37 STREET and EAST 34 STREET, 3 AVENUE between EAST 36 STREET and EAST 39 STREET, EAST 34 STREET between 2 AVENUE and 3 AVENUE, EAST 34 STREET between 2 AVENUE and 1 AVENUE",Manhattan,6,17,Television,Episodic series,United States of America,10016
+571418,Shooting Permit,04/23/2021 06:30:00 AM,04/23/2021 09:30:00 PM,04/19/2021 01:53:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 156 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 155 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 153 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 152 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 151 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 155 STREET and WEST 150 STREET",Manhattan,"12, 9","30, 33",Television,Episodic series,United States of America,"10031, 10032"
+571400,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 09:00:00 PM,04/19/2021 01:24:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON PARK between MYRTLE AVENUE and WILLOUGHBY AVENUE,Manhattan,"11, 2","25, 88",WEB,Not Applicable,United States of America,"10035, 11201, 11205"
+571356,Shooting Permit,04/23/2021 11:00:00 AM,04/24/2021 02:00:00 AM,04/19/2021 12:28:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BALTIC STREET between 3 AVENUE and 4 AVENUE, 4 AVENUE between BALTIC STREET and BUTLER STREET, BUTLER STREET between 3 AVENUE and 4 AVENUE, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DEGRAW STREET, DEGRAW STREET between NEVINS STREET and 3 AVENUE, DEGRAW STREET between NEVINS STREET and DEAD END, NEVINS STREET between DEGRAW STREET and SACKETT STREET",Brooklyn,6,78,Television,Cable-episodic,United States of America,11217
+571343,Shooting Permit,04/20/2021 02:00:00 PM,04/20/2021 08:00:00 PM,04/19/2021 12:04:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLIFTON PLACE between GRAND AVENUE and ST JAMES PLACE, ST JAMES PLACE between CLIFTON PLACE and GREENE AVENUE, CLIFTON PLACE between GRAND AVENUE and CLASSON AVENUE, LAFAYETTE AVENUE between GRAND AVENUE and WASHINGTON AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11238
+571342,Shooting Permit,04/23/2021 01:00:00 PM,04/24/2021 02:00:00 AM,04/19/2021 12:02:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+571340,Shooting Permit,04/22/2021 01:00:00 PM,04/23/2021 02:00:00 AM,04/19/2021 11:59:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+571311,Shooting Permit,04/22/2021 03:00:00 PM,04/23/2021 06:00:00 AM,04/19/2021 11:12:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","MERRICK BOULEVARD between 89 AVENUE and 91 AVENUE, 89 AVENUE between MERRICK BOULEVARD and 168 STREET, MERRICK BOULEVARD between 89 AVENUE and 88 AVENUE, 89 AVENUE between 164 STREET and MERRICK BOULEVARD, 165 STREET between 89 AVENUE and 88 AVENUE",Queens,12,103,Television,Cable-episodic,United States of America,"11432, 11433"
+571307,Shooting Permit,04/22/2021 12:00:00 PM,04/23/2021 03:00:00 AM,04/19/2021 11:10:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 57 STREET and EAST 49 STREET, EAST 54 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between 5 AVENUE and PARK AVENUE, WEST 20 STREET between 10 AVENUE and 9 AVENUE, WEST 19 STREET between 10 AVENUE and 9 AVENUE, WEST 18 STREET between 10 AVENUE and 9 AVENUE, WEST 17 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 17 STREET and WEST 18 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, 9 AVENUE between WEST 19 STREET and WEST 18 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"4, 5, 6","10, 17, 18",Television,Episodic series,United States of America,"10011, 10022, 10152"
+571291,Shooting Permit,04/25/2021 06:00:00 AM,04/25/2021 08:00:00 PM,04/19/2021 10:18:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ESSEX STREET and CLINTON STREET, ESSEX STREET between STANTON STREET and EAST HOUSTON STREET",Manhattan,3,"7, 9",Commercial,Commercial,United States of America,"10002, 10009"
+571272,Shooting Permit,04/21/2021 07:00:00 AM,04/21/2021 11:00:00 PM,04/19/2021 09:26:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",KENT AVENUE between NORTH 1 STREET and NORTH 11 STREET,Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11249
+571264,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 10:00:00 PM,04/19/2021 09:16:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE, WOODWARD AVENUE between METROPOLITAN AVENUE and FLUSHING AVENUE, FLUSHING AVENUE between METROPOLITAN AVENUE and WOODWARD AVENUE, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Queens,"1, 5","104, 94",Television,Episodic series,United States of America,"11222, 11385"
+571259,Rigging Permit,04/20/2021 05:00:00 PM,04/21/2021 06:00:00 AM,04/19/2021 09:04:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD,Manhattan,10,32,Television,Episodic series,United States of America,10030
+571258,Rigging Permit,04/20/2021 07:00:00 AM,04/20/2021 05:00:00 PM,04/19/2021 09:03:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD,Manhattan,10,32,Television,Episodic series,United States of America,10030
+571257,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 10:00:00 PM,04/19/2021 09:02:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 138 STREET and WEST 140 STREET, WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 139 STREET and WEST 141 STREET, WEST 141 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,32,Television,Episodic series,United States of America,"10030, 10037"
+571254,Shooting Permit,04/26/2021 07:00:00 AM,04/26/2021 09:00:00 PM,04/19/2021 08:51:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+571218,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 08:00:00 PM,04/18/2021 09:02:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BOWERY and FORSYTH STREET, GRAND STREET between BROADWAY and LAFAYETTE STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET",Manhattan,"2, 3",5,Still Photography,Not Applicable,United States of America,"10002, 10012, 10013"
+571152,Shooting Permit,04/22/2021 10:00:00 AM,04/22/2021 11:45:00 PM,04/18/2021 10:35:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 STREET between 2 AVENUE and 3 AVENUE, CROSBY STREET between HOWARD STREET and GRAND STREET",Brooklyn,"2, 6","5, 78",WEB,Not Applicable,United States of America,"10013, 11215"
+571014,Shooting Permit,04/21/2021 10:00:00 AM,04/22/2021 12:30:00 AM,04/16/2021 11:20:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and BAYARD STREET, LEONARD STREET between DRIGGS AVENUE and ENGERT AVENUE, ECKFORD STREET between DRIGGS AVENUE and ENGERT AVENUE, MANHATTAN AVENUE between DRIGGS AVENUE and ENGERT AVENUE, ENGERT AVENUE between MCGUINNESS BLVD SOUTH and GRAHAM AVENUE, GRAHAM AVENUE between BROOME STREET and ENGERT AVENUE, GRAHAM AVENUE between ENGERT AVENUE and NEWTON STREET, NEWTON STREET between MCGUINNESS BLVD SOUTH and GRAHAM AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570974,Shooting Permit,04/22/2021 09:00:00 AM,04/23/2021 12:00:00 AM,04/16/2021 05:17:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","FORT WASHINGTON AVENUE between WEST 185 STREET and WEST 180 STREET, WEST 181 STREET between PINEHURST AVENUE and FT WASHINGTON AVENUE, BROADWAY between WEST 193 STREET and WEST 187 STREET, BENNETT AVENUE between WEST 190 STREET and WEST 189 STREET, BROADWAY between SHERMAN AVENUE and BENNETT AVENUE",Manhattan,12,34,Television,Cable-episodic,United States of America,"10033, 10040"
+570961,Shooting Permit,04/22/2021 10:00:00 AM,04/23/2021 03:00:00 AM,04/16/2021 04:40:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between TILDEN AVENUE and DURYEA PLACE, TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, EAST 22 STREET between DURYEA PLACE and BEVERLY ROAD, BEDFORD AVENUE between TILDEN AVENUE and BEVERLY ROAD, BEDFORD AVENUE between SNYDER AVENUE and ALBEMARLE ROAD",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+570956,Shooting Permit,04/21/2021 10:00:00 PM,04/23/2021 04:00:00 AM,04/16/2021 04:22:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARROW STREET between BEDFORD STREET and HUDSON STREET, 7 AVENUE SOUTH between BARROW STREET and MORTON STREET, WEST 4 STREET between GROVE STREET and BARROW STREET, WEST 4 STREET between JONES STREET and BARROW STREET, GROVE STREET between WEST 4 STREET and WAVERLY PLACE, CHRISTOPHER STREET between BLEEKER STREET and 7 AVENUE SOUTH, BLEEKER STREET between CHRISTOPHER STREET and WEST 10 STREET, WAVERLY PLACE between GROVE STREET and 6 AVENUE, 7 AVENUE SOUTH between CHRISTOPHER STREET and GROVE STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST HOUSTON STREET, WEST SIDE HIGHWAY between CHRISTOPHER STREET and BARROW STREET, CHRISTOPHER STREET between GREENWICH STREET and WASHINGTON STREET, BLEEKER STREET between 7 AVENUE SOUTH and JONES STREET, BARROW STREET between BEDFORD STREET and BLEEKER STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10012, 10014"
+570953,Shooting Permit,04/23/2021 12:00:00 PM,04/24/2021 03:00:00 AM,04/16/2021 04:16:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","FURMANVILLE AVENUE between 78 STREET and 80 STREET, JUNIPER VALLEY ROAD between 78 STREET and 79 STREET, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, 79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, DORAN AVENUE between 83 STREET and 84 STREET, 88 STREET between DORAN AVENUE and RUTLEDGE AVENUE",Queens,5,104,Television,Episodic series,United States of America,"11379, 11385"
+570907,Shooting Permit,04/21/2021 07:00:00 AM,04/21/2021 10:00:00 PM,04/16/2021 02:42:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST BROADWAY between CATHERINE STREET and MARKET STREET, MALCOLM X BOULEVARD between WEST 126 STREET and WEST 127 STREET, WEST 127 STREET between MALCOLM X BOULEVARD and 5 AVENUE",Manhattan,"10, 3","28, 32, 5",WEB,Not Applicable,United States of America,"10002, 10027"
+570901,Shooting Permit,04/21/2021 02:00:00 PM,04/22/2021 03:00:00 AM,04/16/2021 02:31:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","33 STREET between 36 AVENUE and 37 AVENUE, 36 AVENUE between 31 STREET and 33 STREET, 38 STREET between 35 AVENUE and 36 AVENUE, 35 AVENUE between 37 STREET and STEINWAY STREET",Queens,1,114,Television,Cable-episodic,United States of America,"11101, 11106"
+570894,Shooting Permit,04/22/2021 06:30:00 AM,04/22/2021 09:00:00 PM,04/16/2021 02:21:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 104 STREET and EAST 99 STREET, MADISON AVENUE between EAST 103 STREET and EAST 102 STREET, MADISON AVENUE between EAST 102 STREET and EAST 99 STREET, 5 AVENUE between EAST 103 STREET and EAST 101 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+570864,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 09:00:00 PM,04/16/2021 01:13:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between FORT GREENE PLACE and ST FELIX STREET, LAFAYETTE AVE between FULTON STREET and S ELLIOT PLACE, FORT GREENE PLACE between LAFAYETTE AVENUE and HANSON PLACE",Brooklyn,2,88,Commercial,Commercial,United States of America,11217
+570861,Shooting Permit,04/22/2021 06:00:00 AM,04/22/2021 10:00:00 PM,04/16/2021 01:11:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAHAM AVENUE between METROPOLITAN AVENUE and DEVOE STREET, GRAHAM AVENUE between DEVOE STREET and AINSLIE STREET, DEVOE STREET between GRAHAM AVENUE and MANHATTAN AVENUE, NORTH 13 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 13 STREET and NORTH 12 STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11211, 11249"
+570843,Shooting Permit,04/20/2021 08:00:00 AM,04/20/2021 10:00:00 PM,04/16/2021 12:43:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 119 STREET and EAST 120 STREET, EAST 120 STREET between MADISON AVENUE and 5 AVENUE, EAST 118 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 118 STREET and EAST 120 STREET, EAST 119 STREET between PARK AVENUE and 5 AVENUE, WEST 119 STREET between 5 AVENUE and LENOX AVENUE, LEXINGTON AVENUE between EAST 121 STREET and EAST 122 STREET, EAST 121 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 122 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027, 10035"
+570818,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 09:00:00 PM,04/16/2021 11:58:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 80 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 79 STREET, PARK AVENUE between EAST 83 STREET and EAST 79 STREET, EAST 81 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 82 STREET between PARK AVENUE and LEXINGTON AVENUE, 1 AVENUE between EAST 74 STREET and EAST 75 STREET, EAST 75 STREET between 1 AVENUE and YORK AVENUE, EAST 75 STREET between 2 AVENUE and 1 AVENUE, 1 AVENUE between EAST 76 STREET and EAST 75 STREET, EAST 74 STREET between 1 AVENUE and YORK AVENUE, EAST 76 STREET between 1 AVENUE and YORK AVENUE, YORK AVENUE between EAST 76 STREET and EAST 74 STREET, EAST 75 STREET between YORK AVENUE and DEAD END, YORK AVENUE between EAST 74 STREET and EAST 72 STREET, EAST 73 STREET between 2 AVENUE and 1 AVENUE, EAST 88 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 90 STREET and EAST 86 STREET, PARK AVENUE between EAST 90 STREET and EAST 86 STREET, EAST 88 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 87 STREET between 5 AVENUE and MADISON AVENUE, EAST 90 STREET between 3 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10028, 10075, 10128"
+570795,Shooting Permit,04/21/2021 11:00:00 AM,04/22/2021 02:00:00 AM,04/16/2021 11:33:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 72 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, 3 AVENUE between EAST 69 STREET and EAST 73 STREET, EAST 71 STREET between 2 AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 64 STREET and EAST 66 STREET, EAST 65 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+570783,Shooting Permit,04/21/2021 07:00:00 AM,04/22/2021 02:00:00 AM,04/16/2021 11:18:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 228 STREET between ADRIAN AVENUE and BROADWAY, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET, WEST 231 STREET between IRWIN AVENUE and CORLEAR AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 230 STREET, CORLEAR AVENUE between WEST 231 STREET and WEST 230 STREET, WEBSTER AVENUE between EAST 183 STREET and EAST 188 STREET, EAST 187 STREET between WEBSTER AVENUE and PARK AVENUE, EAST 188 STREET between WEBSTER AVENUE and PARK AVENUE, PARK AVENUE between EAST 187 STREET and EAST 188 STREET, EAST 189 STREET between WEBSTER AVENUE and PARK AVENUE, PARK AVENUE between EAST 189 STREET and EAST 188 STREET, WEBSTER AVENUE between EAST 189 STREET and EAST 188 STREET, 3 AVENUE between EAST 189 STREET and EAST 188 STREET",Manhattan,"5, 6, 8","46, 48, 50",Television,Episodic series,United States of America,"10458, 10463"
+570767,Shooting Permit,04/21/2021 08:00:00 AM,04/21/2021 11:00:00 PM,04/16/2021 10:48:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570763,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 10:00:00 PM,04/16/2021 10:42:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570743,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 10:00:00 PM,04/16/2021 09:59:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+570737,Shooting Permit,04/21/2021 08:00:00 AM,04/21/2021 11:00:00 PM,04/16/2021 09:48:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570730,Shooting Permit,04/21/2021 11:00:00 AM,04/21/2021 05:00:00 PM,04/16/2021 09:24:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 35 STREET and VAN DAM STREET, QUEENS BOULEVARD between 33 STREET and 34 STREET, QUEENS BOULEVARD between 35 STREET and 34 STREET, 34 STREET between QUEENS BOULEVARD and 43 AVENUE, 35 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 35 STREET and 36 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+570628,Shooting Permit,04/20/2021 02:00:00 AM,04/21/2021 08:00:00 PM,04/15/2021 07:47:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BROADWAY and LAFAYETTE STREET, GRAND STREET between BOWERY and FORSYTH STREET, CHRYSTIE STREET between GRAND STREET and HESTER STREET",Manhattan,"2, 3",5,Still Photography,Not Applicable,United States of America,"10002, 10012, 10013"
+570625,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 10:00:00 PM,04/15/2021 07:35:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE,Brooklyn,1,94,Commercial,Commercial,United States of America,11222
+570626,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 10:00:00 PM,04/15/2021 07:35:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERGEN STREET between BOND STREET and HOYT STREET, WYCKOFF STREET between BOND STREET and NEVINS STREET",Brooklyn,2,84,Commercial,Commercial,United States of America,11217
+570582,Shooting Permit,04/20/2021 10:00:00 AM,04/21/2021 01:00:00 AM,04/15/2021 05:29:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 51 STREET and EAST 54 STREET, EAST 49 STREET between PARK AVENUE and MADISON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+570578,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 11:59:00 PM,04/15/2021 05:18:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",BRUCKNER BOULEVARD between LINCOLN AVENUE and ALEXANDER AVENUE,Bronx,1,40,Film,Short,United States of America,10454
+570571,Shooting Permit,04/20/2021 09:00:00 AM,04/20/2021 09:00:00 PM,04/15/2021 04:49:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+570561,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 11:00:00 PM,04/15/2021 04:07:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570557,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 08:00:00 PM,04/15/2021 03:51:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NINTH STREET between 43 AVENUE and QUEENS PLAZA, 43 AVENUE between NINTH STREET and VERNON BOULEVARD",Queens,2,108,WEB,Not Applicable,United States of America,11101
+570556,Shooting Permit,04/20/2021 09:00:00 AM,04/21/2021 12:30:00 AM,04/15/2021 03:46:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MULBERRY STREET between EAST HOUSTON STREET and PRINCE STREET, LAFAYETTE STREET between PRINCE STREET and EAST HOUSTON STREET, BOWERY between EAST HOUSTON STREET and PRINCE STREET, PRINCE STREET between BOWERY and LAFAYETTE STREET, LAGUARDIA PLACE between WASHINGTON SQUARE SOUTH and WEST HOUSTON STREET, GREENWICH STREET between WEST 10 STREET and BARROW STREET, GREENWICH STREET between CHARLES STREET and WEST 10 STREET, CHARLES STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between CHARLES STREET and PERRY STREET, GREENWICH STREET between WEST 11 STREET and PERRY STREET, GREENWICH STREET between BANK STREET and WEST 11 STREET, 8TH AVENUE between BLEEKER STREET and W 12TH STREET",Manhattan,"2, 3","5, 6",Television,Episodic series,United States of America,"10002, 10012, 10014"
+570550,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 08:00:00 PM,04/15/2021 03:38:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 127 STREET between 1 AVENUE and 2 AVENUE,Manhattan,11,25,Still Photography,Not Applicable,United States of America,10035
+570497,Shooting Permit,04/17/2021 07:00:00 AM,04/17/2021 11:00:00 PM,04/15/2021 02:26:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORTH HENRY STREET and Greenpoint Ave, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570440,Shooting Permit,04/20/2021 09:00:00 AM,04/20/2021 11:59:00 PM,04/15/2021 12:55:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","ANDERSON AVENUE between WEST 166 STREET and WEST 167 STREET, WOODYCREST AVENUE between WEST 166 STREET and WEST 167 STREET, WEST 167 STREET between WOODYCREST AVENUE and ANDERSON AVENUE, WOODYCREST AVENUE between WEST 167 STREET and WEST 168 STREET, EAST 165 STREET between JEROME AVENUE and RIVER AVENUE, JEROME AVENUE between EAST 165 STREET and EAST 164 STREET, JEROME AVENUE between EAST 165 STREET and SHAKESPEARE AVENUE",Bronx,4,44,Television,Episodic series,United States of America,10452
+570413,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 10:00:00 PM,04/15/2021 12:26:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, LIBERTY STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, CORTLANDT STREET between BROADWAY and CHURCH STREET, WATER STREET between GOUVERNEUR LANE and JOHN STREET, MAIDEN LANE between WATER STREET and SOUTH STREET",Manhattan,"1, 5","1, 18",Television,Episodic series,United States of America,"10005, 10006, 10007, 10019, 10022, 10038, 10045, 10048"
+570390,Shooting Permit,04/16/2021 08:00:00 AM,04/16/2021 08:00:00 PM,04/15/2021 11:52:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 9 STREET between BERRY STREET and WYTHE AVENUE, ST FELIX STREET between HANSON PLACE and LAFAYETTE AVENUE",Brooklyn,"1, 2","88, 94",Still Photography,Not Applicable,United States of America,"11201, 11217, 11249"
+570359,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 10:00:00 PM,04/15/2021 11:11:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+570354,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 10:00:00 PM,04/15/2021 11:03:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between SMITH STREET and HOYT STREET, DEGRAW STREET between BOND STREET and HOYT STREET, WATER STREET between MAIN STREET and OLD FULTON STREET",Brooklyn,"2, 6","76, 84",Commercial,Commercial,United States of America,"11201, 11217, 11231"
+570353,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 11:45:00 PM,04/15/2021 11:03:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 7 STREET and EAST 10 STREET, EAST 10 STREET between AVENUE A and 1 AVENUE, EAST 10 STREET between AVENUE A and AVENUE B, EAST 67 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET",Manhattan,"3, 8","19, 9",Commercial,Commercial,United States of America,"10009, 10065"
+570350,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 10:00:00 PM,04/15/2021 11:03:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+570349,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 10:00:00 PM,04/15/2021 11:00:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570333,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 10:00:00 PM,04/15/2021 10:40:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 8 AVENUE and 6 AVENUE, WEST 24 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 23 STREET and WEST 24 STREET, WEST 23 STREET between 8 AVENUE and 7 AVENUE",Manhattan,4,"10, 13",Television,Episodic series,United States of America,10011
+570322,Shooting Permit,04/20/2021 10:00:00 AM,04/21/2021 12:00:00 AM,04/15/2021 10:22:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 24 AVENUE and 23 AVENUE, 35 STREET between 23 AVENUE and DITMARS BOULEVARD, 29 STREET between 23 AVENUE and DITMARS BOULEVARD",Queens,1,114,Television,Episodic series,United States of America,11105
+570314,Shooting Permit,04/19/2021 06:00:00 AM,04/20/2021 02:00:00 AM,04/15/2021 10:10:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570298,Shooting Permit,04/23/2021 08:00:00 AM,04/23/2021 10:00:00 PM,04/15/2021 09:44:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+570297,Shooting Permit,04/19/2021 10:00:00 AM,04/19/2021 07:00:00 PM,04/15/2021 09:43:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 14 STREET and LITTLE WEST 12 STREET, 10 AVENUE between GANSEVOORT STREET and WEST STREET",Manhattan,"2, 4","10, 6",WEB,Not Applicable,United States of America,"10011, 10014"
+570296,Shooting Permit,04/22/2021 08:00:00 AM,04/22/2021 10:00:00 PM,04/15/2021 09:40:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+570290,Shooting Permit,04/21/2021 07:00:00 AM,04/21/2021 09:00:00 PM,04/15/2021 09:33:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+570286,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 07:00:00 PM,04/15/2021 09:29:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+570106,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 11:00:00 PM,04/14/2021 09:00:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+570099,Shooting Permit,04/19/2021 08:00:00 AM,04/19/2021 10:00:00 PM,04/14/2021 08:22:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE, THOMPSON STREET between BROOME STREET and SPRING STREET, WEST BROADWAY between SPRING STREET and BROOME STREET, WEST BROADWAY between PRINCE STREET and SPRING STREET, WOOSTER STREET between PRINCE STREET and BROOME STREET, GREENE STREET between BROOME STREET and PRINCE STREET",Manhattan,"1, 2","1, 94",Television,Episodic series,United States of America,"10012, 10013, 11222"
+570091,Rigging Permit,04/19/2021 06:00:00 AM,04/19/2021 10:00:00 PM,04/14/2021 07:52:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570088,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 11:00:00 PM,04/14/2021 07:02:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+570082,Shooting Permit,04/21/2021 02:00:00 PM,04/21/2021 08:00:00 PM,04/14/2021 06:26:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLIFTON PLACE between GRAND AVENUE and ST JAMES PLACE, GRAND AVENUE between CLIFTON PLACE and GREENE AVENUE, ST JAMES PLACE between CLIFTON PLACE and GREENE AVENUE, CLIFTON PLACE between GRAND AVENUE and CLASSON AVENUE, LAFAYETTE AVENUE between GRAND AVENUE and WASHINGTON AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11238
+570078,Shooting Permit,04/17/2021 06:00:00 AM,04/17/2021 10:00:00 PM,04/14/2021 05:51:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+570038,Shooting Permit,04/21/2021 07:00:00 AM,04/21/2021 10:00:00 PM,04/14/2021 03:55:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+570020,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 10:00:00 PM,04/14/2021 03:21:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between GATES AVENUE and PUTNAM AVENUE,Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+570013,Shooting Permit,04/16/2021 09:00:00 AM,04/17/2021 03:00:00 AM,04/14/2021 03:11:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 35 STREET and EAST 37 STREET, EAST 35 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 51 STREET and EAST 53 STREET, EAST 52 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10022, 10154, 10158"
+569992,Shooting Permit,04/19/2021 02:00:00 PM,04/20/2021 05:00:00 AM,04/14/2021 02:38:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 26 STREET and WEST 29 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+569986,Shooting Permit,04/20/2021 08:00:00 AM,04/20/2021 11:00:00 PM,04/14/2021 02:30:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569984,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 11:00:00 PM,04/14/2021 02:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, INGRAHAM STREET between PORTER AVENUE and VARICK AVENUE, PORTER AVENUE between JOHNSON AVENUE and GRATTAN STREET, HARRISON PLACE between KNICKERBOCKER AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+569977,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 10:00:00 PM,04/14/2021 02:21:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569968,Shooting Permit,04/17/2021 05:00:00 PM,04/18/2021 08:00:00 AM,04/14/2021 02:05:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+569928,Shooting Permit,04/23/2021 09:00:00 AM,04/23/2021 11:00:00 PM,04/14/2021 12:47:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569923,Shooting Permit,04/22/2021 09:00:00 AM,04/22/2021 11:00:00 PM,04/14/2021 12:38:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569919,Shooting Permit,04/21/2021 08:00:00 AM,04/21/2021 10:00:00 PM,04/14/2021 12:29:15 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569916,Shooting Permit,04/16/2021 07:00:00 AM,04/16/2021 11:00:00 PM,04/14/2021 12:23:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569904,Shooting Permit,04/15/2021 09:00:00 AM,04/15/2021 11:00:00 PM,04/14/2021 11:51:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+569890,Shooting Permit,04/23/2021 08:00:00 AM,04/24/2021 12:00:00 AM,04/14/2021 11:03:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569887,Shooting Permit,04/22/2021 08:00:00 AM,04/23/2021 12:00:00 AM,04/14/2021 10:58:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569871,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 09:00:00 PM,04/14/2021 10:28:47 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569867,Shooting Permit,04/19/2021 08:00:00 AM,04/19/2021 09:00:00 PM,04/14/2021 10:23:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569849,Shooting Permit,04/16/2021 06:00:00 AM,04/16/2021 07:00:00 PM,04/14/2021 09:39:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between BROADWAY and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, PINE STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between NASSAU STREET and GOLD STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET, MAIDEN LANE between GOLD STREET and SOUTH STREET, WATER STREET between PINE STREET and MAIDEN LANE, WATER STREET between MAIDEN LANE and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+569825,Shooting Permit,04/16/2021 02:00:00 PM,04/17/2021 02:00:00 AM,04/13/2021 11:56:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+569783,Shooting Permit,04/16/2021 02:00:00 PM,04/17/2021 04:00:00 AM,04/13/2021 07:27:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between WEIRFIELD STREET and CENTRE STREET, WEIRFIELD STREET between MYRTLE AVENUE and SENECA AVENUE, CENTRE STREET between SENECA AVENUE and MYRTLE AVENUE, SENECA AVENUE between MYRTLE AVENUE and GEORGE STREET",Queens,"5, 82","102, 104",Television,Episodic series,United States of America,11385
+569779,Shooting Permit,04/18/2021 06:30:00 AM,04/18/2021 07:30:00 PM,04/13/2021 07:21:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","JAY STREET between GREENWICH STREET and HUDSON STREET, HUDSON STREET between JAY STREET and DUANE STREET",Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+569774,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 07:00:00 PM,04/13/2021 06:29:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",BEACH STREET between VARICK STREET and ST JOHNS LANE,Manhattan,1,1,Still Photography,Not Applicable,United States of America,10013
+569766,Shooting Permit,04/21/2021 08:00:00 AM,04/22/2021 12:00:00 AM,04/13/2021 05:38:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569765,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 10:00:00 PM,04/13/2021 05:35:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569759,Shooting Permit,04/16/2021 04:00:00 PM,04/17/2021 07:00:00 AM,04/13/2021 05:22:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 136 STREET between FREDERICK DOUGLASS BOULEVARD and MALCOLM X BOULEVARD, WEST 137 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, WEST 140 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 140 STREET and WEST 141 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 139 STREET and WEST 138 STREET, W 139 ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 140 STREET and WEST 139 STREET, WEST 141 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 138 STREET",Manhattan,10,32,Television,Episodic series,United States of America,10030
+569734,Shooting Permit,04/16/2021 12:00:00 PM,04/16/2021 10:00:00 PM,04/13/2021 04:21:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between REMSEN STREET and LIVINGSTON STREET, COURT STREET between LIVINGSTON STREET and SCHERMERHORN STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, BOERUM PLACE between JORALEMON STREET and LIVINGSTON STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST",Brooklyn,"2, 4, 5","104, 83, 84",Television,Episodic series,United States of America,"11201, 11237, 11385"
+569733,DCAS Prep/Shoot/Wrap Permit,04/16/2021 08:00:00 AM,04/16/2021 01:00:00 PM,04/13/2021 04:18:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between REMSEN STREET and LIVINGSTON STREET, COURT STREET between LIVINGSTON STREET and SCHERMERHORN STREET, REMSEN STREET between CLINTON STREET and COURT STREET, CADMAN PLAZA WEST between MIDDAGH STREET and TILLARY STREET, BOERUM PLACE between JORALEMON STREET and LIVINGSTON STREET",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+569731,Shooting Permit,04/16/2021 07:00:00 AM,04/16/2021 07:00:00 PM,04/13/2021 04:12:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 16 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10011
+569720,Shooting Permit,04/17/2021 06:00:00 AM,04/17/2021 09:00:00 PM,04/13/2021 03:33:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",MURRAY STREET between GREENWICH STREET and WEST STREET,Manhattan,1,1,Film,Feature,United States of America,"10007, 10013"
+569717,Shooting Permit,04/19/2021 08:00:00 AM,04/20/2021 12:00:00 AM,04/13/2021 03:18:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569716,Shooting Permit,04/20/2021 08:00:00 AM,04/21/2021 12:00:00 AM,04/13/2021 03:17:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569707,Shooting Permit,04/16/2021 03:30:00 PM,04/16/2021 06:00:00 PM,04/13/2021 02:57:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",ELK STREET between CHAMBERS STREET and READE STREET,Manhattan,1,5,Television,Episodic series,United States of America,10007
+569706,DCAS Prep/Shoot/Wrap Permit,04/16/2021 07:30:00 AM,04/16/2021 04:30:00 PM,04/13/2021 02:57:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CENTRE STREET and ELK STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET, CHURCH STREET between CHAMBERS STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+569693,Shooting Permit,04/17/2021 06:00:00 AM,04/17/2021 08:00:00 PM,04/13/2021 02:09:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and NEWKIRK AVENUE, NEWKIRK AVENUE between EAST 18 STREET and EAST 17 STREET",Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+569692,Shooting Permit,04/18/2021 06:00:00 AM,04/18/2021 08:00:00 PM,04/13/2021 02:08:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","THIRD STREET between HOYT STREET and BOND STREET, FOURTH STREET between HOYT STREET and BOND STREET, HOYT STREET between FOURTH STREET and THIRD STREET",Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+569680,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 10:00:00 PM,04/13/2021 01:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","Horace Harding Expressway between 159th Street and 160th Street, 156th Street between 59 AVENUE and Horace Harding Expressway, Horace Harding Expressway between 156th Street and 157th Street, 157TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, Horace Harding Expressway between 157th Street and Parsons Blvd, Horace Harding Expressway between Parsons Blvd and 159th Street, 159TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and 157 STREET, 157 STREET between BOOTH MEMORIAL AVENUE and 59 AVENUE, BOOTH MEMORIAL AVENUE between 157 STREET and PARSONS BOULEVARD",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365"
+569650,Shooting Permit,04/16/2021 07:00:00 AM,04/17/2021 01:00:00 AM,04/13/2021 12:34:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, NASSAU AVENUE between HAUSMAN STREET and APOLLO STREET, HAUSMAN STREET between NASSAU AVENUE and MEEKER AVENUE, HAUSMAN STREET between NASSAU AVENUE and NORMAN AVENUE, APOLLO STREET between NASSAU AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569646,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 08:00:00 PM,04/13/2021 12:28:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+569619,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 09:00:00 PM,04/13/2021 11:42:29 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569616,Shooting Permit,04/23/2021 02:00:00 PM,04/24/2021 04:00:00 AM,04/13/2021 11:26:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569613,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 09:00:00 PM,04/13/2021 11:24:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569612,Shooting Permit,04/21/2021 09:00:00 AM,04/21/2021 11:00:00 PM,04/13/2021 11:24:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569611,Shooting Permit,04/15/2021 10:00:00 AM,04/15/2021 11:59:00 PM,04/13/2021 11:19:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569610,Shooting Permit,04/16/2021 05:00:00 PM,04/17/2021 07:00:00 AM,04/13/2021 11:15:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+569597,Shooting Permit,04/14/2021 08:00:00 AM,04/14/2021 10:00:00 PM,04/13/2021 11:05:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE,Bronx,9,43,Television,Episodic series,United States of America,10473
+569594,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 08:00:00 PM,04/13/2021 11:04:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE",Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+569590,Shooting Permit,04/20/2021 06:00:00 AM,04/20/2021 09:00:00 PM,04/13/2021 10:56:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between 9 AVENUE and WASHINGTON STREET",Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+569588,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 09:00:00 PM,04/13/2021 10:49:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON STREET between WEST 13 STREET and LITTLE WEST 12 STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE",Manhattan,2,6,WEB,Not Applicable,United States of America,10014
+569573,Shooting Permit,04/16/2021 09:00:00 AM,04/17/2021 02:00:00 AM,04/13/2021 09:22:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 69 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 68 STREET and WEST 70 STREET, COLUMBUS AVENUE between WEST 67 STREET and WEST 68 STREET, COLUMBUS AVENUE between WEST 69 STREET and WEST 70 STREET, WEST 69 STREET between COLUMBUS AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 67 STREET and WEST 70 STREET, WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 67 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 71 STREET between COLUMBUS AVENUE and BROADWAY, CENTRAL PARK WEST between WEST 70 STREET and WEST 74 STREET",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,"00083, 10023"
+569570,Shooting Permit,04/25/2021 07:00:00 AM,04/25/2021 07:00:00 PM,04/13/2021 08:45:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",55 AVENUE between CENTER BOULEVARD and 2 STREET,Queens,2,108,WEB,Not Applicable,United States of America,11101
+569535,Shooting Permit,04/22/2021 07:00:00 AM,04/22/2021 08:30:00 PM,04/12/2021 07:26:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","LENOX AVENUE between WEST 117 STREET and WEST 118 STREET, FORT WASHINGTON AVENUE between WEST 163 STREET and WEST 164 STREET",Manhattan,"10, 12","28, 33",Television,Game show,United States of America,"10026, 10032"
+569521,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 10:00:00 PM,04/12/2021 06:12:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569518,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 10:00:00 PM,04/12/2021 05:59:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+569501,Shooting Permit,04/16/2021 07:00:00 AM,04/16/2021 07:00:00 PM,04/12/2021 04:49:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between BROADWAY and 5 AVENUE, WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 24 STREET between 6 AVENUE and BROADWAY, BROADWAY between WEST 25 STREET and WEST 24 STREET",Manhattan,5,13,Television,Episodic series,United States of America,10010
+569491,Shooting Permit,04/16/2021 01:00:00 PM,04/17/2021 03:00:00 AM,04/12/2021 04:31:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between CANAL STREET and HOWARD STREET, CROSBY STREET between HOWARD STREET and GRAND STREET, CENTRE STREET between CANAL STREET and BROOME STREET, BROOME STREET between LAFAYETTE STREET and GREENE STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,10013
+569468,Shooting Permit,04/16/2021 04:00:00 PM,04/17/2021 08:00:00 AM,04/12/2021 03:32:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+569454,Shooting Permit,04/18/2021 06:00:00 AM,04/18/2021 09:00:00 PM,04/12/2021 03:02:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARCLAY STREET between WASHINGTON STREET and WEST STREET,Manhattan,1,1,Film,Feature,United States of America,"10007, 10013"
+569436,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 10:00:00 PM,04/12/2021 02:05:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+569435,Shooting Permit,04/13/2021 06:00:00 AM,04/13/2021 10:00:00 PM,04/12/2021 02:00:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+569421,Shooting Permit,04/15/2021 03:00:00 PM,04/16/2021 07:00:00 AM,04/12/2021 01:30:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 29 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+569413,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 07:00:00 PM,04/12/2021 01:20:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DR between WEST 108 STREET and WEST 111 STREET,Manhattan,"7, 9","24, 26",Commercial,Commercial,United States of America,10024
+569406,Shooting Permit,04/15/2021 09:00:00 AM,04/16/2021 03:00:00 AM,04/12/2021 12:53:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 23 STREET and JACKSON AVENUE, HUNTER STREET between 44 DRIVE and 44 ROAD, 44 ROAD between 24 STREET and CRESCENT STREET, 24 STREET between 44 ROAD and 43 AVENUE, CRESCENT STREET between 44 ROAD and 43 AVENUE, 43 AVENUE between CRESCENT STREET and HUNTER STREET, SKILLMAN AVENUE between AUSTELL PLACE and THOMSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+569396,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 10:00:00 PM,04/12/2021 12:29:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","Horace Harding Expressway between 159th Street and 160th Street, 156th Street between 59 AVENUE and Horace Harding Expressway, HORACE HARDING EXPRESSWAY between 156TH STREET and 157TH STREET, 157TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, HORACE HARDING EXPRESSWAY between 157TH STREET and PARSONS BLVD, Horace Harding Expressway between Parsons Blvd and 159th Street, 159TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, 157 STREET between BOOTH MEMORIAL AVENUE and 59 AVENUE, BOOTH MEMORIAL AVENUE between 157 STREET and PARSONS BOULEVARD, BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and 157 STREET",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365"
+569394,Shooting Permit,04/19/2021 07:00:00 AM,04/19/2021 10:00:00 PM,04/12/2021 12:21:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+569388,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 10:00:00 PM,04/12/2021 12:03:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+569387,Shooting Permit,04/15/2021 01:00:00 PM,04/15/2021 09:00:00 PM,04/12/2021 12:02:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569384,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 10:00:00 PM,04/12/2021 11:48:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+569382,Shooting Permit,04/15/2021 04:00:00 PM,04/16/2021 07:00:00 AM,04/12/2021 11:47:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVE between ONDERDONK AVE and SCOTT AVE, RANDOLPH STREET between SENECA AVENUE and SCOTT AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+569379,Shooting Permit,04/14/2021 11:00:00 AM,04/14/2021 06:00:00 PM,04/12/2021 11:34:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",CALYER STREET between HUMBOLDT STREET and RUSSELL STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569375,Shooting Permit,04/16/2021 10:00:00 AM,04/17/2021 01:00:00 AM,04/12/2021 11:26:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 83 STREET between WEST END AVENUE and AMSTERDAM AVENUE, BROADWAY between WEST 84 STREET and WEST 79 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 82 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 79 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 81 STREET between BROADWAY and WEST END AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,10024
+569358,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 10:00:00 PM,04/12/2021 10:42:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, WEST 58 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 57 STREET, 6 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+569355,Shooting Permit,04/14/2021 09:00:00 AM,04/15/2021 01:00:00 AM,04/12/2021 10:20:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569354,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 10:00:00 PM,04/12/2021 10:15:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE, CENTRAL PARK SOUTH between 7 AVENUE and 6 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, WEST 58 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 57 STREET, 6 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, WEST 58 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,"10019, 10022"
+569344,Shooting Permit,04/15/2021 06:00:00 AM,04/15/2021 10:00:00 PM,04/12/2021 09:38:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH STREET between GREENWICH STREET and HUDSON STREET, HUBERT STREET between GREENWICH STREET and COLLISTER STREET",Manhattan,1,1,WEB,Not Applicable,United States of America,10013
+569343,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 09:00:00 PM,04/12/2021 09:30:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569340,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 11:00:00 PM,04/12/2021 09:21:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569337,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 08:00:00 PM,04/12/2021 09:10:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569332,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 10:00:00 PM,04/12/2021 08:33:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 50 STREET, WEST 49 STREET between 10 AVENUE and 11 AVENUE, WEST 47 STREET between 12 AVENUE and 11 AVENUE",Manhattan,4,"10, 18",Television,Episodic series,United States of America,"10011, 10019, 10036"
+569329,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 08:00:00 PM,04/12/2021 08:16:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between BEDFORD STREET and DOWNING STREET, 6 AVENUE between MINETTA STREET and BLEEKER STREET, WEST HOUSTON between VARICK STREET and 6TH AVE, KING STREET between VARICK STREET and 6 AVENUE, CHARLTON STREET between VARICK STREET and 6 AVENUE, 6 AVENUE between KING STREET and CHARLTON STREET, SPRING STREET between BROADWAY and GREENE STREET, MERCER STREET between SPRING STREET and BROOME STREET, GREENE STREET between SPRING STREET and BROOME STREET, MERCER STREET between BROOME STREET and GRAND STREET, BROADWAY between BROOME STREET and GRAND STREET, MERCER STREET between GRAND STREET and CANAL STREET, WATER STREET between CATHERINE SLIP and MARKET SLIP, MARKET SLIP between CHERRY STREET and SOUTH STREET",Manhattan,"2, 3","1, 5, 6",Commercial,Commercial,United States of America,"10002, 10012, 10013, 10014, 10038"
+569167,Theater Load in and Load Outs,04/30/2021 12:01:00 AM,05/09/2021 11:59:00 PM,04/10/2021 09:21:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between RIVER AVENUE and JEROME AVENUE,Bronx,4,44,Television,Cable-other,United States of America,"10451, 10452"
+569153,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 11:00:00 PM,04/09/2021 10:24:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVE between ONDERDONK AVE and SCOTT AVE, RANDOLPH STREET between SENECA AVENUE and SCOTT AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between RANDOLPH STREET and MESEROLE STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+569144,Shooting Permit,04/17/2021 07:00:00 AM,04/17/2021 09:00:00 PM,04/09/2021 07:36:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE SOUTH between EAST 18 STREET and EAST 19 STREET,Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+569145,Shooting Permit,04/18/2021 06:00:00 AM,04/18/2021 10:00:00 PM,04/09/2021 07:36:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",PARK AVENUE SOUTH between EAST 18 STREET and EAST 19 STREET,Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+569122,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 10:00:00 PM,04/09/2021 05:05:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, 51 AVENUE between 25 STREET and 27 STREET, 27 STREET between 51 AVENUE and 49 AVENUE, BORDEN AVENUE between 27 STREET and 25 STREET, 25 STREET between BORDEN AVENUE and 50 AVENUE, 50 AVENUE between 25 STREET and 27 STREET, 50 AVENUE between 25 STREET and 23 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+569118,Shooting Permit,04/13/2021 10:00:00 AM,04/14/2021 03:00:00 AM,04/09/2021 04:59:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between PRINCE STREET and SPRING STREET, WEST HOUSTON STREET between WEST BROADWAY and GREENE STREET, WEST BROADWAY between WEST HOUSTON STREET and PRINCE STREET, WOOSTER STREET between WEST HOUSTON STREET and SPRING STREET, WEST HOUSTON STREET between WEST BROADWAY and THOMPSON STREET",Manhattan,2,"1, 6",Television,Cable-episodic,United States of America,10012
+569098,Shooting Permit,04/15/2021 09:00:00 AM,04/15/2021 11:00:00 PM,04/09/2021 04:16:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOWARD STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between CANAL STREET and HOWARD STREET, CROSBY STREET between HOWARD STREET and GRAND STREET, CENTRE STREET between CANAL STREET and BROOME STREET, BROOME STREET between LAFAYETTE STREET and GREENE STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,10013
+569087,Shooting Permit,04/13/2021 06:00:00 AM,04/13/2021 08:00:00 PM,04/09/2021 03:39:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 54 STREET and EAST 56 STREET, EAST 54 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 52 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 53 STREET between PARK AVENUE and MADISON AVENUE, EAST 53 STREET between PARK AVENUE and LEXINGTON AVENUE, HARRISON STREET between WEST STREET and GREENWICH STREET, HARRISON STREET between GREENWICH STREET and HUDSON STREET, JAY STREET between GREENWICH STREET and HUDSON STREET",Manhattan,"1, 5","1, 18",Commercial,Commercial,United States of America,"10013, 10022, 10152"
+569082,Shooting Permit,04/13/2021 07:30:00 AM,04/13/2021 09:30:00 PM,04/09/2021 03:20:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+569055,Shooting Permit,04/16/2021 07:00:00 AM,04/16/2021 11:30:00 PM,04/09/2021 02:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+569019,Shooting Permit,04/19/2021 06:00:00 AM,04/19/2021 11:00:00 PM,04/09/2021 12:20:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+569017,Shooting Permit,04/21/2021 06:00:00 AM,04/21/2021 07:00:00 PM,04/09/2021 12:12:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE STREET between WEST HOUSTON STREET and PRINCE STREET,Manhattan,"1, 2",1,Still Photography,Not Applicable,United States of America,"10012, 10013"
+569016,Shooting Permit,04/20/2021 07:00:00 AM,04/20/2021 11:00:00 PM,04/09/2021 12:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH 1 STREET between WYTHE AVENUE and KENT AVENUE,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,11249
+568981,Shooting Permit,04/15/2021 06:00:00 AM,04/15/2021 10:00:00 PM,04/09/2021 11:08:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568963,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 10:00:00 PM,04/09/2021 10:36:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568962,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 10:00:00 PM,04/09/2021 10:35:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568957,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 09:00:00 PM,04/09/2021 10:27:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between WILLIAM STREET and PEARL STREET, WILLIAM STREET between WALL STREET and EXCHANGE PLACE, JOHN STREET between PEARL STREET and FRONT STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WALL ST between FRONT STREET and SOUTH STREET, PEARL STREET between MAIDEN LANE and WALL STREET, WATER STREET between WALL STREET and OLD SLIP, WATER STREET between WALL STREET and PINE STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between FLETCHER STREET and JOHN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10004, 10005, 10038"
+568853,Shooting Permit,04/12/2021 07:30:00 AM,04/12/2021 09:30:00 PM,04/08/2021 05:06:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+568848,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 08:00:00 PM,04/08/2021 04:46:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between Greenpoint Ave and NORTH HENRY STREET, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568824,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 10:00:00 PM,04/08/2021 03:51:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+568805,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 11:00:00 PM,04/08/2021 02:55:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between 4 AVENUE and 3 AVENUE, ATLANTIC AVENUE between 3 AVENUE and NEVINS STREET, 3 AVENUE between STATE STREET and ATLANTIC AVENUE, DEKALB AVENUE between FLATBUSH AVENUE EXTENSION and HUDSON AVENUE, DEKALB AVENUE between HUDSON AVENUE and ST FELIX STREET, ROCKWELL PLACE between DEKALB AVENUE and FULTON STREET, LAFAYETTE AVENUE between GRAND AVENUE and ST JAMES PLACE, CLIFTON PLACE between GRAND AVENUE and CLASSON AVENUE, CLIFTON PLACE between GRAND AVENUE and ST JAMES PLACE, GRAND AVENUE between LAFAYETTE AVENUE and GREENE AVENUE, GREENE AVENUE between GRAND AVENUE and ST JAMES PLACE, ST JAMES PLACE between CLIFTON PLACE and GREENE AVENUE, LAFAYETTE AVENUE between ST JAMES PLACE and WASHINGTON AVENUE",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11217, 11238"
+568798,Shooting Permit,04/20/2021 08:00:00 AM,04/20/2021 11:00:00 PM,04/08/2021 02:13:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and 3 AVENUE, NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between DOUGLAS STREET and DEGRAW STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+568795,Shooting Permit,04/16/2021 08:00:00 AM,04/16/2021 09:00:00 PM,04/08/2021 02:11:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+568792,Shooting Permit,04/15/2021 08:00:00 AM,04/15/2021 09:00:00 PM,04/08/2021 02:07:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+568789,Shooting Permit,04/15/2021 07:00:00 AM,04/15/2021 11:30:00 PM,04/08/2021 01:58:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+568787,Shooting Permit,04/15/2021 04:00:00 PM,04/16/2021 07:00:00 AM,04/08/2021 01:56:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 7 AVENUE, WEST 52 STREET between FIFTH AVENUE and SIXTH AVENUE, EAST 51 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, EAST 50 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 51 STREET between PARK AVENUE and MADISON AVENUE, EAST 50 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10103"
+568785,Shooting Permit,04/14/2021 09:00:00 AM,04/14/2021 11:59:00 PM,04/08/2021 01:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10022, 10103"
+568783,Shooting Permit,04/13/2021 06:00:00 AM,04/14/2021 01:00:00 AM,04/08/2021 01:49:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 9 STREET and 10 STREET, 43 AVENUE between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and 43 ROAD, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+568749,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 10:00:00 PM,04/08/2021 12:52:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568733,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 09:00:00 PM,04/08/2021 12:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 22 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 21 STREET and WEST 22 STREET, WEST 21 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 8 AVENUE and 10 AVENUE, WEST 24 STREET between 8 AVENUE and 9 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+568727,Shooting Permit,04/15/2021 07:00:00 PM,04/16/2021 02:00:00 AM,04/08/2021 11:59:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 65 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,8,19,Television,Cable-episodic,United States of America,10065
+568726,Shooting Permit,04/16/2021 12:00:00 PM,04/17/2021 04:00:00 AM,04/08/2021 11:51:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",CONWAY STREET between BUSHWICK AVENUE and BROADWAY,Brooklyn,"4, 5","75, 83",Television,Episodic series,United States of America,11207
+568722,Shooting Permit,04/15/2021 10:00:00 AM,04/16/2021 02:00:00 AM,04/08/2021 11:46:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 64 STREET and EAST 68 STREET, EAST 66 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 63 STREET and EAST 68 STREET, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, EAST 65 STREET between 5 AVENUE and MADISON AVENUE, EAST 64 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 66 STREET and EAST 68 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10065
+568717,Shooting Permit,04/12/2021 06:00:00 AM,04/12/2021 07:00:00 PM,04/08/2021 11:27:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+568716,Shooting Permit,04/14/2021 08:00:00 AM,04/14/2021 11:00:00 PM,04/08/2021 11:27:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+568715,Shooting Permit,04/13/2021 06:00:00 AM,04/13/2021 08:00:00 PM,04/08/2021 11:25:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+568713,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 09:00:00 PM,04/08/2021 11:24:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+568710,Shooting Permit,04/09/2021 08:00:00 AM,04/09/2021 09:30:00 PM,04/08/2021 11:06:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between COVERT STREET and ELDERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+568709,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 07:00:00 PM,04/08/2021 11:01:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between BROADWAY and CHURCH STREET, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+568706,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 09:00:00 PM,04/08/2021 10:56:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between BROADWAY and CHURCH STREET, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+568699,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 10:00:00 PM,04/08/2021 10:42:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 9 AVENUE and 10 AVENUE, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 17 STREET between 9 AVENUE and 10 AVENUE, WEST 18 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 10 AVENUE and 11 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 18 STREET, 9 AVENUE between WEST 18 STREET and WEST 17 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+568665,Shooting Permit,04/09/2021 10:00:00 AM,04/10/2021 02:00:00 AM,04/08/2021 07:47:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 100 STREET between WEST END AVENUE and RIVERSIDE DRIVE, WEST END AVENUE between WEST 100 STREET and WEST 99 STREET, WEST END AVENUE between WEST 101 STREET and WEST 100 STREET, WEST END AVENUE between WEST 99 STREET and WEST 98 STREET, WEST 98 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, BROADWAY between WEST 97 STREET and WEST 103 STREET, BROADWAY between WEST 96 STREET and WEST 94 STREET, BROADWAY between WEST 93 STREET and WEST 92 STREET, BROADWAY between WEST 91 STREET and WEST 89 STREET",Manhattan,7,24,Television,Episodic series,United States of America,"10024, 10025"
+568656,Shooting Permit,04/13/2021 12:00:00 PM,04/13/2021 08:00:00 PM,04/07/2021 11:50:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",COFFEY STREET between FERRIS STREET and DEAD END,Brooklyn,6,76,Student,Student Film,United States of America,11231
+568627,Shooting Permit,04/12/2021 08:00:00 AM,04/12/2021 11:00:00 PM,04/07/2021 06:23:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 37 STREET and WEST 35 STREET, WEST 36 STREET between 7 AVENUE and 8 AVENUE, WEST 35 STREET between 8 AVENUE and 7 AVENUE, WEST 35 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018"
+568593,Shooting Permit,04/09/2021 09:00:00 AM,04/10/2021 04:00:00 AM,04/07/2021 04:20:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, 7 AVENUE between WEST 16 STREET and WEST 15 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE",Manhattan,4,"10, 13",Television,Cable-episodic,United States of America,10011
+568585,Shooting Permit,04/10/2021 07:00:00 AM,04/10/2021 09:00:00 PM,04/07/2021 03:58:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and MEEKER AVE., WITHERS STREET between LORIMER STREET and UNION AVENUE, FROST STREET between MEEKER AVENUE and LORIMER STREET, ROCHESTER AVENUE between UNION STREET and CROWN STREET, EASTERN PARKWAY between ROCHESTER AVENUE and BUFFALO AVENUE",Brooklyn,"1, 8, 9","71, 77, 94",Television,Cable-episodic,United States of America,"11211, 11213"
+568584,Shooting Permit,04/10/2021 06:00:00 AM,04/10/2021 10:00:00 PM,04/07/2021 03:58:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+568564,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 08:00:00 PM,04/07/2021 02:50:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH ELLIOTT PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between SOUTH ELLIOTT PLACE and FORT GREENE PLACE",Brooklyn,2,88,Commercial,PSA,United States of America,11217
+568544,Shooting Permit,04/10/2021 06:00:00 AM,04/10/2021 08:00:00 PM,04/07/2021 01:47:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",RANDOLPH STREET between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,"11222, 11237"
+568542,Shooting Permit,04/16/2021 09:00:00 AM,04/16/2021 06:00:00 PM,04/07/2021 01:43:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",HUNTINGTON STREET between SMITH STREET and COURT STREET,Brooklyn,6,76,Student,Student Film,United States of America,11231
+568535,Shooting Permit,04/08/2021 11:00:00 AM,04/09/2021 02:00:00 AM,04/07/2021 01:28:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE OF THE AMERICAS between BROOME STREET and VANDAM STREET, AVENUE OF THE AMERICAS between VANDAM STREET and PRINCE STREET, SPRING STREET between SULLIVAN STREET and THOMPSON STREET, THOMPSON STREET between PRINCE STREET and SPRING STREET, WEST 17 STREET between 7 AVENUE and 8 AVENUE, 7 AVENUE between WEST 17 STREET and WEST 16 STREET, 7 AVENUE between WEST 15 STREET and WEST 16 STREET, WEST 16 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"2, 4, 5","1, 10, 13, 14, 18, 6",Television,Cable-episodic,United States of America,"10001, 10010, 10011, 10012, 10013, 10014, 10018, 10019, 10020, 10036, 10105, 10119"
+568492,Rigging Permit,04/12/2021 06:00:00 AM,04/12/2021 11:00:00 PM,04/07/2021 11:09:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+568491,Shooting Permit,04/12/2021 06:00:00 AM,04/12/2021 06:00:00 PM,04/07/2021 11:09:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+568484,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 11:59:00 PM,04/07/2021 10:55:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between NEWEL STREET and JEWEL STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568453,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 10:00:00 PM,04/07/2021 08:44:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+568444,Shooting Permit,04/12/2021 06:00:00 AM,04/12/2021 11:00:00 PM,04/07/2021 12:16:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568438,Shooting Permit,04/09/2021 02:00:00 AM,04/09/2021 08:00:00 PM,04/06/2021 10:42:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN AVENUE between BERGEN STREET and ST MARKS AVENUE, WEST 15 STREET between SURF AVENUE and BEND",Brooklyn,"13, 8","60, 77",Commercial,PSA,United States of America,"11224, 11238"
+568432,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 11:00:00 PM,04/06/2021 09:52:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between CATHERINE STREET and MARKET SLIP, ST NICHOLAS AVENUE between WEST 180 STREET and WEST 181 STREET",Queens,"12, 3, 7, 81","109, 110, 34, 5",Commercial,PSA,United States of America,"10002, 10033, 11354, 11368"
+568422,Shooting Permit,04/10/2021 06:00:00 AM,04/10/2021 08:00:00 PM,04/06/2021 08:32:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 25 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,Commercial,Commercial,United States of America,10001
+568404,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 08:00:00 PM,04/06/2021 06:17:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENE STREET between BROOME STREET and SPRING STREET,Manhattan,2,1,Commercial,Commercial,United States of America,10012
+568395,Shooting Permit,04/12/2021 06:00:00 AM,04/12/2021 10:00:00 PM,04/06/2021 05:47:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568393,Shooting Permit,04/10/2021 06:00:00 AM,04/10/2021 10:00:00 PM,04/06/2021 05:41:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568366,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 10:00:00 PM,04/06/2021 03:33:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 49 AVENUE and 47 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+568365,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 10:00:00 PM,04/06/2021 03:33:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+568363,Shooting Permit,04/07/2021 11:00:00 AM,04/08/2021 02:00:00 AM,04/06/2021 03:20:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 10 AVENUE and 9 AVENUE, WEST 44 STREET between 9 AVENUE and 10 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+568349,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 10:00:00 PM,04/06/2021 02:41:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568346,Shooting Permit,04/09/2021 01:00:00 PM,04/10/2021 03:30:00 AM,04/06/2021 02:33:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 69 STREET between 5 AVENUE and MADISON AVENUE, EAST 68 STREET between 5 AVENUE and MADISON AVENUE, EAST 68 STREET between MADISON AVENUE and PARK AVENUE, EAST 67 STREET between 5 AVENUE and MADISON AVENUE, EAST 67 STREET between MADISON AVENUE and PARK AVENUE, 5 AVENUE between EAST 69 STREET and EAST 67 STREET, MADISON AVENUE between EAST 69 STREET and EAST 67 STREET, PARK AVENUE between EAST 68 STREET and EAST 64 STREET",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10065"
+568342,Shooting Permit,04/13/2021 06:00:00 AM,04/13/2021 08:00:00 PM,04/06/2021 02:19:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EVERGREEN AVENUE between GROVE STREET and PALMETTO STREET, LINDEN STREET between EVERGREEN AVENUE and CENTRAL AVENUE, GROVE STREET between EVERGREEN AVENUE and BUSHWICK AVENUE, MENAHAN STREET between EVERGREEN AVENUE and BUSHWICK AVENUE, BUSHWICK AVENUE between MENAHAN STREET and GROVE STREET, BUSHWICK AVENUE between MENAHAN STREET and BLEECKER STREET",Brooklyn,4,83,Television,Cable-episodic,United States of America,11221
+568322,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 09:00:00 PM,04/06/2021 01:22:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+568317,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 09:00:00 PM,04/06/2021 01:02:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568316,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 09:00:00 PM,04/06/2021 01:02:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568314,Shooting Permit,04/09/2021 05:00:00 AM,04/09/2021 06:00:00 PM,04/06/2021 12:59:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,"10, 14",Television,Cable-episodic,United States of America,"10001, 10018"
+568313,Shooting Permit,04/09/2021 01:00:00 PM,04/09/2021 07:00:00 PM,04/06/2021 12:58:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between BROADWAY and 8 AVENUE,Manhattan,5,18,Television,Cable-episodic,United States of America,10036
+568299,Shooting Permit,04/12/2021 11:00:00 AM,04/13/2021 02:00:00 AM,04/06/2021 12:37:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","ANTHONY J GRIFFIN PLACE between EAST 149 STREET and EAST 150 STREET, EAST 150 STREET between ANTHONY J GRIFFIN PLACE and GRAND CONCOURSE, EAST 149 STREET between ANTHONY J GRIFFIN PLACE and PARK AVENUE, COURTLAND AVENUE between EAST 150 STREET and EAST 151 STREET, EAST 151 STREET between MORRIS AVENUE and COURTLAND AVENUE",Bronx,"1, 4","40, 44",Commercial,Commercial,United States of America,10451
+568293,Shooting Permit,04/14/2021 07:00:00 AM,04/14/2021 11:30:00 PM,04/06/2021 12:23:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+568289,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 11:30:00 PM,04/06/2021 12:19:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+568287,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 11:00:00 PM,04/06/2021 12:14:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+568278,Shooting Permit,04/10/2021 09:30:00 AM,04/10/2021 11:59:00 PM,04/06/2021 11:56:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568276,Shooting Permit,04/09/2021 09:00:00 AM,04/09/2021 11:30:00 PM,04/06/2021 11:51:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568273,Shooting Permit,04/08/2021 09:00:00 AM,04/08/2021 11:30:00 PM,04/06/2021 11:46:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+568253,Shooting Permit,04/08/2021 08:00:00 AM,04/09/2021 12:00:00 AM,04/06/2021 11:08:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVE. between 101ST ST. and 105TH ST., AVENUE L between EAST 94 STREET and ROCKAWAY PARKWAY, EAST 95 STREET between AVENUE K and AVENUE L",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+568239,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 11:59:00 PM,04/06/2021 10:36:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between MAIN STREET and OLD FULTON STREET, OLD FULTON STREET between HICKS STREET and EVERIT STREET, EVERIT STREET between DOUGHTY STREET and OLD FULTON STREET, CADMAN PLAZA WEST between MIDDAGH STREET and CLARK STREET, WATER STREET between PINE STREET and JOHN STREET, SOUTH STREET between BROAD STREET and OLD SLIP, WATER STREET between GOUVERNEUR LANE and WALL STREET, MAIDEN LANE between WATER STREET and FRONT STREET",Brooklyn,"1, 2","1, 84",Television,Episodic series,United States of America,"10004, 10005, 10038, 11201"
+568237,Shooting Permit,04/08/2021 03:00:00 PM,04/09/2021 04:00:00 AM,04/06/2021 10:28:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 8 STREET between AVENUE B and AVENUE C, AVENUE A between EAST 8 STREET and EAST 10 STREET, AVENUE A between EAST 5 STREET and EAST 8 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Television,Cable-episodic,United States of America,10009
+568228,Shooting Permit,04/07/2021 06:00:00 AM,04/07/2021 10:00:00 PM,04/06/2021 09:41:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between CATON AVENUE and CHURCH AVENUE, CHURCH AVENUE between MARLBOROUGH ROAD and BUCKINGHAM ROAD, CHURCH AVENUE between BUCKINGHAM ROAD and EAST 17 STREET, BUCKINGHAM ROAD between CATON AVENUE and CHURCH AVENUE",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+568206,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 08:00:00 PM,04/06/2021 06:58:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 117 STREET, WEST 116TH ST between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 124 STREET between LENOX AVENUE and MT MORRIS PARK WEST, MT MORRIS PARK WEST between WEST 122 STREET and WEST 124 STREET",Manhattan,"10, 11","25, 28",Commercial,Commercial,United States of America,"10026, 10027, 10035"
+568204,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 07:00:00 PM,04/06/2021 04:53:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 116 STREET and WEST 117 STREET, WEST 116TH ST between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 124 STREET between LENOX AVENUE and MT MORRIS PARK WEST",Manhattan,10,28,Commercial,Commercial,United States of America,"10026, 10027"
+568173,Shooting Permit,04/09/2021 10:00:00 AM,04/10/2021 01:00:00 AM,04/05/2021 09:54:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST HOUSTON STREET between ESSEX STREET and PITT STREET, RIVINGTON STREET between CLINTON STREET and NORFOLK STREET, DELANCY STREET between NORFOLK STREET and CLINTON STREET, NORFOLK STREET between RIVINGTON STREET and DELANCY STREET, NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, SUFFOLK STREET between DELANCY STREET and RIVINGTON STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+568137,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 09:00:00 PM,04/05/2021 06:43:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","PULASKI STREET between THROOP AVENUE and LEWIS AVENUE, MARCUS GARVEY BOULEVARD between PULASKI STREET and DEKALB AVENUE, MARCUS GARVEY BOULEVARD between DEKALB AVENUE and KOSCIUSZKO STREET, MARCUS GARVEY BOULEVARD between KOSCIUSZKO STREET and LAFAYETTE AVENUE, DEKALB AVENUE between THROOP AVENUE and MARCUS GARVEY BOULEVARD, DEKALB AVENUE between MARCUS GARVEY BOULEVARD and LEWIS AVENUE",Brooklyn,3,"79, 81",Television,Cable-episodic,United States of America,"11206, 11221"
+568099,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 10:00:00 PM,04/05/2021 04:28:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+568098,Shooting Permit,04/07/2021 08:00:00 AM,04/07/2021 09:00:00 PM,04/05/2021 04:22:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","STOCKHOLM STREET between WOODWARD AVENUE and ONDERDONK AVENUE, WOODWARD AVENUE between STARR STREET and STOCKHOLM STREET, WOODWARD AVENUE between STOCKHOLM STREET and STANHOPE STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+568088,Shooting Permit,04/10/2021 11:00:00 AM,04/11/2021 03:00:00 AM,04/05/2021 03:56:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 87 STREET and WEST 86 STREET, BROADWAY between WEST 87 STREET and WEST 86 STREET, BROADWAY between WEST 85 STREET and WEST 86 STREET, BROADWAY between WEST 87 STREET and WEST 88 STREET, WEST 87 STREET between BROADWAY and WEST END AVENUE, AMSTERDAM AVENUE between WEST 88 STREET and WEST 87 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, BROADWAY between WEST 84 STREET and WEST 83 STREET, BROADWAY between WEST 89 STREET and WEST 90 STREET, BROADWAY between WEST 92 STREET and WEST 93 STREET, BROADWAY between WEST 94 STREET and WEST 95 STREET, BROADWAY between WEST 97 STREET and WEST 98 STREET, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 85 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10024, 10025"
+568068,DCAS Prep/Shoot/Wrap Permit,04/08/2021 12:30:00 PM,04/08/2021 10:30:00 PM,04/05/2021 03:00:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CENTRE STREET and ELK STREET, READE STREET between BROADWAY and CHURCH STREET, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between READE STREET and DUANE STREET, DUANE STREET between BROADWAY and CHURCH STREET, LAFAYETTE STREET between DUANE STREET and WORTH STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+568060,Shooting Permit,04/08/2021 10:00:00 AM,04/08/2021 08:00:00 PM,04/05/2021 02:39:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between 5 STREET and VERNON BOULEVARD, 27th STREET between 41 AVENUE and QUEENS PLAZA NORTH, 41 AVENUE between CRESCENT STREET and 28 STREET",Brooklyn,"1, 2","108, 114, 94",Television,Episodic series,United States of America,"11101, 11222"
+568059,Shooting Permit,04/09/2021 12:00:00 PM,04/09/2021 11:59:00 PM,04/05/2021 02:36:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between BOLTON AVENUE and WHITE PLAINS ROAD, Soundview Ave between BEACH AVENUE and Thieriot Ave, Soundview Ave between Leland Ave and Underhill Ave, SOUNDVIEW AVENUE between UNDERHILL AVENUE and PATTERSON AVENUE, SOUNDVIEW AVENUE between PATTERSON AVENUE and BOLTON AVENUE, PATTERSON AVENUE between SOUNDVIEW AVENUE and BOLTON AVENUE, BOLTON AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, BOLTON AVENUE between PATTERSON AVENUE and SOUNDVIEW AVENUE, WHITE PLAINS ROAD between PATTERSON AVENUE and LACOMBE AVENUE, WHITE PLAINS ROAD between PATTERSON AVENUE and OBRIEN AVENUE, PATTERSON AVENUE between WHITE PLAINS ROAD and COMPTON AVENUE, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+568051,Shooting Permit,04/08/2021 06:00:00 AM,04/08/2021 06:00:00 PM,04/05/2021 02:14:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 71 STREET and EAST 74 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,"10021, 10023"
+568016,Shooting Permit,04/09/2021 04:00:00 PM,04/10/2021 06:00:00 AM,04/05/2021 12:38:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 81 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 79 STREET between COLUMBUS AVENUE and BROADWAY, COLUMBUS AVENUE between WEST 78 STREET and WEST 80 STREET, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, BROADWAY between WEST 79 STREET and WEST 84 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,10024
+568012,Shooting Permit,04/07/2021 06:00:00 AM,04/07/2021 10:00:00 PM,04/05/2021 12:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between 5 AVENUE and 6 AVENUE, WEST 9 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 9 STREET and WEST 11 STREET, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10003, 10011"
+568007,Shooting Permit,04/16/2021 06:00:00 AM,04/16/2021 09:00:00 PM,04/05/2021 12:07:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 10 STREET, 11 STREET between 44 DRIVE and 44 ROAD",Queens,2,108,Film,Feature,United States of America,11101
+568006,Rigging Permit,04/08/2021 06:00:00 AM,04/08/2021 11:00:00 PM,04/05/2021 12:02:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+568002,Rigging Permit,04/09/2021 06:00:00 AM,04/09/2021 11:00:00 PM,04/05/2021 11:55:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+568000,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 10:00:00 PM,04/05/2021 11:46:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 47 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 48 STREET and WEST 47 STREET, 9 AVENUE between WEST 48 STREET and WEST 47 STREET, WEST 48 STREET between 10 AVENUE and 9 AVENUE, WEST 46 STREET between 10 AVENUE and 9 AVENUE, WEST 45 STREET between 11 AVENUE and 9 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,10036
+567997,Shooting Permit,04/08/2021 09:30:00 AM,04/08/2021 01:30:00 PM,04/05/2021 11:38:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHURCH STREET between WARREN STREET and READE STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10007
+567996,Shooting Permit,04/08/2021 06:00:00 AM,04/08/2021 10:00:00 PM,04/05/2021 11:36:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+567995,Rigging Permit,04/07/2021 06:00:00 AM,04/07/2021 11:00:00 PM,04/05/2021 11:35:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+567994,Shooting Permit,04/07/2021 06:00:00 AM,04/07/2021 10:00:00 PM,04/05/2021 11:31:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+567992,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 12:00:00 PM,04/05/2021 11:21:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBUS AVENUE between WEST 67 STREET and WEST 66 STREET,Manhattan,7,20,Television,Variety,United States of America,10023
+567990,Shooting Permit,04/07/2021 08:00:00 AM,04/07/2021 11:00:00 PM,04/05/2021 11:16:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 104 STREET between RIVERSIDE DRIVE and BROADWAY, WEST END AVENUE between WEST 100 STREET and WEST 106 STREET, WEST 104 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 103 STREET and WEST 104 STREET",Manhattan,7,24,Television,Cable-episodic,United States of America,10025
+567988,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 12:00:00 PM,04/05/2021 11:08:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBUS AVENUE between WEST 67 STREET and WEST 66 STREET,Manhattan,7,20,Television,Variety,United States of America,10023
+567982,Shooting Permit,04/08/2021 11:00:00 AM,04/09/2021 01:00:00 AM,04/05/2021 10:47:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,"90, 94",Commercial,Promo,United States of America,"11206, 11222"
+567981,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 10:00:00 PM,04/05/2021 10:45:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between SMITH STREET and 3 AVENUE, NEVINS STREET between UNION STREET and DEGRAW STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, SACKETT STREET between NEVINS STREET and 3 AVENUE",Brooklyn,"2, 6","78, 84",Television,Episodic series,United States of America,"11201, 11217"
+567971,Shooting Permit,04/07/2021 08:00:00 AM,04/07/2021 11:59:00 PM,04/05/2021 09:58:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+567960,Shooting Permit,04/09/2021 10:00:00 AM,04/09/2021 11:00:00 PM,04/05/2021 09:02:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+567958,Shooting Permit,04/08/2021 08:00:00 AM,04/08/2021 09:00:00 PM,04/05/2021 08:57:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+567930,Shooting Permit,04/27/2021 07:00:00 AM,04/27/2021 07:00:00 PM,04/04/2021 08:03:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Film,Feature,United States of America,10036
+567873,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 08:00:00 PM,04/04/2021 12:45:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARFIELD PLACE between 8 AVENUE and 7 AVENUE, POLHEMUS PLACE between CARROLL STREET and GARFIELD PLACE, GARFIELD PLACE between 6 AVENUE and 7 AVENUE, 7 AVENUE between 2 STREET and CARROLL STREET",Brooklyn,6,78,Commercial,Commercial,United States of America,11215
+567848,Shooting Permit,04/07/2021 08:00:00 AM,04/08/2021 03:00:00 AM,04/03/2021 05:43:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 54 STREET between 2 AVENUE and 3 AVENUE, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, 3 AVENUE between EAST 51 STREET and EAST 54 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, BROAD STREET between PEARL STREET and SOUTH STREET, WATER STREET between GOUVERNEUR LANE and JOHN STREET, MAIDEN LANE between WATER STREET and SOUTH STREET, LEXINGTON AVENUE between EAST 52 STREET and EAST 53 STREET",Manhattan,"1, 5, 6","1, 17, 18",Television,Episodic series,United States of America,"10004, 10005, 10022, 10038, 10152"
+567803,Shooting Permit,04/08/2021 09:00:00 AM,04/08/2021 11:59:00 PM,04/02/2021 07:41:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+567793,Shooting Permit,04/08/2021 08:30:00 AM,04/09/2021 12:00:00 AM,04/02/2021 05:36:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+567792,Shooting Permit,04/07/2021 08:00:00 AM,04/07/2021 11:00:00 PM,04/02/2021 05:29:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+567787,Shooting Permit,04/07/2021 09:00:00 AM,04/07/2021 08:00:00 PM,04/02/2021 04:55:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 81 STREET and EAST 77 STREET, MADISON AVENUE between EAST 75 STREET and EAST 77 STREET",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,"10021, 10028, 10075"
+567781,Shooting Permit,04/07/2021 09:00:00 AM,04/08/2021 12:30:00 AM,04/02/2021 04:14:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 20 STREET and WEST 19 STREET, WEST 18 STREET between 8 AVENUE and 7 AVENUE, WEST 17 STREET between 8 AVENUE and 7 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 17 STREET",Manhattan,4,"10, 13",Television,Cable-episodic,United States of America,10011
+567772,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 08:00:00 PM,04/02/2021 03:58:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 51 STREET between LEXINGTON AVENUE and 5 AVENUE, EAST 53 STREET between LEXINGTON AVENUE and MADISON AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,10022
+567769,Shooting Permit,04/08/2021 09:00:00 AM,04/08/2021 11:59:00 PM,04/02/2021 03:46:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 136 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, WEST 135 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, MALCOLM X BOULEVARD between WEST 138 STREET and WEST 135 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 134 STREET, W 139TH ST between MALCOLM X BOULEVARD and FIFTH AVENUE, WEST 141 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLAS BOULEVARD",Manhattan,"10, 5","18, 32",Television,Episodic series,United States of America,"10022, 10030, 10037"
+567759,Shooting Permit,04/07/2021 09:00:00 AM,04/07/2021 11:00:00 PM,04/02/2021 03:15:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 72 STREET and EAST 69 STREET, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 92 STREET between 3 AVENUE and LEXINGTON AVENUE, 5 AVENUE between EAST 92 STREET and EAST 97 STREET, EAST 96 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 96 STREET and EAST 94 STREET, 3 AVENUE between EAST 94 STREET and EAST 93 STREET, 3 AVENUE between EAST 97 STREET and EAST 96 STREET, EAST 96 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 96 STREET and EAST 97 STREET, EAST 97 STREET between 3 AVENUE and 2 AVENUE, EAST 71 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10021, 10029, 10128"
+567752,Shooting Permit,04/09/2021 11:00:00 AM,04/10/2021 02:00:00 AM,04/02/2021 02:30:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between ST JAMES PLACE and CLASSON AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GREENE AVENUE, LEXINGTON AVENUE between GRAND AVENUE and CLASSON AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11238
+567746,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 10:00:00 PM,04/02/2021 01:50:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+567733,Shooting Permit,04/08/2021 02:00:00 PM,04/09/2021 03:00:00 AM,04/02/2021 01:19:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and BEEKMAN STREET, PARK ROW between ANN STREET and BEEKMAN STREET, FULTON STREET between BROADWAY and WILLIAM STREET, NASSAU STREET between FULTON STREET and JOHN STREET, GOLD STREET between FULTON STREET and SPRUCE STREET, SPRUCE STREET between PARK ROW and GOLD STREET, FULTON STREET between GOLD STREET and CLIFF STREET, ANN STREET between NASSAU STREET and WILLIAM STREET, BEEKMAN STREET between NASSAU STREET and PARK ROW, BROADWAY between BARCLAY STREET and PARK PLACE, CENTRE STREET between CHAMBERS STREET and SPRUCE",Manhattan,1,"1, 5",Television,Episodic series,United States of America,"10007, 10038, 10279"
+567732,Shooting Permit,04/14/2021 06:00:00 AM,04/14/2021 10:00:00 PM,04/02/2021 01:09:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 64 STREET,Manhattan,7,20,WEB,Not Applicable,United States of America,10023
+567727,Shooting Permit,04/13/2021 06:00:00 AM,04/13/2021 10:00:00 PM,04/02/2021 12:59:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",AMSTERDAM AVENUE between WEST 62 STREET and WEST 64 STREET,Manhattan,7,20,WEB,Not Applicable,United States of America,10023
+567719,Shooting Permit,04/07/2021 09:00:00 AM,04/07/2021 11:59:00 PM,04/02/2021 12:48:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and VAN DAM STREET, REVIEW AVENUE between 29 STREET and 35 STREET, REVIEW AVENUE between 37 STREET and LAUREL HILL BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+567718,Shooting Permit,04/06/2021 06:00:00 AM,04/06/2021 10:00:00 PM,04/02/2021 12:34:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, WEST 20 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+567700,Shooting Permit,04/08/2021 06:00:00 AM,04/08/2021 09:00:00 PM,04/02/2021 11:19:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between COURT STREET and CLINTON STREET, UNION STREET between COURT STREET and SMITH STREET, COURT STREET between UNION STREET and SACKETT STREET, SACKETT STREET between COURT STREET and SMITH STREET, COURT STREET between SACKETT STREET and DEGRAW STREET, COURT STREET between DEGRAW STREET and KANE STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,"11201, 11231"
+567686,Shooting Permit,04/07/2021 09:00:00 AM,04/08/2021 01:00:00 AM,04/02/2021 10:40:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+567683,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 11:00:00 PM,04/02/2021 10:22:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567670,Shooting Permit,04/09/2021 06:00:00 PM,04/09/2021 11:00:00 PM,04/02/2021 08:02:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE",Manhattan,5,"14, 18",Film,Short,United States of America,10036
+567649,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 10:00:00 PM,04/01/2021 06:40:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567631,Shooting Permit,04/09/2021 07:00:00 AM,04/09/2021 08:00:00 PM,04/01/2021 04:13:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",12 STREET between 3 AVENUE and 4 AVENUE,Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11215
+567625,Shooting Permit,04/08/2021 10:00:00 AM,04/08/2021 12:00:00 PM,04/01/2021 03:55:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 54 STREET and EAST 48 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+567624,Shooting Permit,04/06/2021 08:00:00 AM,04/06/2021 08:00:00 PM,04/01/2021 03:52:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",PACIFIC STREET between 4 AVENUE and FLATBUSH AVENUE,Brooklyn,"1, 2, 6","78, 94",Still Photography,Not Applicable,United States of America,"11217, 11222"
+567623,Shooting Permit,04/07/2021 09:00:00 AM,04/07/2021 11:00:00 PM,04/01/2021 03:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 33 STREET between 7 AVENUE and 6 AVENUE, WEST 31 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 27 STREET and WEST 24 STREET, WEST 25 STREET between BROADWAY and 6 AVENUE",Manhattan,"4, 5","13, 14",Television,Episodic series,United States of America,"10001, 10010"
+567613,Shooting Permit,04/07/2021 07:30:00 AM,04/07/2021 10:15:00 PM,04/01/2021 03:25:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, SOUTH ELLIOTT PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between FULTON STREET and CUMBERLAND STREET, DEKALB AVENUE between FT GREENE PLACE and CUMBERLAND STREET",Brooklyn,2,88,Television,Episodic series,United States of America,11217
+567602,Shooting Permit,04/08/2021 09:00:00 AM,04/09/2021 03:00:00 AM,04/01/2021 02:52:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 ROAD between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 45 AVENUE and 45 ROAD, 5 STREET between 46 ROAD and 47 AVENUE, 5 STREET between 47 AVENUE and 47 ROAD, 47 ROAD between CENTER BOULEVARD and 5 STREET, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 9 STREET and 10 STREET, 9 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, VERNON BOULEVARD between 43 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+567576,Shooting Permit,04/06/2021 06:00:00 AM,04/06/2021 10:00:00 PM,04/01/2021 01:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105ST. ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+567569,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 09:00:00 PM,04/01/2021 01:30:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MARLBOROUGH ROAD between ALBEMARLE ROAD and BEVERLEY ROAD, CONEY ISLAND AVENUE between SLOCUM PLACE and CORTELYOU ROAD, CORTELYOU ROAD between ARGYLE ROAD and RUGBY ROAD, CORTELYOU ROAD between MARLBOROUGH ROAD and RUGBY ROAD, CORTELYOU ROAD between EAST 18 STREET and EAST 16 STREET, CORTELYOU ROAD between MARLBOROUGH ROAD and EAST 16 STREET, STRATFORD ROAD between SLOCUM PLACE and CORTELYOU ROAD, SLOCUM PLACE between STRATFORD ROAD and CONEY ISLAND AVENUE, CORTELYOU ROAD between CONEY ISLAND AVENUE and STRATFORD ROAD, CORTELYOU ROAD between WESTMINSTER ROAD and ARGYLE ROAD, DORCHESTER ROAD between EAST 18 STREET and EAST 19 STREET",Brooklyn,"12, 14","66, 70",Television,Episodic series,United States of America,"11218, 11226"
+567566,Shooting Permit,04/07/2021 09:00:00 AM,04/07/2021 10:00:00 PM,04/01/2021 01:20:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+567564,Shooting Permit,04/08/2021 01:00:00 PM,04/09/2021 12:30:00 AM,04/01/2021 01:07:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","TWELFTH AVENUE between WEST 133 STREET and WEST 134 STREET, TWELFTH AVENUE between 134TH STREET and 135TH STREET, MACOMBS PLACE between WEST 150 STREET and WEST 151 STREET, WEST 150 STREET between MACOMBS PLACE and ADAM CLAYTON POWELL BOULEVARD, WEST 133 STREET between 12 AVENUE and BROADWAY, ADAM CLAYTON POWELL BOULEVARD between WEST 152 STREET and WEST 153 STREET",Manhattan,"10, 4, 9","10, 26, 30, 32, 44",Commercial,Commercial,United States of America,"10011, 10027, 10031, 10039, 10451"
+567562,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 10:00:00 PM,04/01/2021 01:00:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567546,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 10:00:00 PM,04/01/2021 12:12:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 59 STREET and 58 STREET, WOODSIDE AVENUE between 58 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+567540,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 08:00:00 PM,04/01/2021 11:59:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODSIDE AVENUE between 59 STREET and 58 STREET, WOODSIDE AVENUE between 58 STREET and 56 STREET, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 57 STREET between WOODSIDE AVENUE and 39 AVENUE, 56 STREET between WOODSIDE AVENUE and 39 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11377
+567525,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 11:00:00 PM,04/01/2021 10:39:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, Kingsland Ave between Greenpoint ave and N Henry street, KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, Kingsland ave between Greenpoint Ave and N Henry St",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567436,Shooting Permit,04/06/2021 08:00:00 AM,04/06/2021 11:00:00 PM,03/31/2021 05:06:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 46 STREET and EAST 43 STREET, EAST 45 STREET between 5 AVENUE and MADISON AVENUE, WEST 45 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+567430,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 09:00:00 PM,03/31/2021 05:00:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN AVENUE between DOBBIN STREET and BANKER STREET, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, WYTHE AVENUE between BANKER STREET and NORTH 13 STREET, DRIGGS AVENUE between LORIMER STREET and NORTH 11 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11211, 11222, 11249"
+567413,Shooting Permit,04/06/2021 04:00:00 AM,04/06/2021 10:00:00 PM,03/31/2021 04:14:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 3 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 26 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 25 STREET and EAST 26 STREET, EAST 28 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE SOUTH between EAST 23 STREET and EAST 25 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 30 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 32 STREET and EAST 31 STREET, 3 AVENUE between EAST 30 STREET and EAST 29 STREET, EAST 30 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","13, 17",Television,Episodic series,United States of America,"10010, 10016"
+567410,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 08:30:00 PM,03/31/2021 03:53:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","56 ROAD between LAUREL HILL BOULEVARD and 43 STREET, 56 ROAD between 48 STREET and 43 STREET, PAIDGE AVENUE between MCGUINNESS BOULEVARD and CLAY STREET, PAIDGE AVENUE between PROVOST STREET and CLAY STREET, MCGUINNESS BOULEVARD between ASH STREET and PAIDGE AVENUE, MCGUINNESS BOULEVARD between PAIDGE AVENUE and CLAY STREET, MCGUINNESS BOULEVARD between CLAY STREET and DUPONT STREET, CLAY STREET between PAIDGE AVENUE and MCGUINNESS BOULEVARD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11222, 11378"
+567403,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 03:24:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+567400,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 05:00:00 PM,03/31/2021 03:08:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MCCLELLAN STREET between GRAND CONCOURSE and WALTON AVENUE, WALTON AVENUE between MCCLELLAN STREET and EAST 166 STREET, WALTON AVENUE between MCCLELLAN STREET and TUDOR PLACE, GRAND CONCOURSE between EAST 167 STREET and EAST 166 STREET, GRAND CONCOURSE between EAST 165 STREET and EAST 166 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 149 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 140 STREET",Bronx,"1, 4","40, 44",Television,Episodic series,United States of America,"10451, 10452, 10456"
+567399,DCAS Prep/Shoot/Wrap Permit,04/02/2021 04:30:00 PM,04/02/2021 07:30:00 PM,03/31/2021 03:07:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between EAST 158 STREET and EAST 159 STREET, GRAND CONCOURSE between EAST 153 STREET and EAST 158 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 149 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 140 STREET",Bronx,"1, 4","40, 44",Television,Episodic series,United States of America,10451
+567398,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 03:01:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+567394,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 11:00:00 PM,03/31/2021 02:51:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567385,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 02:04:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and THERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, SOUNDVIEW AVE between RANDALL AVENUE and LACOMBE AVENUE, Soundview Ave between UNDERHILL AVENUE and Leland Ave, COMMONWEALTH AVENUE between RANDALL AVENUE and LACOMBE AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+567380,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 09:00:00 PM,03/31/2021 01:55:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","JANE STREET between WASHINGTON STREET and WEST STREET, WASHINGTON STREET between HORATIO STREET and BETHUNE STREET, WEST STREET between JANE STREET and HORATIO STREET, HORATIO STREET between WEST STREET and WASHINGTON STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+567376,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 11:00:00 PM,03/31/2021 01:33:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU AVENUE between APOLLO STREET and HAUSMAN STREET, APOLLO STREET between NASSAU AVENUE and MEEKER AVENUE, HAUSMAN STREET between NASSAU AVENUE and MEEKER AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567374,Shooting Permit,04/07/2021 06:00:00 AM,04/07/2021 09:00:00 PM,03/31/2021 01:29:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+567373,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 10:00:00 PM,03/31/2021 01:24:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 102 STREET between MADISON AVENUE and 5 AVENUE, EAST 103 STREET between MADISON AVENUE and 5 AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 98 STREET and EAST 102 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET, 3 AVENUE between EAST 104 STREET and EAST 109 STREET, EAST 104 STREET between 5 AVENUE and PARK AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+567369,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 10:00:00 PM,03/31/2021 01:07:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","SANDS STREET between GOLD STREET and NAVY STREET, GOLD STREET between YORK STREET and NASSAU STREET",Brooklyn,2,"84, 88",Television,Cable-episodic,United States of America,"11201, 11205"
+567365,Shooting Permit,04/09/2021 07:00:00 AM,04/09/2021 10:00:00 PM,03/31/2021 12:50:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and DYER AVENUE, WEST 36 STREET between 11 AVENUE and 10 AVENUE, 10 AVENUE between WEST 36 STREET and WEST 35 STREET, WEST 36 STREET between 10 AVENUE and DYER AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,10018
+567364,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 10:00:00 PM,03/31/2021 12:49:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 10 AVENUE and 11 AVENUE, WEST 37 STREET between 10 AVENUE and DYER AVENUE, WEST 36 STREET between 11th Avenue and 10 AVENUE, 10 AVENUE between WEST 36 STREET and WEST 35 STREET, WEST 36 STREET between 10 AVENUE and DYER AVENUE",Manhattan,4,10,Television,Cable-episodic,United States of America,10018
+567358,Shooting Permit,04/05/2021 06:30:00 AM,04/05/2021 09:00:00 PM,03/31/2021 12:37:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and NORTH HENRY STREET, NORTH HENRY STREET between MESEROLE AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567334,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 11:47:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567331,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 11:00:00 PM,03/31/2021 11:44:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+567329,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 09:00:00 PM,03/31/2021 11:34:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 59 STREET and WEST 57 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+567323,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 09:00:00 PM,03/31/2021 11:19:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567321,Shooting Permit,04/09/2021 07:00:00 AM,04/09/2021 09:00:00 PM,03/31/2021 11:17:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567318,Shooting Permit,04/13/2021 07:00:00 AM,04/13/2021 09:00:00 PM,03/31/2021 11:14:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567314,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 09:00:00 PM,03/31/2021 11:10:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567313,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 09:00:00 PM,03/31/2021 11:08:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567310,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 10:00:00 PM,03/31/2021 11:05:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND CONCOURSE between EAST 166 STREET and EAST 167 STREET, GRAND CONCOURSE between EAST 165 STREET and EAST 166 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 149 STREET, GRAND CONCOURSE between EAST 144 STREET and EAST 140 STREET",Bronx,"1, 4","40, 44",Television,Episodic series,United States of America,"10451, 10452, 10456"
+567304,Shooting Permit,04/06/2021 06:00:00 AM,04/06/2021 10:00:00 PM,03/31/2021 10:56:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+567295,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 10:48:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567294,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 10:00:00 PM,03/31/2021 10:45:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+567291,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 10:00:00 PM,03/31/2021 10:45:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+567290,Shooting Permit,04/01/2021 06:00:00 AM,04/01/2021 10:00:00 PM,03/31/2021 10:42:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+567281,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 09:00:00 PM,03/31/2021 10:19:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 98 STREET and EAST 102 STREET, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET, 3 AVENUE between EAST 104 STREET and EAST 109 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+567249,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 11:00:00 PM,03/30/2021 11:58:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567223,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 11:00:00 PM,03/30/2021 07:09:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","29 STREET between 47 AVENUE and 49 AVENUE, 47 AVENUE between 31 PLACE and 31 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+567214,Shooting Permit,04/08/2021 06:00:00 AM,04/08/2021 10:00:00 PM,03/30/2021 06:16:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",SMITH STREET between BAY STREET and HALLECK STREET,Brooklyn,6,76,WEB,Not Applicable,United States of America,11231
+567212,Shooting Permit,04/06/2021 06:00:00 AM,04/06/2021 11:00:00 PM,03/30/2021 06:01:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+567209,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 11:00:00 PM,03/30/2021 05:51:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+567208,Shooting Permit,04/02/2021 06:00:00 AM,04/02/2021 10:00:00 PM,03/30/2021 05:44:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+567181,Shooting Permit,04/02/2021 01:00:00 PM,04/03/2021 01:00:00 AM,03/30/2021 04:09:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 48 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 49 STREET between 3 AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152, 10171, 10172"
+567170,Shooting Permit,04/05/2021 06:00:00 AM,04/05/2021 11:00:00 PM,03/30/2021 03:54:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between KNICKERBOCKER AVENUE and PORTER AVENUE, INGRAHAM STREET between PORTER AVENUE and VARICK AVENUE, PORTER AVENUE between JOHNSON AVENUE and GRATTAN STREET, HARRISON PLACE between KNICKERBOCKER AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+567168,Shooting Permit,03/31/2021 09:00:00 AM,03/31/2021 11:00:00 PM,03/30/2021 03:51:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+567147,Rigging Permit,03/31/2021 11:00:00 PM,04/01/2021 03:00:00 PM,03/30/2021 02:49:42 PM,"Mayor's Office of Film, Theatre & Broadcasting",71 AVENUE between BURNS STREET and AUSTIN STREET,Queens,"5, 6","104, 112",Television,Episodic series,United States of America,"11375, 11379, 11385"
+567146,Shooting Permit,04/05/2021 10:00:00 AM,04/05/2021 09:00:00 PM,03/30/2021 02:46:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 STREET between BARNETT AVENUE and SKILLMAN AVENUE, 43 AVENUE between 43 STREET and 44 STREET, 44 STREET between 43 AVENUE and QUEENS BOULEVARD, QUEENS BOULEVARD between 45 STREET and 43 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and 43 AVENUE, QUEENS BOULEVARD between 43 STREET and 42 STREET, 43 STREET between 43 AVENUE and QUEENS BOULEVARD",Queens,2,108,Television,Cable-episodic,United States of America,11104
+567121,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 10:00:00 PM,03/30/2021 01:27:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+567117,Shooting Permit,04/08/2021 07:00:00 AM,04/08/2021 11:00:00 PM,03/30/2021 01:17:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+567116,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 09:00:00 PM,03/30/2021 01:16:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 59 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+567111,Shooting Permit,04/09/2021 07:00:00 AM,04/09/2021 11:00:00 PM,03/30/2021 01:03:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+567108,Shooting Permit,04/01/2021 08:00:00 AM,04/01/2021 11:59:00 PM,03/30/2021 01:00:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567107,Shooting Permit,04/06/2021 07:00:00 AM,04/06/2021 11:00:00 PM,03/30/2021 12:58:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+567099,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 11:00:00 PM,03/30/2021 12:45:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567076,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 07:00:00 PM,03/30/2021 12:08:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",7 AVENUE SOUTH between COMMERCE STREET and MORTON STREET,Manhattan,2,6,Commercial,Commercial,United States of America,10014
+567072,Shooting Permit,04/02/2021 08:00:00 AM,04/02/2021 09:00:00 PM,03/30/2021 11:58:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+567055,Shooting Permit,04/02/2021 10:00:00 AM,04/03/2021 02:00:00 AM,03/30/2021 11:05:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 69 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, CENTRAL PARK WEST between WEST 68 STREET and WEST 70 STREET, COLUMBUS AVENUE between WEST 67 STREET and WEST 68 STREET, COLUMBUS AVENUE between WEST 69 STREET and WEST 70 STREET, AMSTERDAM AVENUE between WEST 67 STREET and WEST 70 STREET, WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 67 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 69 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,"64, 7","20, 22",Television,Episodic series,United States of America,10023
+567054,Shooting Permit,04/02/2021 08:00:00 AM,04/02/2021 10:00:00 PM,03/30/2021 11:04:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","MT CARMEL PLACE between EAST 28 STREET and EAST 26 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 1 AVENUE and 3 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE SOUTH between EAST 25 STREET and EAST 23 STREET, EAST 24 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, EAST 23 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE",Manhattan,"5, 6",13,Television,Episodic series,United States of America,"10010, 10016"
+567050,Theater Load in and Load Outs,04/16/2021 12:01:00 AM,04/21/2021 11:59:00 PM,03/30/2021 10:41:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between RIVER AVENUE and JEROME AVENUE,Bronx,4,44,Television,Cable-other,United States of America,"10451, 10452"
+567049,Theater Load in and Load Outs,04/01/2021 12:01:00 AM,04/07/2021 11:59:00 PM,03/30/2021 10:41:49 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 164 STREET between RIVER AVENUE and JEROME AVENUE,Bronx,4,44,Television,Cable-other,United States of America,"10451, 10452"
+567045,Shooting Permit,04/02/2021 06:00:00 AM,04/02/2021 10:00:00 PM,03/30/2021 10:35:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between MOULTRIE STREET and RUSSELL STREET, CALYER STREET between HUMBOLDT STREET and RUSSELL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+567040,Shooting Permit,04/12/2021 07:00:00 AM,04/12/2021 08:00:00 PM,03/30/2021 10:25:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",BOND STREET between BERGEN STREET and DEAN STREET,Brooklyn,2,84,Still Photography,Not Applicable,United States of America,11217
+567023,Theater Load in and Load Outs,04/01/2021 07:00:00 AM,04/02/2021 06:00:00 AM,03/30/2021 04:35:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+566991,Shooting Permit,04/02/2021 09:00:00 AM,04/02/2021 11:00:00 PM,03/29/2021 06:23:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+566990,Shooting Permit,04/01/2021 08:00:00 AM,04/01/2021 10:00:00 PM,03/29/2021 06:19:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between 31 PLACE and 34 STREET, REVIEW AVENUE between 29 STREET and 35 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+566974,Shooting Permit,04/12/2021 08:00:00 AM,04/13/2021 12:00:00 AM,03/29/2021 05:04:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566973,Shooting Permit,04/01/2021 06:00:00 AM,04/01/2021 10:00:00 PM,03/29/2021 05:04:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+566964,Shooting Permit,04/01/2021 09:00:00 AM,04/02/2021 12:00:00 AM,03/29/2021 04:16:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","51 AVENUE between 25 STREET and 27 STREET, 27 STREET between 51 AVENUE and 49 AVENUE, 30TH ST between 49 AVENUE and BORDEN AVENUE, PEARSON PLACE between 27 STREET and SKILLMAN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566960,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 09:00:00 PM,03/29/2021 04:03:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+566959,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 07:00:00 PM,03/29/2021 04:02:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",GREENPOINT AVE between RAILROAD AVE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+566958,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 09:00:00 PM,03/29/2021 04:02:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+566955,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 10:00:00 PM,03/29/2021 03:58:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST AVE. and 105TH AVE.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+566954,Shooting Permit,04/10/2021 12:00:00 PM,04/11/2021 04:00:00 AM,03/29/2021 03:56:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566948,Shooting Permit,04/05/2021 08:00:00 AM,04/06/2021 12:00:00 AM,03/29/2021 03:27:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566943,Shooting Permit,04/01/2021 06:00:00 AM,04/01/2021 10:00:00 PM,03/29/2021 03:25:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566941,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 11:00:00 PM,03/29/2021 03:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566935,Shooting Permit,04/01/2021 08:00:00 AM,04/01/2021 11:00:00 PM,03/29/2021 03:08:06 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 49 AVENUE and 47 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+566933,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 11:00:00 PM,03/29/2021 03:03:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566930,Shooting Permit,04/02/2021 10:00:00 AM,04/03/2021 01:00:00 AM,03/29/2021 02:55:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","32 AVENUE between 156 STREET and 159 STREET, 33 AVENUE between 158 STREET and 159 STREET, 159 STREET between 32 AVENUE and 33 AVENUE, 33 AVENUE between 159 STREET and 160 STREET, 159 STREET between 32 AVENUE and 33 AVENUE",Queens,7,109,Television,Cable-episodic,United States of America,"11354, 11358"
+566918,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/29/2021 01:42:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566904,Shooting Permit,03/31/2021 08:00:00 AM,03/31/2021 06:00:00 PM,03/29/2021 01:04:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between WEST 12 STREET and GANSEVOORT STREET, WEST 12 STREET between GREENWICH STREET and HUDSON STREET, JANE STREET between GREENWICH STREET and HUDSON STREET, 8 AVENUE between JANE STREET and WEST 12 STREET, 8 AVENUE between WEST 12 STREET and BLEECKER STREET, WEST 12 STREET between 8 AVENUE and HUDSON STREET, HUDSON STREET between WEST 12 STREET and BETHUNE STREET, GREENWICH STREET between WEST 12 STREET and WEST 11 STREET, W 14 ST between 9TH AVE and HIGH LINE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET, BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+566887,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/29/2021 11:56:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",RAILROAD AVE between GREENPOINT AVE and DEAD END,Queens,2,108,Television,Episodic series,United States of America,11101
+566886,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 10:00:00 PM,03/29/2021 11:56:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+566873,Shooting Permit,03/31/2021 07:30:00 AM,03/31/2021 06:00:00 PM,03/29/2021 11:33:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 22 STREET and WEST 23 STREET, WEST 23 STREET between 10 AVENUE and 11 AVENUE, WEST 25 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+566839,Shooting Permit,03/30/2021 03:00:00 AM,03/30/2021 11:00:00 PM,03/29/2021 08:52:07 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST STREET between ALBANY STREET and CEDAR STREET,Manhattan,1,1,Film,Feature,United States of America,"10006, 10280"
+566835,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 11:00:00 PM,03/29/2021 08:35:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","AUSTIN STREET between 70 ROAD and 71 ROAD, 71 AVENUE between BURNS STREET and AUSTIN STREET",Queens,"5, 6, 9","104, 112, 75",Television,Episodic series,United States of America,"11375, 11379, 11385, 11415, 11421"
+566833,Shooting Permit,04/01/2021 07:00:00 AM,04/01/2021 09:00:00 PM,03/29/2021 07:53:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566832,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 09:00:00 PM,03/29/2021 07:52:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566793,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 07:00:00 PM,03/28/2021 10:26:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",BANK STREET between BLEEKER STREET and WEST 4 STREET,Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+566768,Shooting Permit,03/31/2021 11:00:00 AM,04/01/2021 03:00:00 AM,03/28/2021 03:53:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 6 STREET and EAST 7 STREET, AVENUE A between EAST 8 STREET and EAST 10 STREET, EAST 10 STREET between AVENUE A and 1 AVENUE, 1 AVENUE between EAST 8 STREET and EAST 10 STREET, EAST 9 STREET between AVENUE A and 1 AVENUE, EAST 8 STREET between AVENUE B and AVENUE C, AVENUE A between EAST 10 STREET and EAST 11 STREET",Manhattan,3,9,Television,Cable-episodic,United States of America,"10003, 10009"
+566746,Shooting Permit,04/01/2021 08:00:00 AM,04/01/2021 08:00:00 PM,03/28/2021 10:26:38 AM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,8,77,WEB,Not Applicable,United States of America,"11216, 11238"
+566668,Shooting Permit,04/01/2021 10:00:00 AM,04/02/2021 02:00:00 AM,03/26/2021 06:08:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between TILDEN AVENUE and DURYEA PLACE, TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between TILDEN AVENUE and BEVERLY ROAD, EAST 22 STREET between DURYEA PLACE and BEVERLY ROAD, BEDFORD AVENUE between SNYDER AVENUE and ALBEMARLE ROAD",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+566656,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 11:00:00 PM,03/26/2021 04:47:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566652,Shooting Permit,04/01/2021 06:00:00 AM,04/01/2021 07:00:00 PM,03/26/2021 04:38:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between MOULTRIE STREET and JEWEL STREET, JEWEL STREET between GREENPOINT AVENUE and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and NEWEL STREET, CALYER STREET between JEWEL STREET and DIAMOND STREET, CALYER STREET between DIAMOND STREET and NEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566650,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 11:00:00 PM,03/26/2021 04:30:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566630,Shooting Permit,04/07/2021 07:00:00 AM,04/07/2021 08:00:00 PM,03/26/2021 03:34:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and BORDEN AVENUE, BORDEN AVENUE between 31 PLACE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+566627,Shooting Permit,04/06/2021 08:00:00 AM,04/06/2021 08:00:00 PM,03/26/2021 03:19:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between PUTNAM AVENUE and GATES AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+566626,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/26/2021 03:18:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 59 STREET and WEST 57 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+566625,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 11:00:00 PM,03/26/2021 03:17:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566623,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 09:00:00 PM,03/26/2021 03:11:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 6 AVENUE and GRAND ARMY PLAZA, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 59 STREET and WEST 57 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+566619,Shooting Permit,04/01/2021 06:00:00 AM,04/01/2021 08:00:00 PM,03/26/2021 03:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+566614,Shooting Permit,04/01/2021 10:00:00 AM,04/02/2021 02:00:00 AM,03/26/2021 02:35:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 st between queens plaza s and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566603,Shooting Permit,03/27/2021 06:00:00 AM,03/27/2021 08:00:00 PM,03/26/2021 01:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, 46TH AVE between CENTER BOULEVARD and DEAD END, CENTER BOULEVARD between 48 AVENUE and 47 ROAD",Queens,2,108,Still Photography,Not Applicable,United States of America,"11101, 11109"
+566594,Shooting Permit,04/05/2021 08:00:00 AM,04/05/2021 08:00:00 PM,03/26/2021 01:06:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between GATES AVENUE and PUTNAM AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11238
+566585,Shooting Permit,04/01/2021 08:00:00 AM,04/01/2021 08:00:00 PM,03/26/2021 12:14:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",14 STREET between 6 AVENUE and 7 AVENUE,Brooklyn,6,78,Still Photography,Not Applicable,United States of America,11215
+566582,Shooting Permit,04/02/2021 08:00:00 AM,04/02/2021 08:00:00 PM,03/26/2021 12:06:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",HANCOCK STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE,Brooklyn,3,81,Still Photography,Not Applicable,United States of America,11233
+566576,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 10:00:00 PM,03/26/2021 11:47:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566528,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 10:00:00 PM,03/26/2021 09:07:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE B and AVENUE C, EAST 8 STREET between AVENUE B and AVENUE C, AVENUE C between EAST 8 STREET and EAST 9 STREET, AVENUE C between EAST 9 STREET and EAST 10 STREET, EAST 10 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Television,Episodic series,United States of America,10009
+566483,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 04:00:00 PM,03/25/2021 05:01:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and RUSSELL STREET, HUMBOLDT STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566474,Shooting Permit,03/31/2021 09:00:00 AM,03/31/2021 11:59:00 PM,03/25/2021 04:44:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 73 STREET, 3 AVENUE between EAST 69 STREET and EAST 72 STREET, EAST 71 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 65 STREET and EAST 68 STREET, EAST 66 STREET between 2 AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+566473,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 09:00:00 PM,03/25/2021 04:36:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+566465,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 11:00:00 PM,03/25/2021 04:11:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between DELANCEY STREET and EAST HOUSTON STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between BOWERY and MOTT STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, BOWERY between BROOME STREET and GRAND STREET, KENMARE STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+566464,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 09:00:00 PM,03/25/2021 04:08:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",LAUREL HILL BOULEVARD between REVIEW AVENUE and 56 ROAD,Queens,2,108,Television,Episodic series,United States of America,11378
+566459,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 08:00:00 PM,03/25/2021 03:57:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 6 AVENUE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 59 STREET and WEST 57 STREET, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET, EAST 61 STREET between 5 AVENUE and MADISON AVENUE, GRAND ARMY PLAZA between CENTRAL PARK SOUTH and WEST 58 STREET",Manhattan,"5, 8","18, 19",Television,Cable-episodic,United States of America,"10019, 10022, 10065"
+566454,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/25/2021 03:19:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+566452,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 10:00:00 PM,03/25/2021 03:09:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+566450,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 10:00:00 PM,03/25/2021 03:04:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+566441,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 10:00:00 PM,03/25/2021 02:39:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566431,Shooting Permit,03/30/2021 08:00:00 AM,03/30/2021 10:00:00 PM,03/25/2021 02:06:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUNTS POINT AVENUE between SPOFFORD AVENUE and RANDALL AVENUE, BRYANT AVENUE between HUNTS POINT AVENUE and RANDALL AVENUE, RANDALL AVENUE between BRYANT AVENUE and HUNTS POINT AVENUE, FAILE STREET between SPOFFORD AVENUE and RANDALL AVENUE, SPOFFORD AVENUE between FAILE STREET and HUNTS POINT AVENUE, SPOFFORD AVENUE between BRYANT AVENUE and LONGFELLOW AVENUE, HUNTS POINT AVENUE between FAILE STREET and SPOFFORD AVENUE, DRAKE STREET between RANDALL AVENUE and SPOFFORD AVENUE, SCHLEY AVENUE between EAST TREMONT AVENUE and CROSS BRONX EXPRESSWAY, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, E Tremont Ave between Cross Bronx Expressway and Schley Ave, EAST TREMONT AVENUE between LAMPORT PLACE and SCHLEY AVENUE, EAST TREMONT AVENUE between LAMPORT PLACE and ROOSEVELT AVENUE, Cross Bronx Expressway between East Tremont Ave and Revere Ave, LAMPORT PLACE between EAST TREMONT AVENUE and REVERE AVENUE, LAMPORT PLACE between REVERE AVENUE and CROSS BRONX EXPRESSWAY, REVERE AVENUE between LAMPORT PLACE and CROSS BRONX EXPRESSWAY",Bronx,"10, 2","41, 45",Television,Cable-episodic,United States of America,"10465, 10474"
+566428,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 10:00:00 PM,03/25/2021 02:00:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566400,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 11:00:00 PM,03/25/2021 12:21:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between NEWELL STREET and MCGUINNESS BOULEVARD, NEWELL STREET between GREENPOINT AVENUE and CALYER STREET, NEWELL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWELL STREET and DIAMOND STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566397,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 10:00:00 PM,03/25/2021 12:19:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between REVIEW AVENUE and VAN DAM STREET, STARR AVENUE between VAN DAM STREET and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+566392,Shooting Permit,04/08/2021 06:00:00 AM,04/08/2021 11:59:00 PM,03/25/2021 11:56:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Film,Short,United States of America,10036
+566377,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 08:00:00 PM,03/25/2021 10:55:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",RUGBY ROAD between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+566376,Shooting Permit,04/07/2021 06:00:00 AM,04/07/2021 11:59:00 PM,03/25/2021 10:53:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 45 STREET between 7 AVENUE and 8 AVENUE,Manhattan,5,"14, 18",Film,Short,United States of America,10036
+566374,Shooting Permit,03/29/2021 06:30:00 AM,03/29/2021 10:00:00 PM,03/25/2021 10:49:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566373,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 07:00:00 PM,03/25/2021 10:46:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+566370,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 09:00:00 PM,03/25/2021 10:37:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566369,Shooting Permit,04/05/2021 07:00:00 AM,04/05/2021 11:00:00 PM,03/25/2021 10:35:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+566368,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 09:00:00 PM,03/25/2021 10:34:16 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between NOSTRAND AVENUE and BEDFORD AVENUE,Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+566367,Shooting Permit,04/02/2021 07:00:00 AM,04/02/2021 11:30:00 PM,03/25/2021 10:31:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+566364,Shooting Permit,04/01/2021 09:00:00 AM,04/01/2021 11:59:00 PM,03/25/2021 10:26:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+566363,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/25/2021 10:25:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPWY and MELBOURNE AVE, 61 ROAD between REEVES AVENUE and 153 STREET, REEVES AVENUE between 153 STREET and HORACE HARDING EXPRESSWAY",Queens,"7, 8","107, 109",Television,Episodic series,United States of America,"11365, 11367"
+566357,Shooting Permit,03/29/2021 06:30:00 AM,03/29/2021 04:00:00 PM,03/25/2021 09:49:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 24 STREET and WEST 25 STREET, 9 AVENUE between WEST 25 STREET and WEST 26 STREET, WEST 25 STREET between 7 AVENUE and 8 AVENUE, WEST 26 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",10,Television,Episodic series,United States of America,10001
+566356,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 10:00:00 PM,03/25/2021 09:48:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPWY and MELBOURNE AVE, 61 ROAD between REEVES AVENUE and 153 STREET, REEVES AVENUE between HORACE HARDING EXPRESSWAY and 153 STREET",Queens,"7, 8","107, 109",Television,Episodic series,United States of America,"11365, 11367"
+566355,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 09:00:00 PM,03/25/2021 09:44:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between NOSTRAND AVENUE and BEDFORD AVENUE,Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+566350,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 07:00:00 PM,03/25/2021 09:26:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 24 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Still Photography,Not Applicable,United States of America,10011
+566325,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 08:00:00 PM,03/24/2021 08:53:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","31 STREET between 20 ROAD and 21 AVENUE, 31 STREET between DITMARS BOULEVARD and 21 AVENUE, DITMARS BOULEVARD between 31 STREET and 32 STREET, 20 ROAD between 31 STREET and 32 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+566313,Shooting Permit,04/07/2021 07:00:00 AM,04/08/2021 01:00:00 AM,03/24/2021 06:39:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 30 STREET and 36 STREET, 33 STREET between 2 AVENUE and 3 AVENUE, 32 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between 33 STREET and 34 STREET, 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between 10 STREET and 8 STREET, 5 AVENUE between 10 STREET and 9 STREET, 5 AVENUE between 10 STREET and 11 STREET, 10 STREET between 4 AVENUE and 5 AVENUE, 10 STREET between 5 AVENUE and 6 AVENUE",Brooklyn,"6, 7","72, 78",Television,Episodic series,United States of America,"11215, 11232"
+566311,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 09:00:00 PM,03/24/2021 06:37:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between DELANCEY STREET and EAST HOUSTON STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between BOWERY and MOTT STREET, ELIZABETH STREET between BROOME STREET and KENMARE STREET, BOWERY between BROOME STREET and GRAND STREET, KENMARE STREET between BOWERY and ELIZABETH STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+566296,Shooting Permit,04/12/2021 11:00:00 AM,04/12/2021 10:00:00 PM,03/24/2021 04:49:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","GARRISON AVENUE between LAFAYETTE AVENUE and TIFFANY STREET, GARRISON AVENUE between LAFAYETTE AVENUE and BURNET PLACE, GARRISON AVENUE between BURNET PLACE and LONGWOOD AVENUE, BURNET PLACE between GARRISON AVENUE and BARRY STREET, BARRY STREET between TIFFANY STREET and BURNET PLACE, LONGWOOD AVENUE between BARRY STREET and SPOFFORD AVENUE, TIFFANY STREET between LAFAYETTE AVENUE and BURNET PLACE, TIFFANY STREET between GARRISON AVENUE and LAFAYETTE AVENUE, LAFAYETTE AVENUE between TIFFANY STREET and MANIDA STREET, BARRETTO STREET between GARRISON AVENUE and LAFAYETTE AVENUE",Bronx,2,41,Television,Episodic series,United States of America,10474
+566294,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 10:00:00 PM,03/24/2021 04:38:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between BROADWAY and 5 AVENUE,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+566290,Shooting Permit,03/26/2021 10:00:00 AM,03/27/2021 12:30:00 AM,03/24/2021 04:22:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+566283,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 03:00:00 PM,03/24/2021 03:51:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLIFTON PLACE between GRAND AVENUE and ST JAMES PLACE, GRAND AVENUE between CLIFTON PLACE and GREENE AVENUE, GREENE AVENUE between GRAND AVENUE and ST JAMES PLACE, ST JAMES PLACE between CLIFTON PLACE and GREENE AVENUE, CLIFTON PLACE between GRAND AVENUE and CLASSON AVENUE, WASHINGTON AVENUE between GREENE AVENUE and GATES AVENUE, LAFAYETTE AVENUE between ST JAMES PLACE and WASHINGTON AVENUE",Brooklyn,2,88,Television,Cable-episodic,United States of America,11238
+566279,Shooting Permit,04/09/2021 10:00:00 AM,04/10/2021 02:00:00 AM,03/24/2021 03:43:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 100 STREET between WEST END AVENUE and RIVERSIDE DRIVE, WEST END AVENUE between WEST 100 STREET and WEST 99 STREET, WEST END AVENUE between WEST 101 STREET and WEST 100 STREET, WEST END AVENUE between WEST 99 STREET and WEST 98 STREET, WEST 98 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, BROADWAY between WEST 97 STREET and WEST 98 STREET, BROADWAY between WEST 96 STREET and WEST 95 STREET, BROADWAY between WEST 93 STREET and WEST 92 STREET, BROADWAY between WEST 90 STREET and WEST 89 STREET",Manhattan,7,24,Television,Episodic series,United States of America,"10024, 10025"
+566272,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 08:00:00 PM,03/24/2021 03:22:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOYT STREET between BALTIC STREET and DOUGLASS STREET, HOYT STREET between DOUGLASS STREET and DE GRAW STREET, HOYT STREET between DE GRAW STREET and SACKETT STREET, BUTLER STREET between HOYT STREET and SMITH STREET, DOUGLASS STREET between HOYT STREET and SMITH STREET, DOUGLASS STREET between HOYT STREET and BOND STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, DE GRAW STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DOUGLASS STREET and DE GRAW STREET",Brooklyn,6,"76, 78",Television,Cable-episodic,United States of America,"11217, 11231"
+566268,Shooting Permit,04/06/2021 06:00:00 AM,04/07/2021 12:00:00 AM,03/24/2021 03:05:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROSPECT PARK WEST between 9 STREET and 11 STREET, PROSPECT PARK WEST between 11 STREET and 13 STREET, 8 AVENUE between 11 STREET and 12 STREET, 11 STREET between 8 AVENUE and PROSPECT PARK WEST, 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between 8 STREET and 10 STREET",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+566264,Shooting Permit,03/31/2021 09:00:00 AM,03/31/2021 11:30:00 PM,03/24/2021 02:57:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+566256,Shooting Permit,03/26/2021 05:00:00 PM,03/27/2021 05:00:00 AM,03/24/2021 02:34:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between CHURCH STREET and BROADWAY, CHURCH STREET between BARCLAY STREET and WARREN STREET, PARK PLACE between CHURCH STREET and BROADWAY, MURRAY STREET between BROADWAY and CHURCH STREET, BROADWAY between BARCLAY STREET and PARK PLACE, BROADWAY between WARREN STREET and PARK PLACE, WARREN STREET between BROADWAY and GREENWICH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10007, 10279"
+566252,Shooting Permit,03/31/2021 07:00:00 AM,03/31/2021 10:00:00 PM,03/24/2021 02:29:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","OAK POINT AVENUE between DUPONT STREET and TIFFANY STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,"1, 2","40, 41",Television,Episodic series,United States of America,"10454, 10474"
+566240,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 10:00:00 PM,03/24/2021 01:53:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+566239,Shooting Permit,03/26/2021 07:00:00 AM,03/26/2021 11:00:00 PM,03/24/2021 01:52:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566228,Shooting Permit,03/29/2021 08:00:00 AM,03/29/2021 10:00:00 PM,03/24/2021 01:22:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 65 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 64 STREET and EAST 67 STREET, EAST 65 STREET between 1 AVENUE and 2 AVENUE, EAST 66 STREET between 2 AVENUE and 3 AVENUE, EAST 64 STREET between 1 AVENUE and 2 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,10065
+566224,Shooting Permit,03/26/2021 08:00:00 AM,03/27/2021 12:00:00 AM,03/24/2021 01:14:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA s and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566184,Shooting Permit,03/26/2021 03:00:00 PM,03/27/2021 05:00:00 AM,03/24/2021 11:20:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, WEST 43 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, EAST 43 STREET between MADISON AVENUE and 5 AVENUE, EAST 96 STREET between 3 AVENUE and PARK AVENUE, LEXINGTON AVENUE between EAST 95 STREET and EAST 96 STREET, 3 AVENUE between EAST 94 STREET and EAST 96 STREET",Manhattan,"11, 5, 8","14, 19, 23",Television,Cable-episodic,United States of America,"10017, 10036, 10128"
+566182,Shooting Permit,03/25/2021 01:00:00 AM,03/25/2021 10:00:00 PM,03/24/2021 11:18:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROOME STREET between GREENE STREET and BROADWAY, GREENE STREET between GRAND STREET and SPRING STREET, SPRING STREET between GREENE STREET and BROADWAY, SPRING STREET between MERCER STREET and BROADWAY, MERCER STREET between GRAND STREET and BROOME STREET, BROADWAY between BROOME STREET and GRAND STREET, BROADWAY between HOWARD STREET and GRAND STREET",Manhattan,2,"1, 5",Television,Cable-episodic,United States of America,"10012, 10013"
+566177,Shooting Permit,03/26/2021 06:30:00 AM,03/26/2021 08:00:00 PM,03/24/2021 11:16:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 141 STREET and WEST 140 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 140 STREET and WEST 139 STREET, WEST 139 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 141 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 138 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 137 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 135 STREET between LENOX AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, ADAM CLAYTON POWELL JR BOULEVARD between WEST 139 STREET and WEST 138 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 137 STREET and WEST 135 STREET",Manhattan,10,32,Television,Episodic series,United States of America,10030
+566153,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 08:00:00 PM,03/24/2021 09:31:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",RIVER STREET between SOUTH 1ST and SOUTH 5TH,Brooklyn,1,90,Still Photography,Not Applicable,United States of America,"11211, 11249"
+566149,Shooting Permit,03/29/2021 08:00:00 AM,03/29/2021 10:00:00 PM,03/24/2021 09:12:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+566145,Shooting Permit,03/25/2021 10:00:00 AM,03/25/2021 04:00:00 PM,03/24/2021 08:49:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",CADMAN PLAZA EAST between PROSPECT STREET and RED CROSS PLACE,Manhattan,"1, 2, 3","1, 5, 84",Still Photography,Not Applicable,United States of America,"10002, 10038, 11201"
+566143,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 09:00:00 PM,03/24/2021 08:49:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between PUTNAM AVENUE and GATES AVENUE,Brooklyn,2,88,WEB,Not Applicable,United States of America,11238
+566140,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 09:00:00 PM,03/24/2021 08:39:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18 STREET between FOSTER AVENUE and GLENWOOD ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11230
+566138,Shooting Permit,03/26/2021 07:00:00 AM,03/26/2021 11:00:00 PM,03/24/2021 08:35:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","9 AVENUE between WEST 21 STREET and WEST 23 STREET, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 22 STREET between 9 AVENUE and 10 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+566121,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 10:00:00 PM,03/23/2021 10:33:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between WOODHULL STREET and CARROLL STREET, WOODHULL STREET between HENRY STREET and HICKS STREET",Brooklyn,6,76,Commercial,Commercial,United States of America,11231
+566122,Shooting Permit,04/02/2021 06:00:00 AM,04/02/2021 10:00:00 PM,03/23/2021 10:33:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between BEVERLY ROAD and CORTELYOU ROAD, BEVERLY ROAD between EAST 16 STREET and EAST 18 STREET",Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+566101,Shooting Permit,03/26/2021 06:00:00 PM,03/26/2021 11:59:00 PM,03/23/2021 07:29:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEAN STREET between FRANKLIN AVENUE and CLASSON AVENUE, FRANKLIN AVENUE between BERGEN STREET and PACIFIC STREET, PACIFIC STREET between FRANKLIN AVENUE and CLASSON AVENUE, ST MARKS AVENUE between BEDFORD AVENUE and FRANKLIN AVENUE",Brooklyn,8,77,Television,Episodic series,United States of America,"11216, 11238"
+566097,Shooting Permit,03/30/2021 07:00:00 AM,03/30/2021 10:00:00 PM,03/23/2021 07:09:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DITMAS AVENUE and DORCHESTER ROAD, DORCHESTER ROAD between EAST 17 STREET and EAST 19 STREET, FLATBUSH AVENUE between CORTELYOU ROAD and DITMAS AVENUE, DITMAS AVENUE between EAST 17 STREET and OCEAN AVENUE, FOSTER AVENUE between FLATBUSH AVENUE and EAST 26 STREET, EAST 26 STREET between FOSTER AVENUE and FLATBUSH AVENUE, FLATBUSH AVENUE between EAST 26 STREET and ROGERS AVENUE, FARRAGUT ROAD between ROGERS AVENUE and EAST 29 STREET, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,"11210, 11226"
+566096,Shooting Permit,03/29/2021 06:30:00 AM,03/29/2021 10:00:00 PM,03/23/2021 07:08:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, DORCHESTER ROAD between EAST 17 STREET and EAST 19 STREET, DITMAS AVENUE between EAST 17 STREET and OCEAN AVENUE, OCEAN AVENUE between DORCHESTER ROAD and FOSTER AVENUE, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+566091,Theater Load in and Load Outs,07/07/2021 12:01:00 AM,07/21/2021 11:59:00 PM,03/23/2021 06:26:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566092,Theater Load in and Load Outs,07/22/2021 12:01:00 AM,08/05/2021 11:59:00 PM,03/23/2021 06:26:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566093,Theater Load in and Load Outs,08/06/2021 12:01:00 AM,08/08/2021 11:59:00 PM,03/23/2021 06:26:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566089,Theater Load in and Load Outs,06/07/2021 12:01:00 AM,06/21/2021 11:59:00 PM,03/23/2021 06:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566090,Theater Load in and Load Outs,06/22/2021 12:01:00 AM,07/06/2021 11:59:00 PM,03/23/2021 06:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566086,Theater Load in and Load Outs,06/04/2021 12:01:00 AM,06/06/2021 11:59:00 PM,03/23/2021 06:25:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566083,Theater Load in and Load Outs,04/20/2021 12:01:00 AM,05/04/2021 11:59:00 PM,03/23/2021 06:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566084,Theater Load in and Load Outs,05/05/2021 12:01:00 AM,05/19/2021 11:59:00 PM,03/23/2021 06:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566085,Theater Load in and Load Outs,05/20/2021 12:01:00 AM,06/03/2021 11:59:00 PM,03/23/2021 06:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566082,Theater Load in and Load Outs,04/05/2021 12:01:00 AM,04/19/2021 11:59:00 PM,03/23/2021 06:23:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE,Manhattan,7,20,Theater,Theater,United States of America,10023
+566067,Shooting Permit,03/30/2021 06:00:00 AM,03/30/2021 10:00:00 PM,03/23/2021 04:49:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+566065,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 10:00:00 PM,03/23/2021 04:46:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+566057,Shooting Permit,03/25/2021 11:30:00 AM,03/26/2021 01:00:00 AM,03/23/2021 04:35:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, MALBA DRIVE between CENTER DRIVE and SOUTH DRIVE, CENTER DRIVE between MALBA DRIVE and PARSONS BOULEVARD, SOUTH DRIVE between MALBA DRIVE and PARSONS BLVD, NORTH DRIVE between MALBA DRIVE and PARSONS BOULEVARD, 3RD AVENUE between WHITESTONE EXPY and 147TH STREET, MALBA DRIVE between NORTH DRIVE and CENTER DRIVE",Queens,"4, 5, 7","104, 109, 83",Television,Episodic series,United States of America,"11237, 11357, 11385"
+566047,Shooting Permit,03/30/2021 09:00:00 AM,03/30/2021 11:00:00 PM,03/23/2021 04:00:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 66 STREET and WEST 67 STREET, AMSTERDAM AVENUE between WEST 67 STREET and WEST 66 STREET, WEST 66 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 65 STREET and WEST 66 STREET, WEST 63 STREET between CENTRAL PARK WEST and BROADWAY, BROADWAY between WEST 63 STREET and WEST 61 STREET, WEST 62 STREET between COLUMBUS AVENUE and BROADWAY, WEST 62 STREET between COLUMBUS AVENUE and AMSTERDAM AVENUE, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 86 STREET and WEST 87 STREET, BROADWAY between WEST 85 STREET and WEST 86 STREET, BROADWAY between WEST 88 STREET and WEST 87 STREET, WEST 87 STREET between BROADWAY and WEST END AVENUE, AMSTERDAM AVENUE between WEST 88 STREET and WEST 86 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, BROADWAY between WEST 84 STREET and WEST 81 STREET, BROADWAY between WEST 89 STREET and WEST 91 STREET, BROADWAY between WEST 92 STREET and WEST 93 STREET, BROADWAY between WEST 94 STREET and WEST 96 STREET, BROADWAY between WEST 97 STREET and WEST 99 STREET, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 86 STREET and WEST 87 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10023, 10024, 10025"
+566046,Shooting Permit,03/25/2021 08:30:00 AM,03/25/2021 01:30:00 PM,03/23/2021 03:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",COLUMBUS AVENUE between WEST 86 STREET and WEST 88 STREET,Manhattan,"64, 7","22, 24",Television,Episodic series,United States of America,10024
+566038,Shooting Permit,03/24/2021 08:00:00 AM,03/24/2021 10:00:00 PM,03/23/2021 03:41:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+566037,Shooting Permit,03/26/2021 07:00:00 AM,03/26/2021 09:00:00 PM,03/23/2021 03:39:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566032,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 09:00:00 PM,03/23/2021 03:27:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPY and MELBOURNE AVE, 61 ROAD between REEVES AVENUE and 153 STREET, REEVES AVENUE between HORACE HARDING EXPRESSWAY and 153 STREET",Queens,8,107,Television,Episodic series,United States of America,11367
+566027,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 10:00:00 PM,03/23/2021 03:10:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566021,Shooting Permit,03/24/2021 07:00:00 AM,03/24/2021 10:00:00 PM,03/23/2021 02:45:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+566019,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 11:00:00 PM,03/23/2021 02:38:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between NEWELL STREET and MCGUINNESS BOULEVARD, MCGUINNESS BOULEVARD between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, NEWELL STREET between MESEROLE AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566006,Shooting Permit,03/26/2021 09:00:00 AM,03/27/2021 01:00:00 AM,03/23/2021 02:12:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+566003,Shooting Permit,03/25/2021 09:00:00 AM,03/25/2021 11:00:00 PM,03/23/2021 02:11:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565982,Shooting Permit,03/27/2021 07:00:00 AM,03/27/2021 07:00:00 PM,03/23/2021 01:21:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUMONT AVENUE between SNEDIKER AVENUE and VANSINDEREN AVENUE, VAN DYKE STREET between CONOVER STREET and FERRIS STREET",Brooklyn,"5, 6","75, 76",Commercial,Promo,United States of America,"11207, 11231"
+565966,Shooting Permit,03/26/2021 08:00:00 AM,03/26/2021 10:00:00 PM,03/23/2021 12:40:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+565960,Shooting Permit,03/31/2021 06:00:00 AM,03/31/2021 10:00:00 PM,03/23/2021 12:25:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565949,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 10:00:00 PM,03/23/2021 11:55:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","OAK POINT AVENUE between DUPONT STREET and TIFFANY STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,"1, 2","40, 41",Television,Episodic series,United States of America,"10454, 10474"
+565948,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 08:00:00 PM,03/23/2021 11:52:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 1 STREET between KENT AVENUE and WYTHE AVENUE, KENT AVENUE between NORTH 1 STREET and NORTH 6 STREET, WYTHE AVENUE between METROPOLITAN AVENUE and NORTH 5 STREET, METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 5 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 5 STREET between NORTH 4 PLACE and KENT AVENUE",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,11249
+565946,Rigging Permit,03/30/2021 06:00:00 AM,03/30/2021 07:00:00 PM,03/23/2021 11:45:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+565941,Shooting Permit,03/27/2021 10:00:00 AM,03/28/2021 01:00:00 AM,03/23/2021 11:27:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 45 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 44 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 44 STREET between FIFTH AVENUE and MADISON AVENUE, GREENWICH STREET between WEST HOUSTON STREET and CHRISTOPHER STREET, HUDSON STREET between CLARKSON STREET and ST LUKES PLACE, HUDSON STREET between ST LUKES PLACE and MORTON STREET, HUDSON STREET between MORTON STREET and GROVE STREET, BARROW STREET between HUDSON STREET and BEDFORD STREET, BEDFORD STREET between MORTON STREET and BARROW STREET, COMMERCE STREET between BEDFORD STREET and BARROW STREET",Manhattan,"2, 5","14, 18, 6",Film,Feature,United States of America,"10014, 10017, 10036"
+565935,Shooting Permit,03/26/2021 11:00:00 AM,03/26/2021 11:59:00 PM,03/23/2021 11:18:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPY and MELBOURNE AVE, 61 ROAD between REEVES AVENUE and 153 STREET, REEVES AVENUE between 153 STREET and HORACE HARDING EXPRESSWAY",Queens,8,107,Television,Episodic series,United States of America,11367
+565923,Shooting Permit,03/25/2021 10:30:00 AM,03/26/2021 01:30:00 AM,03/23/2021 10:28:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","LINDEN BOULEVARD between FLATBUSH AVENUE and CATON AVENUE, FLATBUSH AVENUE between LINDEN BOULEVARD and MARTENSE STREET, MARTENSE STREET between FLATBUSH AVENUE and BEDFORD AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+565895,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 11:00:00 PM,03/23/2021 09:09:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between 9 STREET and 11 STREET, 11 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between 11 STREET and 21 STREET, 13 STREET between 43 AVENUE and 44 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+565888,Shooting Permit,03/25/2021 10:00:00 AM,03/26/2021 03:00:00 AM,03/23/2021 08:32:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 30 STREET and 36 STREET, 33 STREET between 2 AVENUE and 3 AVENUE, 32 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between 33 STREET and 34 STREET, 9 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between 10 STREET and 8 STREET, 5 AVENUE between 10 STREET and 9 STREET, 5 AVENUE between 10 STREET and 11 STREET, 10 STREET between 4 AVENUE and 5 AVENUE, 10 STREET between 5 AVENUE and 6 AVENUE",Brooklyn,"6, 7","72, 78",Television,Episodic series,United States of America,"11215, 11232"
+565842,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 10:00:00 PM,03/22/2021 06:07:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","KISSENA BLVD between HORACE HARDING EXPY and MELBOURNE AVE, 61 ROAD between REEVES AVENUE and 153 STREET, REEVES AVENUE between HORACE HARDING EXPRESSWAY and 153 STREET",Queens,8,107,Television,Episodic series,United States of America,11367
+565823,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 09:00:00 PM,03/22/2021 04:25:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between WATER STREET and SOUTH STREET, OLD SLIP between WATER STREET and SOUTH STREET, SOUTH STREET between OLD SLIP and BROAD STREET, OLD SLIP between SOUTH STREET and FRONT STREET, MAIDEN LANE between PEARL STREET and WATER STREET, JOHN STREET between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, WATER STREET between MAIDEN LANE and WALL STREET, STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Manhattan,"1, 2","1, 108",Television,Cable-episodic,United States of America,"10004, 10005, 10038, 11101"
+565814,Shooting Permit,03/24/2021 06:30:00 AM,03/24/2021 11:00:00 PM,03/22/2021 03:51:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565809,Shooting Permit,03/24/2021 07:00:00 AM,03/24/2021 09:00:00 PM,03/22/2021 03:25:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 ROAD and 22 ROAD, 21 STREET between 22 ROAD and 23 ROAD, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 21 STREET and 19 STREET, 36 AVENUE between 13 STREET and 21 STREET, 14 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 13 STREET and 14 STREET, 12 STREET between 36 AVENUE and 37 AVENUE, 37 AVENUE between 12 STREET and 13 STREET, 13 STREET between 38 AVENUE and 37 AVENUE, 12 STREET between 38 AVENUE and 37 AVENUE, 14 STREET between 21 STREET and 37 AVENUE, 21 STREET between 14 STREET and 37 AVENUE, 21 STREET between 38 AVENUE and 14 STREET, 11 STREET between 40 AVENUE and 38 AVENUE, 40 AVENUE between 10 STREET and 11 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11105, 11106"
+565807,Shooting Permit,03/30/2021 08:00:00 AM,03/30/2021 11:00:00 PM,03/22/2021 03:21:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+565806,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 06:00:00 PM,03/22/2021 03:20:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between UNION AVENUE and LORIMER STREET, LORIMER STREET between METROPOLITAN AVENUE and SKILLMAN AVENUE",Brooklyn,1,"90, 94",Television,Cable-episodic,United States of America,11211
+565801,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 11:00:00 PM,03/22/2021 03:12:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565799,Shooting Permit,03/29/2021 08:00:00 AM,03/29/2021 11:00:00 PM,03/22/2021 03:05:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+565797,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 09:00:00 PM,03/22/2021 03:03:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 126 STREET between ROCKAWAY BEACH BOULEVARD and NEWPORT AVENUE, ROCKAWAY BEACH BOULEVARD between BEACH 126 STREET and BEACH 127 STREET",Queens,14,100,WEB,Not Applicable,United States of America,11694
+565793,Shooting Permit,03/28/2021 07:00:00 AM,03/28/2021 10:00:00 PM,03/22/2021 02:58:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between FREEMAN STREET and GREEN STREET, PROVOST STREET between DUPONT STREET and FREEMAN STREET, PROVOST STREET between GREEN STREET and JAVA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+565785,Shooting Permit,03/28/2021 07:00:00 AM,03/28/2021 07:00:00 PM,03/22/2021 02:29:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","DUMONT AVENUE between SNEDIKER AVENUE and VANSINDEREN AVENUE, VAN DYKE STREET between CONOVER STREET and FERRIS STREET",Brooklyn,"5, 6","75, 76",Commercial,Promo,United States of America,"11207, 11231"
+565780,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 08:00:00 PM,03/22/2021 02:13:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 40th Ave and QUEENSBOROUGH BRIDGE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 13 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 ROAD, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between 9 STREET and VERNON BOULEVARD",Queens,2,"108, 114",Television,Cable-episodic,United States of America,11101
+565772,Shooting Permit,03/25/2021 04:00:00 PM,03/26/2021 12:00:00 AM,03/22/2021 02:02:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between BOWERY and LAFAYETTE STREET, LAFAYETTE STREET between BOND STREET and JONES ALLEY, EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+565760,Shooting Permit,03/26/2021 08:00:00 AM,03/26/2021 08:00:00 PM,03/22/2021 01:31:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","VAN BUREN STREET between MARCUS GARVEY BOULEVARD and THROOP AVENUE, TAAFFE PLACE between DEKALB AVENUE and WILLOUGHBY AVENUE",Brooklyn,3,79,Still Photography,Not Applicable,United States of America,"11205, 11221"
+565748,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 11:00:00 PM,03/22/2021 12:46:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 72 STREET and EAST 74 STREET, YORK AVENUE between EAST 79 STREET and EAST 84 STREET, EAST 77 STREET between YORK AVENUE and CHEROKEE PLACE, EAST 78 STREET between YORK AVENUE and FDR DRIVE, CHEROKEE PLACE between EAST 77 STREET and EAST 78 STREET, YORK AVENUE between EAST 77 STREET and EAST 78 STREET, YORK AVENUE between EAST 77 STREET and EAST 74 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10021, 10023, 10028, 10075, 10162"
+565724,Shooting Permit,03/24/2021 08:00:00 AM,03/25/2021 01:00:00 AM,03/22/2021 11:15:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHN STREET between PEARL STREET and FRONT STREET, WATER STREET between JOHN STREET and FLETCHER STREET, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between MAIDEN LANE and WALL STREET, LIBERTY STREET between NASSAU STREET and TRINITY PLACE, LIBERTY STREET between WILLIAM STREET and GOLD STREET, MAIDEN LANE between WILLIAM STREET and GOLD STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, NASSAU STREET between LIBERTY STREET and CEDAR STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10005, 10006, 10038, 10045"
+565723,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 09:00:00 PM,03/22/2021 11:12:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between MT CARMEL PLACE and 1 AVENUE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 25 STREET between 1 AVENUE and 3 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,13,Television,Episodic series,United States of America,"10010, 10016"
+565553,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 10:00:00 PM,03/19/2021 06:26:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 36 STREET between 8 AVENUE and 6 AVENUE, WEST 37 STREET between 5 AVENUE and 6 AVENUE, WEST 35 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,14,Television,Episodic series,United States of America,"10001, 10018"
+565545,Shooting Permit,03/25/2021 09:00:00 AM,03/26/2021 12:00:00 AM,03/19/2021 05:42:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, BROADWAY between WAVERLY PLACE and EAST 10 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between BROADWAY and COOPER SQUARE, LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10012"
+565539,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 11:00:00 PM,03/19/2021 05:27:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","ERICSSON PL between VARICK STREET and W BROADWAY, AVENUE OF THE AMERICAS between LISPENARD STREET and WHITE STREET, BEACH STREET between VARICK STREET and WEST BROADWAY, WALKER STREET between 6 AVENUE and CHURCH STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,10013
+565534,Shooting Permit,03/26/2021 08:00:00 AM,03/27/2021 01:00:00 AM,03/19/2021 04:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between WEST 12 STREET and GANSEVOORT STREET, JANE STREET between GREENWICH STREET and HUDSON STREET, 8 AVENUE between JANE STREET and WEST 12 STREET, 8 AVENUE between WEST 12 STREET and BLEECKER STREET, WEST 12 STREET between 8 AVENUE and GREENWICH STREET, HUDSON STREET between WEST 12 STREET and BETHUNE STREET, GREENWICH STREET between WEST 12 STREET and BETHUNE STREET, BETHUNE STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between BETHUNE STREET and WEST 11 STREET, BANK STREET between WASHINGTON STREET and GREENWICH STREET, W 14 ST between 9TH AVE and WASHINGTON ST, WEST 14 STREET between WASHINGTON STREET and HIGH LINE, WASHINGTON STREET between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 13 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,10014
+565522,Shooting Permit,03/23/2021 07:00:00 PM,03/24/2021 03:00:00 AM,03/19/2021 04:05:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+565519,Shooting Permit,03/24/2021 09:00:00 AM,03/25/2021 01:00:00 AM,03/19/2021 03:54:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTELYOU ROAD between FLATBUSH AVENUE and EAST 22 STREET, BEVERLY ROAD between FLATBUSH AVENUE and LOTT STREET, EAST 22 STREET between BEVERLY ROAD and CORTELYOU ROAD",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+565508,Shooting Permit,03/24/2021 06:00:00 AM,03/25/2021 02:00:00 AM,03/19/2021 02:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MEEKER AVE between UNION AVENUE and LORIMER ST, FROST STREET between UNION AVENUE and LORIMER STREET, LORIMER STREET between BAYARD STREET and DRIGGS AVENUE, WITHERS STREET between UNION AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+565506,Shooting Permit,03/26/2021 09:00:00 AM,03/27/2021 02:00:00 AM,03/19/2021 02:43:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between MARCY AVENUE and TOMPKINS AVENUE, TOMPKINS AVENUE between LAFAYETTE AVENUE and GREENE AVENUE, CLIFTON PLACE between MARCY AVENUE and NOSTRAND AVENUE, GREENE AVENUE between MARCY AVENUE and NOSTRAND AVENUE, DEKALB AVENUE between MARCY AVENUE and NOSTRAND AVENUE, NOSTRAND AVENUE between DEKALB AVENUE and PULASKI STREET, PULASKI STREET between NOSTRAND AVENUE and MARCY AVENUE",Brooklyn,3,79,Television,Cable-episodic,United States of America,"11205, 11206, 11216"
+565488,Shooting Permit,03/25/2021 08:00:00 AM,03/26/2021 12:00:00 AM,03/19/2021 01:51:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+565481,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 09:00:00 PM,03/19/2021 01:36:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+565480,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 10:00:00 PM,03/19/2021 01:35:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+565477,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 10:00:00 PM,03/19/2021 01:22:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT ST between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565471,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 10:00:00 PM,03/19/2021 01:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+565457,Shooting Permit,03/24/2021 10:00:00 AM,03/24/2021 11:59:00 PM,03/19/2021 12:04:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 116TH ST between FREDERICK DOUGLAS BOULEVARD and 5 AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 120 STREET, WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,28,Television,Episodic series,United States of America,10026
+565446,Shooting Permit,03/26/2021 07:00:00 AM,03/26/2021 07:00:00 PM,03/19/2021 10:56:34 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+565445,Rigging Permit,03/25/2021 07:00:00 AM,03/25/2021 07:00:00 PM,03/19/2021 10:54:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+565444,Rigging Permit,03/24/2021 07:00:00 AM,03/24/2021 07:00:00 PM,03/19/2021 10:52:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+565442,Rigging Permit,03/23/2021 07:00:00 AM,03/23/2021 07:00:00 PM,03/19/2021 10:49:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+565435,Shooting Permit,03/24/2021 08:00:00 AM,03/24/2021 10:00:00 PM,03/19/2021 09:51:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, BROADWAY between WAVERLY PLACE and EAST 10 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 4 STREET between BROADWAY and COOPER SQUARE, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET, LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10012"
+565427,Rigging Permit,03/22/2021 07:00:00 AM,03/26/2021 07:00:00 PM,03/19/2021 09:21:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE,Bronx,1,40,Television,Episodic series,United States of America,10454
+565425,Shooting Permit,03/24/2021 09:00:00 AM,03/24/2021 11:59:00 PM,03/19/2021 09:15:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 71 STREET and EAST 73 STREET, 3 AVENUE between EAST 69 STREET and EAST 72 STREET, EAST 71 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 65 STREET and EAST 68 STREET, EAST 66 STREET between 2 AVENUE and 3 AVENUE, EAST 70 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+565423,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 11:00:00 PM,03/19/2021 08:56:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",WASHINGTON AVENUE between PRESIDENT STREET and SULLIVAN PLACE,Brooklyn,"55, 9","71, 78",Television,Episodic series,United States of America,"11225, 11238"
+565419,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 09:00:00 PM,03/19/2021 06:46:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 29 STREET and WEST 26 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,10001
+565400,Shooting Permit,03/25/2021 07:00:00 AM,03/25/2021 08:00:00 PM,03/18/2021 08:22:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 STREET between SKILLMAN AVENUE and 39 AVENUE, SKILLMAN AVENUE between 48 STREET and 46 STREET, 47 STREET between SKILLMAN AVENUE and 43 AVENUE, 46 STREET between SKILLMAN AVENUE and 43 AVENUE, 44 STREET between SKILLMAN AVENUE and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and BARNETT AVENUE, 43 STREET between SKILLMAN AVENUE and 43 AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11104
+565389,Shooting Permit,03/24/2021 09:00:00 AM,03/25/2021 02:00:00 AM,03/18/2021 07:06:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565378,Shooting Permit,03/24/2021 08:00:00 AM,03/25/2021 01:00:00 AM,03/18/2021 05:51:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+565358,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 11:00:00 PM,03/18/2021 04:41:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, HORACE HARDING EXPRESSWAY between 155TH STREET and 156TH STREET, 156th Street between 59 AVENUE and Horace Harding Expressway, HORACE HARDING EXPRESSWAY between 156TH STREET and 157TH STREET, 157TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, HORACE HARDING EXPRESSWAY between 157TH STREET and PARSONS BLVD, HORACE HARDING EXPRESSWAY between PARSONS BLVD and 159TH STREET, HORACE HARDING EXPRESSWAY between 159TH STREET and 160TH STREET, 56 ROAD between 148 STREET and 150 STREET, 150 STREET between 56 ROAD and BOOTH MEMORIAL AVENUE, BOOTH MEMORIAL AVENUE between 150 STREET and 153 STREET",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365"
+565348,Shooting Permit,03/24/2021 06:00:00 AM,03/24/2021 11:00:00 PM,03/18/2021 04:22:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+565346,Shooting Permit,03/26/2021 02:00:00 PM,03/27/2021 01:00:00 AM,03/18/2021 04:17:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between KENMARE STREET and GRAND STREET, CROSBY STREET between BROOME STREET and SPRING STREET, BROOME STREET between CROSBY STREET and MULBERRY STREET, BOWERY between GRAND STREET and BROOME STREET, CENTRE STREET between HOWARD STREET and BROOME STREET, CENTRE MARKET PLACE between BROOME STREET and GRAND STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+565345,Shooting Permit,03/25/2021 09:30:00 AM,03/25/2021 09:30:00 PM,03/18/2021 04:14:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between KENMARE STREET and GRAND STREET, CROSBY STREET between BROOME STREET and SPRING STREET, BROOME STREET between CROSBY STREET and MULBERRY STREET, BOWERY between GRAND STREET and BROOME STREET, CENTRE STREET between HOWARD STREET and BROOME STREET, CENTRE MARKET PLACE between BROOME STREET and GRAND STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+565329,Shooting Permit,03/29/2021 06:00:00 AM,03/29/2021 10:00:00 PM,03/18/2021 03:22:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565320,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 10:00:00 PM,03/18/2021 02:57:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+565318,Shooting Permit,03/25/2021 08:00:00 AM,03/25/2021 10:00:00 PM,03/18/2021 02:53:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVE. between 101ST ST and 105TH ST., EASTERN PARKWAY between ROCHESTER AVENUE and BUFFALO AVENUE, BUFFALO AVENUE between EASTERN PARKWAY and EAST NEW YORK AVENUE",Brooklyn,"18, 8","69, 77",Television,Cable-episodic,United States of America,"11213, 11236"
+565317,Shooting Permit,03/22/2021 06:30:00 AM,03/22/2021 10:00:00 PM,03/18/2021 02:53:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565295,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 10:00:00 PM,03/18/2021 02:21:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565281,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 10:00:00 PM,03/18/2021 01:45:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565258,Shooting Permit,03/21/2021 12:00:00 PM,03/22/2021 05:00:00 AM,03/18/2021 12:10:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",JOHNSON AVENUE between GARDNER AVENUE and SCOTT AVENUE,Brooklyn,1,90,Film,Short,United States of America,11237
+565247,Shooting Permit,03/19/2021 11:00:00 AM,03/19/2021 11:00:00 PM,03/18/2021 11:35:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 10 AVENUE and 11 AVENUE, WEST 27 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Daytime soap,United States of America,"10001, 10011"
+565244,Shooting Permit,03/24/2021 10:00:00 AM,03/25/2021 01:00:00 AM,03/18/2021 11:29:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+565240,Shooting Permit,03/23/2021 09:00:00 AM,03/23/2021 11:59:00 PM,03/18/2021 11:22:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+565238,Shooting Permit,03/22/2021 09:00:00 AM,03/22/2021 11:59:00 PM,03/18/2021 11:16:26 AM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+565220,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 09:00:00 PM,03/18/2021 10:11:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between GRAND STREET and HOWARD STREET, WHITEHALL STREET between WATER STREET and PEARL STREET, PEARL STREET between STATE STREET and MOORE STREET, HOWARD STREET between CROSBY STREET and BROADWAY",Manhattan,"1, 2","1, 5",Commercial,Commercial,United States of America,"10004, 10013"
+565217,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 11:00:00 PM,03/18/2021 09:01:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 123 STREET between MALCOLM X BOULEVARD and MT MORRIS PARK WEST, MT MORRIS PARK WEST between WEST 124 STREET and WEST 120 STREET",Manhattan,"10, 11","25, 28",Commercial,Commercial,United States of America,10027
+565215,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 10:00:00 PM,03/18/2021 08:57:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 101 STREET and WEST 105 STREET, WEST 103 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, WEST 101 STREET between CENTRAL PARK WEST and MANHATTAN AVENUE, 5 AVENUE between EAST 72 STREET and EAST 73 STREET, EAST 72 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 7, 8","19, 22, 24",Television,Episodic series,United States of America,"10021, 10023, 10025"
+565207,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 07:00:00 PM,03/18/2021 08:12:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",BRIGHTWATER COURT between BRIGHTON 1 PLACE and BRIGHTON 2 STREET,Brooklyn,"13, 15","60, 61",Still Photography,Not Applicable,United States of America,"11224, 11235"
+565185,Shooting Permit,04/09/2021 06:00:00 AM,04/09/2021 11:59:00 PM,03/17/2021 08:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 3 AVENUE and NEVINS STREET,Brooklyn,2,84,Television,Special/Awards Show,United States of America,11217
+565186,Shooting Permit,04/10/2021 06:00:00 AM,04/10/2021 11:59:00 PM,03/17/2021 08:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between 3 AVENUE and NEVINS STREET,Brooklyn,2,84,Television,Special/Awards Show,United States of America,11217
+565181,Shooting Permit,03/23/2021 08:00:00 AM,03/23/2021 11:00:00 PM,03/17/2021 08:03:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLARENDON ROAD between FLATBUSH AVENUE and EAST 23 STREET, FLATBUSH AVENUE between VANDERVEER PLACE and DITMAS AVENUE, CORTELYOU ROAD between FLATBUSH AVENUE and EAST 19 STREET, EAST 21 STREET between REGENT PLACE and BEVERLY ROAD, FLATBUSH AVENUE between BEVERLY ROAD and TILDEN AVENUE, REGENT PLACE between EAST 21 STREET and FLATBUSH AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+565180,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 11:00:00 PM,03/17/2021 07:26:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MEEKER ST between NORTH HENRY STREET and MONITOR STREET, MEEKER STREET between NORTH HENRY STREET and RUSSELL STREET, NORTH HENRY STREET between ENGERT AVENUE and MEEKER STREET, ENGERT AVENUE between NORTH HENRY STREET and MONITOR STREET, MONITOR STREET between MEEKER STREET and ENGERT AVENUE, MONITOR STREET between DRIGGS AVENUE and ENGERT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565176,Shooting Permit,03/24/2021 07:00:00 AM,03/24/2021 08:00:00 PM,03/17/2021 06:38:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOYT STREET between BALTIC STREET and DOUGLASS STREET, HOYT STREET between DOUGLASS STREET and DE GRAW STREET, HOYT STREET between DE GRAW STREET and SACKETT STREET, BUTLER STREET between HOYT STREET and SMITH STREET, DOUGLASS STREET between HOYT STREET and SMITH STREET, DOUGLASS STREET between HOYT STREET and BOND STREET, DOUGLASS STREET between NEVINS STREET and 3 AVENUE, DE GRAW STREET between NEVINS STREET and 3 AVENUE",Brooklyn,6,"76, 78",Television,Cable-episodic,United States of America,"11217, 11231"
+565169,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 11:00:00 PM,03/17/2021 05:43:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+565157,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 09:00:00 PM,03/17/2021 04:46:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+565131,Shooting Permit,03/24/2021 08:00:00 AM,03/24/2021 08:00:00 PM,03/17/2021 03:38:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 40 AVENUE and 41 AVENUE, TIBBETT AVENUE between WEST 230 STREET and WEST 231 STREET, 1524 Mayflower Avenue between Wellman Avenue and Zulette Avenue, MIDDLETOWN ROAD between MULFORD AVENUE and WESTCHESTER AVENUE, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE",Queens,"1, 10, 2, 8, 9","114, 43, 45, 50",Television,Not Applicable,United States of America,"10461, 10463, 10473, 11101"
+565111,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 11:00:00 PM,03/17/2021 02:57:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565107,Shooting Permit,03/24/2021 10:00:00 AM,03/25/2021 12:00:00 AM,03/17/2021 02:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST SIDE HIGHWAY between WEST 15 STREET and WEST 14 STREET, WEST 15 STREET between WEST SIDE HIGHWAY and 10 AVENUE, WEST 15 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 16 STREET and WEST 15 STREET, 10 AVENUE between WEST 15 STREET and WEST 14 STREET, WEST SIDE HIGHWAY between WEST 20 STREET and WEST 21 STREET, WEST 17 STREET between 10 AVENUE and 9 AVENUE, WEST 18 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 18 STREET and WEST 19 STREET, EAST 55 STREET between 3 AVENUE and 1 AVENUE, 1 AVENUE between EAST 56 STREET and EAST 55 STREET, EAST 54 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 56 STREET and EAST 51 STREET, EAST 55 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 57 STREET and EAST 53 STREET",Manhattan,"4, 5, 6","10, 17, 18",Television,Cable-episodic,United States of America,"10011, 10022"
+565106,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 09:00:00 PM,03/17/2021 02:51:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 29 STREET between 5 AVENUE and MADISON AVENUE, WEST 30 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between EAST 29 STREET and EAST 30 STREET, 5 AVENUE between EAST 27 STREET and EAST 28 STREET, MADISON AVENUE between EAST 27 STREET and EAST 29 STREET, EAST 28 STREET between 5 AVENUE and MADISON AVENUE, 8 AVENUE between WEST 26 STREET and WEST 29 STREET, WEST 28 STREET between 8 AVENUE and 9 AVENUE, WEST 28 STREET between 7 AVENUE and 8 AVENUE, EAST 27 STREET between PARK AVENUE SOUTH and MADISON AVENUE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 28 STREET",Manhattan,"4, 5","10, 13, 14",Television,Cable-episodic,United States of America,"10001, 10010, 10016"
+565095,Shooting Permit,03/19/2021 06:00:00 AM,03/19/2021 05:00:00 PM,03/17/2021 02:17:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 114 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 110 STREET and WEST 111 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and WEST 112 STREET, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 113 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 110 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,"10, 64","22, 28",Television,Episodic series,United States of America,"10025, 10026"
+565092,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 10:00:00 PM,03/17/2021 02:13:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565090,Shooting Permit,03/24/2021 07:00:00 AM,03/24/2021 09:00:00 PM,03/17/2021 02:09:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565089,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 10:00:00 PM,03/17/2021 02:07:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565085,Shooting Permit,03/29/2021 07:00:00 AM,03/29/2021 09:00:00 PM,03/17/2021 02:02:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565084,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 10:00:00 PM,03/17/2021 02:01:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565081,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 09:00:00 PM,03/17/2021 01:58:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565080,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 10:00:00 AM,03/17/2021 01:57:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565078,Shooting Permit,03/23/2021 09:00:00 AM,03/24/2021 12:00:00 AM,03/17/2021 01:56:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WAVERLY PLACE and EAST 10 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET, EAST 9 STREET between BROADWAY and LAFAYETTE STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET, EAST 4 STREET between BROADWAY and COOPER SQUARE, COOPER SQUARE between EAST 4 STREET and EAST 5 STREET",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,"10003, 10012"
+565075,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 09:00:00 PM,03/17/2021 01:53:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565072,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 08:00:00 PM,03/17/2021 01:49:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between ERASMUS STREET and TILDEN AVENUE, WOODS PLACE between ERASMUS STREET and SNYDER AVENUE, SNYDER AVENUE between BEDFORD AVENUE and WOODS PLACE, ERASMUS STREET between WOODS PLACE and VERONICA PLACE",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+565071,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 10:00:00 PM,03/17/2021 01:48:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565065,Shooting Permit,03/19/2021 11:00:00 AM,03/20/2021 02:00:00 AM,03/17/2021 01:27:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 121 STREET, WEST 119 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, W 116 ST between ST NICHOLAS AVENUE and FIFTH AVENUE, WEST 118 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, MALCOLM X BOULEVARD between WEST 119 STREET and WEST 120 STREET",Manhattan,10,28,Television,Episodic series,United States of America,"10026, 10027"
+565063,Shooting Permit,03/24/2021 06:00:00 AM,03/24/2021 10:00:00 PM,03/17/2021 01:24:14 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+565061,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 08:00:00 PM,03/17/2021 01:19:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 10 STREET between SURF AVENUE and RIEGELMANN BOARDWALK, SURF AVENUE between WEST 12 STREET and WEST 5 STREET, WEST EIGHTH STREET between SURF AVENUE and SHEEPSHEAD BAY ROAD, WEST 5 STREET between SEABREEZE AVENUE and SURF AVENUE",Brooklyn,13,60,Television,Cable-episodic,United States of America,11224
+565060,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 11:00:00 PM,03/17/2021 01:17:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 11 STREET between 43 AVENUE and 43 ROAD, 43 AVENUE between 9 STREET and 11 STREET, 43 AVENUE between VERNON BOULEVARD and 9 STREET, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+565058,Shooting Permit,03/19/2021 06:00:00 AM,03/24/2021 10:00:00 PM,03/17/2021 01:06:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565055,Shooting Permit,03/18/2021 06:00:00 AM,03/18/2021 10:00:00 PM,03/17/2021 12:58:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+565047,Shooting Permit,03/20/2021 08:00:00 AM,03/20/2021 11:30:00 AM,03/17/2021 12:19:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHAMBERS STREET between BROADWAY and ELK STREET,Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+565046,DCAS Prep/Shoot/Wrap Permit,03/20/2021 10:00:00 AM,03/20/2021 05:00:00 PM,03/17/2021 12:16:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRE STREET between WALKER STREET and WORTH STREET, LEONARD STREET between LAFAYETTE STREET and CENTRE STREET, LAFAYETTE STREET between DUANE STREET and READE STREET, WORTH STREET between CENTRE STREET and BAXTER STREET, ST JAMES PLACE between OLIVER STREET and JAMES STREET",Manhattan,"1, 3",5,Television,Episodic series,United States of America,"10007, 10013, 10038"
+565008,Shooting Permit,03/24/2021 10:00:00 AM,03/24/2021 04:00:00 PM,03/17/2021 10:43:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",CADMAN PLAZA EAST between PROSPECT STREET and RED CROSS PLACE,Manhattan,"1, 2, 3","1, 5, 84",Still Photography,Not Applicable,United States of America,"10002, 10038, 11201"
+565003,Shooting Permit,03/18/2021 10:00:00 AM,03/19/2021 03:00:00 AM,03/17/2021 10:31:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between GREENPOINT AVE and N HENRY STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+565001,Shooting Permit,03/22/2021 08:00:00 AM,03/22/2021 06:00:00 PM,03/17/2021 10:29:27 AM,"Mayor's Office of Film, Theatre & Broadcasting",CADMAN PLAZA EAST between PROSPECT STREET and RED CROSS PLACE,Manhattan,"1, 2, 3","1, 5, 84",Still Photography,Not Applicable,United States of America,"10002, 10038, 11201"
+564985,Shooting Permit,03/19/2021 06:00:00 AM,03/19/2021 10:00:00 PM,03/17/2021 08:45:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 6 STREET between 2 AVENUE and COOPER SQUARE, COOPER SQUARE between EAST 5 STREET and EAST 6 STREET, TARAS SHEVCHENKO PLACE between EAST 6 STREET and EAST 7 STREET, COOPER SQUARE between EAST 6 STREET and EAST 7 STREET, LAFAYETTE STREET between GREAT JONES STREET and BLEECKER STREET, BOND STREET between LAFAYETTE STREET and BOWERY, 2 AVENUE between ST MARKS PLACE and EAST 9 STREET, EAST 9 STREET between 2 AVENUE and STUYVESANT STREET, EAST 9 STREET between 2 AVENUE and 1 AVENUE",Manhattan,"2, 3",9,Television,Episodic series,United States of America,"10003, 10012"
+564938,Shooting Permit,03/19/2021 11:59:00 AM,03/20/2021 05:00:00 AM,03/16/2021 06:00:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROAD STREET between SOUTH STREET and WATER STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,10004
+564936,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 09:00:00 PM,03/16/2021 05:47:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 49 AVENUE and 47 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+564914,Shooting Permit,03/19/2021 11:00:00 AM,03/19/2021 09:30:00 PM,03/16/2021 04:09:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 9 AVENUE and 10 AVENUE, WEST 25 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10001, 10011"
+564894,Shooting Permit,03/23/2021 06:00:00 AM,03/23/2021 09:00:00 PM,03/16/2021 03:11:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","MURRAY HULBERT AVENUE between VICTORY BOULEVARD and HANNAH STREET, MURRAY HULBERT between HANNAH STREET and WATER STREET",Staten Island,1,120,Television,Episodic series,United States of America,10301
+564893,Shooting Permit,03/22/2021 05:30:00 AM,03/22/2021 09:00:00 PM,03/16/2021 03:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MURRAY HULBERT AVENUE between VICTORY BOULEVARD and HANNAH STREET, MURRAY HULBERT AVENUE between HANNAH STREET and WATER STREET",Staten Island,1,120,Television,Episodic series,United States of America,10301
+564871,Shooting Permit,03/19/2021 09:00:00 AM,03/19/2021 11:00:00 PM,03/16/2021 01:57:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between 1 AVENUE and MOUNT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 25 STREET between 1 AVENUE and 3 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE",Manhattan,6,13,Television,Episodic series,United States of America,"10010, 10016"
+564868,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 10:00:00 PM,03/16/2021 01:42:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564862,Shooting Permit,03/19/2021 02:00:00 PM,03/20/2021 04:00:00 AM,03/16/2021 01:28:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+564861,Shooting Permit,03/18/2021 01:00:00 PM,03/19/2021 03:00:00 AM,03/16/2021 01:21:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+564860,Shooting Permit,03/19/2021 05:00:00 PM,03/20/2021 07:00:00 AM,03/16/2021 01:20:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDERBILT AVENUE between BAY STREET and TOMPKINS AVENUE,Staten Island,1,120,Television,Cable-episodic,United States of America,10304
+564859,Shooting Permit,03/19/2021 08:00:00 AM,03/19/2021 11:00:00 PM,03/16/2021 01:19:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564858,Shooting Permit,03/18/2021 08:00:00 AM,03/18/2021 11:00:00 PM,03/16/2021 01:19:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564848,Shooting Permit,03/18/2021 06:00:00 AM,03/18/2021 10:00:00 PM,03/16/2021 12:53:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116TH ST between FREDERICK DOUGLASS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, W 116 ST between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, CENTRAL PARK NORTH between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDERICK DOUGLASS BOULEVARD, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between CENTRAL PARK NORTH and WEST 111 STREET, ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 111 STREET, W 110TH ST between FREDERICK DOUGLASS BLVD. and ADAM CLAYTON POWELL JR. BLVD.",Manhattan,"10, 64","22, 28",Television,Episodic series,United States of America,"10023, 10024, 10025, 10026"
+564846,Shooting Permit,03/17/2021 12:00:00 PM,03/18/2021 02:00:00 AM,03/16/2021 12:49:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+564845,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 11:00:00 PM,03/16/2021 12:48:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564823,Shooting Permit,03/18/2021 07:00:00 AM,03/18/2021 10:00:00 PM,03/16/2021 11:50:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","PUTNAM AVENUE between IRVING AVENUE and KNICKERBOCKER AVENUE, KNICKERBOCKER AVENUE between WOODBINE STREET and PUTNAM AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11221, 11237, 11385"
+564813,Shooting Permit,03/22/2021 09:00:00 AM,03/23/2021 01:00:00 AM,03/16/2021 11:21:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, 24 STREET between 43 AVENUE and 44 ROAD, 44 ROAD between 24 STREET and CRESCENT STREET, 44 ROAD between 23 STREET and 24 STREET, HUNTER STREET between 43 AVENUE and 44 DRIVE, 44 DRIVE between JACKSON AVENUE and HUNTER STREET, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, 23 STREET between 44 AVENUE and 44 ROAD, SKILLMAN AVENUE between THOMSON AVENUE and QUEENS BOULEVARD",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+564804,Shooting Permit,03/18/2021 06:30:00 AM,03/18/2021 09:30:00 PM,03/16/2021 10:36:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 17 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE, EAST 19 STREET between DORCHESTER ROAD and CORTELYOU ROAD, DORCHESTER ROAD between EAST 17 STREET and EAST 19 STREET, DORCHESTER ROAD between FLATBUSH AVENUE and EAST 21 STREET, DITMAS AVENUE between FLATBUSH AVENUE and EAST 22 STREET, FLATBUSH AVENUE between DORCHESTER ROAD and NEWKIRK AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,11226
+564790,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 10:00:00 PM,03/16/2021 09:59:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+564787,Shooting Permit,03/19/2021 04:00:00 PM,03/20/2021 07:00:00 AM,03/16/2021 09:27:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+564764,Shooting Permit,03/19/2021 01:00:00 PM,03/20/2021 03:00:00 AM,03/15/2021 10:10:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, PATTERSON AVENUE between ST LAWRENCE AVENUE and THERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, SOUNDVIEW AVENUE between RANDALL AVENUE and LACOMBE AVENUE, Soundview Ave between Leland Ave and Underhill Ave, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+564744,Shooting Permit,03/17/2021 07:00:00 PM,03/18/2021 03:00:00 AM,03/15/2021 06:50:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+564743,Shooting Permit,03/17/2021 02:00:00 PM,03/18/2021 04:00:00 AM,03/15/2021 06:47:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 121 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, LENOX AVENUE between WEST 124 STREET and WEST 125 STREET, WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE",Manhattan,10,"28, 32",Television,Cable-episodic,United States of America,"10026, 10027, 10030"
+564742,Shooting Permit,03/19/2021 04:00:00 PM,03/20/2021 05:00:00 AM,03/15/2021 06:41:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEVERLY ROAD between FLATBUSH AVENUE and LOTT STREET, EAST 22 STREET between BEVERLY ROAD and CLARENDON ROAD, CORTELYOU ROAD between FLATBUSH AVENUE and EAST 22 STREET",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+564740,Shooting Permit,03/24/2021 06:00:00 AM,03/24/2021 11:00:00 PM,03/15/2021 06:27:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 123 STREET between MT MORRIS PARK WEST and MALCOLM X BOULEVARD, MT MORRIS PARK WEST between WEST 124 STREET and WEST 120 STREET",Manhattan,"10, 11","25, 28",Commercial,Commercial,United States of America,10027
+564741,Shooting Permit,03/25/2021 06:00:00 AM,03/25/2021 11:00:00 PM,03/15/2021 06:27:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MT MORRIS PARK WEST between WEST 124 STREET and WEST 120 STREET, WEST 121 STREET between MT MORRIS PARK WEST and MALCOLM X BOULEVARD",Manhattan,"10, 11","25, 28",Commercial,Commercial,United States of America,10027
+564738,Shooting Permit,03/26/2021 06:00:00 AM,03/26/2021 11:00:00 PM,03/15/2021 06:26:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and 7 AVENUE, WEST 24 STREET between 7 AVENUE and 8 AVENUE",Manhattan,4,"10, 13",Commercial,Commercial,United States of America,10011
+564739,Shooting Permit,03/27/2021 06:00:00 AM,03/27/2021 11:00:00 PM,03/15/2021 06:26:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 6 AVENUE and 7 AVENUE, WEST 24 STREET between 7 AVENUE and 8 AVENUE",Manhattan,4,"10, 13",Commercial,Commercial,United States of America,10011
+564724,Shooting Permit,03/19/2021 09:00:00 AM,03/20/2021 01:00:00 AM,03/15/2021 05:16:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","WASHINGTON AVENUE between FLUSHING AVENUE and PARK AVENUE, PARK AVENUE between WAVERLY AVENUE and HALL STREET, HALL STREET between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,88,Television,Episodic series,United States of America,11205
+564723,Shooting Permit,03/19/2021 02:30:00 PM,03/20/2021 04:00:00 AM,03/15/2021 05:15:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 22 ROAD and 23 ROAD, 21 STREET between 22 ROAD and 23 ROAD, 21 STREET between DITMARS BOULEVARD and 22 ROAD, 22 ROAD between 21 STREET and 19 STREET, 22 DRIVE between 19 STREET and 21 STREET, 22 ROAD between 21 STREET and 23 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+564711,Shooting Permit,03/18/2021 07:00:00 AM,03/18/2021 08:00:00 PM,03/15/2021 04:26:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+564706,Shooting Permit,03/20/2021 07:00:00 AM,03/20/2021 09:00:00 PM,03/15/2021 04:18:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,"14, 18",Television,Daytime soap,United States of America,10036
+564700,Shooting Permit,03/18/2021 06:00:00 AM,03/18/2021 10:00:00 PM,03/15/2021 04:02:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between BOWERY and CHRYSTIE STREET, KENMARE STREET between BOWERY and ELIZABETH STREET, BOWERY between STANTON STREET and GRAND STREET, BOWERY between EAST HOUSTON STREET and STANTON STREET, EAST HOUSTON STREET between BOWERY and 2 AVENUE, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, STANTON STREET between BOWERY and CHRYSTIE STREET, BROOME STREET between ELIZABETH STREET and BOWERY, ELIZABETH STREET between BROOME STREET and GRAND STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012, 10013"
+564679,Shooting Permit,03/18/2021 12:00:00 PM,03/18/2021 11:59:00 PM,03/15/2021 02:46:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 3 AVENUE and 2 AVENUE, EAST 25 STREET between 2 AVENUE and 1 AVENUE, EAST 28 STREET between 3 AVENUE and 2 AVENUE, EAST 29 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 29 STREET and EAST 30 STREET, EAST 30 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 30 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 31 STREET and EAST 32 STREET, EAST 32 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 32 STREET between 3 AVENUE and 2 AVENUE, WEST 46 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"5, 6","13, 17, 18",Television,Episodic series,United States of America,"10010, 10016, 10036"
+564672,Shooting Permit,03/19/2021 01:30:00 PM,03/20/2021 03:00:00 AM,03/15/2021 02:22:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 12 STREET and EAST 11 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, BROADWAY between EAST 8 STREET and EAST 10 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+564653,Shooting Permit,03/22/2021 06:00:00 AM,03/22/2021 10:00:00 PM,03/15/2021 12:47:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+564643,Shooting Permit,03/18/2021 11:00:00 AM,03/19/2021 02:00:00 AM,03/15/2021 12:15:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+564642,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 10:00:00 PM,03/15/2021 12:15:51 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 49 AVENUE and 47 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+564639,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 10:00:00 PM,03/15/2021 12:10:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+564636,Shooting Permit,03/18/2021 03:00:00 PM,03/19/2021 05:00:00 AM,03/15/2021 12:05:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 119 STREET and WEST 121 STREET, LENOX AVENUE between WEST 119 STREET and WEST 120 STREET, WEST 121 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, LENOX AVENUE between WEST 121 STREET and WEST 122 STREET, LENOX AVENUE between WEST 122 STREET and WEST 123 STREET, LENOX AVENUE between WEST 123 STREET and WEST 124 STREET, LENOX AVENUE between WEST 124 STREET and WEST 125 STREET",Manhattan,10,28,Television,Cable-episodic,United States of America,"10026, 10027"
+564635,Shooting Permit,03/18/2021 03:00:00 PM,03/19/2021 06:00:00 AM,03/15/2021 12:01:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+564630,Shooting Permit,03/17/2021 06:00:00 AM,03/17/2021 11:00:00 PM,03/15/2021 11:45:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between RUSSELL STREET and HUMBOLDT STREET, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+564628,Shooting Permit,03/22/2021 07:00:00 AM,03/22/2021 10:00:00 PM,03/15/2021 11:41:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+564620,Shooting Permit,03/17/2021 05:00:00 PM,03/17/2021 11:30:00 PM,03/15/2021 11:12:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","WATER STREET between OLD FULTON STREET and DOCK STREET, WATER STREET between DOCK STREET and MAIN STREET, DOCK STREET between WATER STREET and FRONT STREET, OLD FULTON STREET between HICKS STREET and ELIZABETH PLACE, MAIN STREET between PLYMOUTH STREET and WATER STREET, CADMAN PLAZA WEST between MIDDAGH STREET and PINEAPPLE WALK",Brooklyn,2,84,Television,Episodic series,United States of America,11201
+564619,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 09:00:00 PM,03/15/2021 11:05:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564609,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 11:00:00 PM,03/15/2021 10:15:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564596,Shooting Permit,03/24/2021 07:00:00 PM,03/25/2021 03:00:00 AM,03/15/2021 09:39:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","22 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+564442,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 10:00:00 PM,03/12/2021 05:39:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between DECATUR STREET and SCHAEFER STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+564440,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 11:00:00 PM,03/12/2021 05:19:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564418,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 11:00:00 PM,03/12/2021 03:39:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564416,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 10:00:00 PM,03/12/2021 03:37:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between SCHAEFER ST and DECATUR ST, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+564415,Shooting Permit,03/20/2021 06:00:00 AM,03/20/2021 10:00:00 PM,03/12/2021 03:36:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+564414,Shooting Permit,03/19/2021 06:00:00 AM,03/19/2021 10:00:00 PM,03/12/2021 03:33:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+564412,Shooting Permit,03/17/2021 06:30:00 AM,03/17/2021 10:00:00 PM,03/12/2021 03:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564411,Shooting Permit,03/18/2021 06:00:00 AM,03/18/2021 10:00:00 PM,03/12/2021 03:29:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+564405,Shooting Permit,03/16/2021 06:00:00 AM,03/16/2021 11:00:00 PM,03/12/2021 03:25:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 45 STREET between 2 AVENUE and 3 AVENUE, EAST 45 STREET between 2 AVENUE and 1 AVENUE, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, EAST 45 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 35 STREET between MADISON AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 35 STREET and EAST 37 STREET",Manhattan,"5, 6","14, 17",Television,Episodic series,United States of America,"10016, 10017"
+564400,Shooting Permit,03/17/2021 06:00:00 AM,03/17/2021 10:00:00 PM,03/12/2021 03:16:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+564394,Shooting Permit,03/19/2021 06:00:00 AM,03/19/2021 11:00:00 PM,03/12/2021 03:00:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+564387,Shooting Permit,03/18/2021 08:00:00 AM,03/18/2021 10:00:00 PM,03/12/2021 02:50:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 11 STREET and EAST 12 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, BROADWAY between EAST 8 STREET and EAST 10 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+564386,Shooting Permit,03/23/2021 03:30:00 AM,03/23/2021 08:00:00 PM,03/12/2021 02:50:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAIN STREET between PLYMOUTH STREET and WATER STREET, MANHATTAN AVENUE between MESEROLE AVENUE and NORMAN AVENUE, NORMAN AVENUE between MANHATTAN AVENUE and LORIMER STREET",Brooklyn,"1, 2","84, 94",Still Photography,Not Applicable,United States of America,"11201, 11222"
+564377,Shooting Permit,03/16/2021 06:30:00 AM,03/16/2021 09:00:00 PM,03/12/2021 02:24:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 10 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 45 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 7 AVENUE and 8 AVENUE, WEST 44 STREET between 6 AVENUE and 7 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between 6 AVENUE and 7 AVENUE",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+564374,Shooting Permit,03/17/2021 01:00:00 AM,03/17/2021 11:00:00 PM,03/12/2021 02:17:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+564370,Shooting Permit,03/13/2021 01:00:00 PM,03/14/2021 12:00:00 AM,03/12/2021 01:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",1 AVENUE between EAST 16 STREET and EAST 20 STREET,Brooklyn,"1, 6","13, 17, 94",Television,Episodic series,United States of America,"10003, 10009, 10022, 11222"
+564367,Shooting Permit,03/28/2021 06:00:00 AM,03/28/2021 07:00:00 PM,03/12/2021 01:04:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Student,Student Film,United States of America,11238
+564364,Shooting Permit,03/27/2021 06:00:00 AM,03/27/2021 07:00:00 PM,03/12/2021 12:56:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONROE STREET between CLASSON AVENUE and FRANKLIN AVENUE,Brooklyn,3,79,Student,Student Film,United States of America,11238
+564357,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 09:00:00 PM,03/12/2021 12:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 23 STREET and WEST 22 STREET, 8 AVENUE between WEST 22 STREET and WEST 21 STREET, WEST 22 STREET between 8 AVENUE and 9 AVENUE, 8 AVENUE between WEST 21 STREET and WEST 19 STREET",Manhattan,4,10,Television,Daytime soap,United States of America,10011
+564349,Shooting Permit,03/17/2021 05:00:00 PM,03/18/2021 01:00:00 AM,03/12/2021 12:22:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between PIKE STREET and MARKET STREET, PIKE STREET between MADISON STREET and MONROE STREET, MARKET STREET between MONROE STREET and CHERRY STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+564337,Rigging Permit,03/17/2021 06:00:00 AM,03/17/2021 07:00:00 PM,03/12/2021 11:24:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+564335,Rigging Permit,03/16/2021 06:00:00 AM,03/16/2021 07:00:00 PM,03/12/2021 11:20:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+564297,Shooting Permit,03/17/2021 06:00:00 AM,03/17/2021 09:00:00 PM,03/12/2021 09:27:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+564295,Shooting Permit,03/14/2021 07:00:00 AM,03/14/2021 07:00:00 PM,03/12/2021 09:15:41 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 74 STREET between MADISON AVENUE and PARK AVENUE,Manhattan,8,19,Television,Episodic series,United States of America,10021
+564289,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 10:00:00 PM,03/12/2021 07:51:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+564287,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 09:00:00 PM,03/12/2021 07:45:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+564286,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 11:00:00 PM,03/12/2021 07:37:52 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+564257,Shooting Permit,03/19/2021 11:00:00 AM,03/19/2021 11:59:00 PM,03/11/2021 07:52:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between BEDFORD AVENUE and DRIGGS AVENUE, MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, MESEROLE AVENUE between ECKFORD STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+564244,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 11:00:00 PM,03/11/2021 04:48:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564243,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 11:00:00 PM,03/11/2021 04:47:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564231,Shooting Permit,03/17/2021 01:00:00 PM,03/18/2021 03:00:00 AM,03/11/2021 04:14:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, CROSS BRONX EXPRESSWAY between COMMONWEALTH AVENUE and TAYLOR AVENUE, ST LAWRENCE AVENUE between CROSS BRONX EXPRESSWAY and EAST 174 STREET, BEACH AVENUE between EAST 174 STREET and EAST 172 STREET, MCGRAW AVENUE between BEACH AVENUE and TAYLOR AVENUE, TAYLOR AVENUE between MCGRAW AVENUE and WESTCHESTER AVENUE, WESTCHESTER AVENUE between BEACH AVENUE and LELAND AVENUE, WHITE PLAINS ROAD between WESTCHESTER AVENUE and GLEASON AVENUE, GLEASON AVENUE between WHITE PLAINS ROAD and LELAND AVENUE",Bronx,"11, 9","43, 49",Television,Cable-episodic,United States of America,"10462, 10467, 10472, 10473"
+564219,Shooting Permit,03/17/2021 06:00:00 AM,03/17/2021 10:00:00 PM,03/11/2021 03:35:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+564215,Shooting Permit,03/16/2021 06:00:00 AM,03/16/2021 10:00:00 PM,03/11/2021 03:23:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+564213,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 10:00:00 PM,03/11/2021 03:20:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+564212,Shooting Permit,03/12/2021 06:00:00 AM,03/12/2021 10:00:00 PM,03/11/2021 03:18:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+564210,Shooting Permit,03/18/2021 07:00:00 AM,03/18/2021 12:00:00 PM,03/11/2021 03:13:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+564206,Shooting Permit,03/16/2021 06:00:00 AM,03/16/2021 11:00:00 PM,03/11/2021 02:50:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+564204,Shooting Permit,03/15/2021 06:30:00 AM,03/15/2021 10:30:00 PM,03/11/2021 02:32:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564195,Shooting Permit,03/13/2021 07:00:00 AM,03/13/2021 11:00:00 PM,03/11/2021 02:03:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564193,Shooting Permit,03/17/2021 08:00:00 AM,03/17/2021 10:00:00 PM,03/11/2021 02:01:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 12 STREET and EAST 11 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, BROADWAY between EAST 8 STREET and EAST 10 STREET, WANAMAKER PLACE between BROADWAY and LAFAYETTE STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+564183,Shooting Permit,03/16/2021 06:00:00 AM,03/16/2021 11:00:00 PM,03/11/2021 01:05:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+564177,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 11:00:00 PM,03/11/2021 12:57:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+564173,Shooting Permit,03/22/2021 08:00:00 AM,03/22/2021 08:00:00 PM,03/11/2021 12:50:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between DEGRAW STREET and SACKETT STREET, DEGRAW STREET between COURT STREET and SMITH STREET, PEARL STREET between WATER STREET and FRONT STREET, WATER STREET between PEARL STREET and JAY STREET, PROSPECT STREET between CADMAN PLAZA EAST and CADMAN PLAZA WEST, MAIN STREET between PLYMOUTH STREET and WATER STREET",Brooklyn,"2, 6","76, 84",Still Photography,Not Applicable,United States of America,"11201, 11231"
+564170,Shooting Permit,03/18/2021 11:00:00 AM,03/19/2021 01:00:00 AM,03/11/2021 12:40:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE AVENUE between ECKFORD STREET and MANHATTAN AVENUE",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+564157,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 09:00:00 PM,03/11/2021 11:44:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 56 STREET between 10 AVENUE and 11 AVENUE, WEST 56 STREET between 9 AVENUE and 10 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, 12 AVENUE between WEST 57 STREET and WEST 58 STREET",Manhattan,4,18,Television,Cable-episodic,United States of America,10019
+564147,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 11:00:00 PM,03/11/2021 11:12:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564145,Shooting Permit,03/13/2021 07:00:00 AM,03/13/2021 11:00:00 PM,03/11/2021 10:59:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564143,Shooting Permit,03/17/2021 10:00:00 AM,03/17/2021 11:59:00 PM,03/11/2021 10:24:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CALYER STREET and NORMAN AVENUE, MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET",Brooklyn,1,94,Television,Cable-other,United States of America,11222
+564135,Shooting Permit,03/16/2021 09:00:00 AM,03/16/2021 11:00:00 PM,03/11/2021 09:42:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+564133,Shooting Permit,03/13/2021 06:00:00 AM,03/13/2021 07:00:00 PM,03/11/2021 09:07:15 AM,"Mayor's Office of Film, Theatre & Broadcasting",1 AVENUE between EAST 92 STREET and EAST 93 STREET,Manhattan,8,19,Film,Feature,United States of America,10128
+564117,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 10:00:00 PM,03/10/2021 10:48:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564116,Shooting Permit,03/13/2021 08:00:00 AM,03/14/2021 04:00:00 AM,03/10/2021 10:41:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+564088,Shooting Permit,03/24/2021 10:00:00 AM,03/25/2021 02:00:00 AM,03/10/2021 07:42:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 st between QUEENS PLAZA SOUTH and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 10 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 9 STREET and 11 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+564081,Shooting Permit,03/18/2021 08:00:00 AM,03/18/2021 10:00:00 PM,03/10/2021 07:02:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and 3 AVENUE, NEVINS STREET between DEGRAW STREET and UNION STREET, NEVINS STREET between DOUGLAS STREET and DEGRAW STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+564074,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 11:00:00 PM,03/10/2021 05:48:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","WOODPOINT ROAD between SKILLMAN AVENUE and CONSELYEA STREET, SKILLMAN AVENUE between WOODPOINT ROAD and GRAHAM AVENUE, WOODPOINT ROAD between JACKSON STREET and SKILLMAN AVENUE, CONSELYEA STREET between WOODPOINT ROAD and HUMBOLDT STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+564069,Shooting Permit,03/15/2021 09:00:00 AM,03/15/2021 11:00:00 PM,03/10/2021 05:25:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between 5 STREET and VERNON BOULEVARD, N BASIN ROAD between 5TH STREET and CENTER BOULEVARD, VERNON BOULEVARD between 45TH AVENUE and 45TH ROAD, 5 STREET between 46 AVENUE and 46 ROAD, 5TH STREET between N BASIN ROAD and 46TH AVENUE, 46 ROAD between VERNON BOULEVARD and 5 STREET, 46 ROAD between 11 STREET and VERNON BOULEVARD",Queens,2,108,Television,Episodic series,United States of America,11101
+564065,Shooting Permit,03/20/2021 08:00:00 AM,03/21/2021 01:00:00 AM,03/10/2021 05:01:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 27 STREET between 10 AVENUE and 11 AVENUE,Manhattan,4,10,WEB,Not Applicable,United States of America,10001
+564058,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 09:00:00 PM,03/10/2021 04:42:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between DRIGGS AVENUE and WITHERS STREET, FROST STREET between LORIMER STREET and MEEKER AVENUE, MEEKER AVE. between JACKSON STREET and WITHERS STREET, WITHERS STREET between UNION AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11211
+564054,Shooting Permit,03/23/2021 07:00:00 AM,03/23/2021 11:00:00 PM,03/10/2021 04:32:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+564052,Shooting Permit,03/19/2021 08:00:00 AM,03/20/2021 12:00:00 AM,03/10/2021 04:22:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 st between QUEENS PLAZA and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+564045,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 02:00:00 PM,03/10/2021 04:05:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 3 AVENUE and 2 AVENUE, 11 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between 10 STREET and 12 STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11215
+564015,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 10:00:00 PM,03/10/2021 02:45:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 7 AVENUE and 6 AVENUE, WEST 20 STREET between 7 AVENUE and 6 AVENUE, WEST 18 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 19 STREET and WEST 21 STREET, WEST 21 STREET between 6 AVENUE and 5 AVENUE, WEST 18 STREET between 6 AVENUE and 7 AVENUE, WEST 20 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"4, 5",13,Television,Episodic series,United States of America,"10010, 10011"
+564013,Shooting Permit,03/16/2021 08:00:00 AM,03/16/2021 10:00:00 PM,03/10/2021 02:38:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between EAST 12 STREET and EAST 11 STREET, 4 AVENUE between EAST 10 STREET and EAST 13 STREET, EAST 10 STREET between BROADWAY and UNIVERSITY PLACE, EAST 9 STREET between BROADWAY and UNIVERSITY PLACE, BROADWAY between EAST 8 STREET and EAST 10 STREET, WANAMAKER PLACE between BROADWAY and LAFAYETTE STREET, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+563992,Rigging Permit,03/15/2021 06:00:00 AM,03/15/2021 07:00:00 PM,03/10/2021 01:52:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563980,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 11:00:00 PM,03/10/2021 01:23:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","BERRY STREET between NORTH 14 STREET and NORTH 12 STREET, NASSAU AVENUE between NORTH 14 STREET and BANKER STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 11 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+563979,Shooting Permit,03/16/2021 12:00:00 PM,03/17/2021 03:00:00 AM,03/10/2021 01:23:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, MADISON AVENUE between EAST 50 STREET and EAST 51 STREET, PARK AVENUE between EAST 48 STREET and EAST 52 STREET, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 51 STREET and EAST 52 STREET, EAST 51 STREET between MADISON AVENUE and 5 AVENUE",Bronx,"5, 9","18, 43",Television,Cable-episodic,United States of America,"10017, 10022, 10171, 10473"
+563971,Shooting Permit,03/12/2021 10:00:00 AM,03/13/2021 02:00:00 AM,03/10/2021 01:12:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET, JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+563970,Shooting Permit,03/16/2021 06:00:00 AM,03/16/2021 10:00:00 PM,03/10/2021 01:11:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","BRONXDALE AVENUE between MORRIS PARK AVENUE and KINSELLA STREET, MORRIS PARK AVENUE between MATTHEWS AVENUE and BRONXDALE AVENUE, KINSELLA STREET between BRONXDALE AVENUE and MATTHEWS AVENUE, FOWLER AVENUE between MORRIS PARK AVENUE and VAN NEST AVENUE, FOWLER AVENUE between MORRIS PARK AVENUE and RHINELANDER AVENUE, MORRIS PARK AVENUE between BRONXDALE AVENUE and HAIGHT AVENUE",Bronx,11,49,Television,Episodic series,United States of America,"10461, 10462"
+563959,Shooting Permit,03/11/2021 11:00:00 AM,03/12/2021 01:00:00 AM,03/10/2021 12:30:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+563946,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 09:00:00 PM,03/10/2021 11:43:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between GRAND STREET and HOWARD STREET, HOWARD STREET between BROADWAY and LAFAYETTE STREET, LAFAYETTE STREET between HOWARD STREET and CANAL STREET, LAFAYETTE STREET between HOWARD STREET and GRAND STREET, BROADWAY between GRAND STREET and HOWARD STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROOME STREET between MERCER STREET and LAFAYETTE STREET, MERCER STREET between GRAND STREET and HOWARD STREET",Manhattan,2,"1, 5",Television,Episodic series,United States of America,10013
+563942,Shooting Permit,03/19/2021 08:00:00 AM,03/19/2021 11:00:00 PM,03/10/2021 11:23:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+563936,Shooting Permit,03/12/2021 10:00:00 AM,03/13/2021 02:00:00 AM,03/10/2021 10:51:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between EAST 4 STREET and BLEEKER STREET, BOND STREET between LAFAYETTE STREET and BOWERY, EAST 4 STREET between BROADWAY and BOWERY, EAST 4 STREET between BOWERY and 2 AVENUE, COOPER SQUARE between EAST 8 STREET and EAST 6 STREET, EAST 9 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"1, 2, 3","5, 9",Television,Cable-episodic,United States of America,"10003, 10012, 10013"
+563935,Shooting Permit,03/18/2021 07:00:00 AM,03/18/2021 10:00:00 PM,03/10/2021 10:49:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+563934,Shooting Permit,03/17/2021 07:00:00 AM,03/17/2021 10:00:00 PM,03/10/2021 10:40:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+563933,Shooting Permit,03/18/2021 08:00:00 AM,03/19/2021 12:00:00 AM,03/10/2021 10:39:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+563923,Shooting Permit,03/17/2021 07:00:00 AM,03/18/2021 11:00:00 PM,03/10/2021 10:03:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+563917,Shooting Permit,03/12/2021 10:00:00 AM,03/12/2021 08:00:00 PM,03/10/2021 09:23:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 48 STREET between 6 AVENUE and 7 AVENUE, WEST 48 STREET between 5 AVENUE and 6 AVENUE, WEST 50 STREET between 6 AVENUE and 7 AVENUE, WEST 51 STREET between 5 AVENUE and 7 AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020, 10036, 10105"
+563915,Shooting Permit,03/13/2021 06:00:00 AM,03/13/2021 09:00:00 PM,03/10/2021 09:14:05 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH,Manhattan,5,13,Television,Episodic series,United States of America,10010
+563912,Shooting Permit,03/12/2021 06:00:00 AM,03/12/2021 11:00:00 PM,03/10/2021 08:50:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 17 STREET between PARK AVENUE SOUTH and BROADWAY, PARK AVENUE SOUTH between EAST 17 STREET and EAST 18 STREET, EAST 18 STREET between PARK AVENUE SOUTH and BROADWAY, BROADWAY between EAST 18 STREET and EAST 19 STREET, WEST 18 STREET between FIFTH AVENUE and SIXTH AVENUE, 6 AVENUE between WEST 18 STREET and WEST 20 STREET, PARK AVENUE SOUTH between EAST 18 STREET and EAST 20 STREET, WEST 19 STREET between FIFTH AVENUE and SIXTH AVENUE",Manhattan,"4, 5",13,Film,Feature,United States of America,"10003, 10011"
+563911,Rigging Permit,03/12/2021 11:00:00 PM,03/13/2021 02:00:00 PM,03/10/2021 08:48:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",VESTRY STREET between GREENWICH STREET and HUDSON STREET,Manhattan,1,1,Television,Episodic series,United States of America,10013
+563910,Shooting Permit,03/12/2021 07:00:00 AM,03/12/2021 11:00:00 PM,03/10/2021 08:40:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 20 STREET between 11 AVENUE and 10 AVENUE, VESTRY STREET between GREENWICH STREET and HUDSON STREET, WASHINGTON STREET between HUBERT STREET and VESTRY STREET, LAIGHT STREET between HUDSON STREET and WASHINGTON STREET",Manhattan,"1, 4","1, 10",Television,Episodic series,United States of America,"10011, 10013"
+563864,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 10:00:00 PM,03/09/2021 05:03:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+563862,Shooting Permit,03/15/2021 01:00:00 AM,03/15/2021 10:00:00 PM,03/09/2021 04:56:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563847,Shooting Permit,03/15/2021 07:00:00 AM,03/16/2021 01:00:00 AM,03/09/2021 03:56:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 22 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 21 STREET between 44 AVENUE and 44 ROAD, 44 AVENUE between 21 STREET and 22 STREET, 44 AVENUE between 22 STREET and 23 STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 44 AVENUE, 44 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+563829,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 11:00:00 PM,03/09/2021 02:53:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+563820,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 10:00:00 PM,03/09/2021 01:42:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and 3 AVENUE, NEVINS STREET between DOUGLASS STREET and UNION STREET, NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+563817,Shooting Permit,03/12/2021 08:00:00 AM,03/12/2021 10:00:00 PM,03/09/2021 01:38:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","STANTON STREET between BOWERY and CHRYSTIE STREET, CHRYSTIE STREET between EAST HOUSTON STREET and STANTON STREET, EAST HOUSTON STREET between BOWERY and CHRYSTIE STREET, BOWERY between RIVINGTON STREET and EAST HOUSTON STREET, BOWERY between RIVINGTON STREET and SPRING STREET, CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET, BOWERY between EAST 1 STREET and EAST HOUSTON STREET",Manhattan,"2, 3","5, 9",Television,Episodic series,United States of America,"10002, 10003, 10012"
+563816,Shooting Permit,03/11/2021 06:30:00 AM,03/11/2021 10:30:00 PM,03/09/2021 01:37:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 6 STREET and EAST 7 STREET, STUYVESANT STREET between 3 AVENUE and EAST 10 STREET, EAST 9 STREET between STUYVESANT STREET and 2 AVENUE, WANAMAKER PLACE between 4 AVENUE and BROADWAY, BROADWAY between EAST 10 STREET and ASTOR PLACE, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, COOPER SQUARE between EAST 7 STREET and ST MARKS PLACE, EAST 6 STREET between TARAS SHEVCHENKO PLACE and 2 AVENUE, TARAS SHEVCHENKO PLACE between EAST 6 STREET and EAST 7 STREET, EAST 7 STREET between TARAS SHEVCHENKO PLACE and 2 AVENUE, EAST 10 STREET between 3 AVENUE and STUYVESANT STREET, EAST 7 STREET between COOPER SQUARE and TARAS SHEVCHENKO PLACE, EAST 10 STREET between 4 AVENUE and 3 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+563815,Shooting Permit,03/16/2021 11:00:00 AM,03/17/2021 03:00:00 AM,03/09/2021 01:36:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 8 STREET between BROADWAY and LAFAYETTE STREET, BROADWAY between WANAMAKER PLACE and ASTOR PLACE, EAST 9 STREET between 3 AVENUE and 4 AVENUE, WANAMAKER PLACE between LAFAYETTE STREET and BROADWAY, BROADWAY between EAST 8 STREET and ASTOR PLACE, EAST 10 STREET between 4 AVENUE and 3 AVENUE, 3rd Avenue between ST MARKS PLACE and E. 7th St, 3 AVENUE between EAST 10 STREET and EAST 9 STREET, 3 AVENUE between EAST 9 STREET and ASTOR PLACE, 3rd Avenue between E. 7th St and E. 6th St, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET",Manhattan,"2, 3","6, 9",Television,Cable-episodic,United States of America,10003
+563813,Shooting Permit,03/12/2021 01:00:00 PM,03/13/2021 03:00:00 AM,03/09/2021 01:29:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 9 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 9 AVENUE between WEST 19 STREET and WEST 20 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+563805,Shooting Permit,03/12/2021 07:00:00 AM,03/12/2021 10:00:00 PM,03/09/2021 12:46:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 98 STREET and EAST 102 STREET, 3 AVENUE between EAST 104 STREET and EAST 109 STREET, EAST 99 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 96 STREET and EAST 97 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 104 STREET and EAST 102 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+563799,Shooting Permit,03/10/2021 08:00:00 AM,03/10/2021 10:00:00 PM,03/09/2021 12:40:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 88 STREET and WEST 85 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 88 STREET, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, WEST 87 STREET between BROADWAY and WEST END AVENUE, BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 90 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 97 STREET and WEST 98 STREET, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10024, 10025"
+563796,Shooting Permit,03/11/2021 12:00:00 PM,03/11/2021 10:00:00 PM,03/09/2021 12:37:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 44 STREET between 2 AVENUE and 3 AVENUE,Manhattan,6,17,Television,Episodic series,United States of America,10017
+563789,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 09:00:00 PM,03/09/2021 12:21:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 44 STREET between 2 AVENUE and 3 AVENUE, EAST 44 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 43 STREET between 2 AVENUE and 3 AVENUE, EAST 42 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, EAST 54 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 51 STREET and EAST 54 STREET, EAST 54 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 45 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+563786,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 10:00:00 PM,03/09/2021 12:14:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and 3 AVENUE, NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, NEVINS STREET between UNION STREET and DOUGLASS STREET, SACKETT STREET between NEVINS STREET and 3 AVENUE, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+563785,Shooting Permit,03/12/2021 06:00:00 AM,03/12/2021 10:00:00 PM,03/09/2021 12:09:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563781,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 11:00:00 PM,03/09/2021 12:03:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563770,Shooting Permit,03/12/2021 06:00:00 AM,03/12/2021 11:00:00 PM,03/09/2021 11:42:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 72 STREET and EAST 70 STREET, EAST 70 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,10021
+563752,Shooting Permit,03/11/2021 09:00:00 AM,03/11/2021 11:00:00 PM,03/09/2021 11:02:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+563747,Shooting Permit,03/10/2021 08:00:00 AM,03/10/2021 11:00:00 PM,03/09/2021 10:47:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING AVENUE between SCHAEFER STREET and DECATUR STREET, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+563737,Shooting Permit,03/11/2021 11:30:00 AM,03/11/2021 09:30:00 PM,03/09/2021 10:26:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","HORATIO STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between GANSEVOORT STREET and HORATIO STREET, WASHINGTON STREET between HORATIO STREET and JANE STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE, 10 AVENUE between WEST 13 STREET and WEST 14 STREET, LITTLE WEST 12 STREET between WASHINGTON STREET and 9 AVENUE, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between WASHINGTON STREET and 10 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+563728,Shooting Permit,03/12/2021 12:00:00 PM,03/13/2021 02:00:00 AM,03/09/2021 09:54:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+563707,Rigging Permit,03/12/2021 06:00:00 AM,03/12/2021 07:00:00 PM,03/09/2021 08:18:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563706,Rigging Permit,03/11/2021 06:00:00 AM,03/11/2021 07:00:00 PM,03/09/2021 08:14:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","37 STREET between 34 AVENUE and 35 AVENUE, 35 AVENUE between 37 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563662,Shooting Permit,03/13/2021 07:00:00 AM,03/13/2021 07:00:00 PM,03/08/2021 05:22:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between WEST 162 STREET and WEST 163 STREET,Manhattan,12,33,Television,Special/Awards Show,United States of America,10032
+563650,Shooting Permit,03/12/2021 05:00:00 PM,03/13/2021 05:00:00 AM,03/08/2021 04:11:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 66 STREET and WEST 67 STREET, COLUMBUS AVENUE between WEST 67 STREET and WEST 68 STREET, COLUMBUS AVENUE between WEST 66 STREET and WEST 67 STREET, WEST 67 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 66 STREET and WEST 67 STREET, BROADWAY between WEST 68 STREET and WEST 70 STREET, WEST 69 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 67 STREET and WEST 69 STREET, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, CENTRAL PARK WEST between WEST 64 STREET and WEST 65 STREET",Manhattan,"4, 64, 7","18, 20, 22",Television,Cable-episodic,United States of America,10023
+563638,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 11:00:00 PM,03/08/2021 03:49:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MCGUINNESS BOULEVARD and NEWEL STREET, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563612,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 10:00:00 PM,03/08/2021 03:14:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 73 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 73 STREET and EAST 72 STREET, EAST 72 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 71 STREET and EAST 72 STREET, EAST 71 STREET between 3 AVENUE and 2 AVENUE, EAST 71 STREET between PARK AVENUE and 3 AVENUE, PARK AVENUE between EAST 69 STREET and EAST 72 STREET, LEXINGTON AVENUE between EAST 70 STREET and EAST 71 STREET, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Manhattan,"1, 8","19, 94",Television,Cable-episodic,United States of America,"10021, 11222"
+563604,Shooting Permit,03/15/2021 06:00:00 AM,03/15/2021 10:00:00 PM,03/08/2021 02:54:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563602,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 11:00:00 PM,03/08/2021 02:53:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563601,Shooting Permit,03/11/2021 05:00:00 PM,03/12/2021 06:00:00 AM,03/08/2021 02:53:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 66 STREET and WEST 67 STREET, COLUMBUS AVENUE between WEST 67 STREET and WEST 68 STREET, COLUMBUS AVENUE between WEST 66 STREET and WEST 67 STREET, WEST 67 STREET between COLUMBUS AVENUE and BROADWAY, BROADWAY between WEST 66 STREET and WEST 67 STREET, BROADWAY between WEST 68 STREET and WEST 70 STREET, WEST 69 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 67 STREET and WEST 69 STREET, WEST 60 STREET between COLUMBUS AVENUE and BROADWAY, CENTRAL PARK WEST between WEST 64 STREET and WEST 65 STREET",Manhattan,"4, 64, 7","18, 20, 22",Television,Cable-episodic,United States of America,10023
+563596,Shooting Permit,03/12/2021 04:00:00 PM,03/13/2021 06:00:00 AM,03/08/2021 02:19:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 63 STREET between CENTRAL PARK WEST and BROADWAY, WEST 62 STREET between CENTRAL PARK WEST and BROADWAY, CENTRAL PARK WEST between WEST 64 STREET and WEST 63 STREET, CENTRAL PARK WEST between WEST 63 STREET and WEST 62 STREET, WEST 64 STREET between BROADWAY and CENTRAL PARK WEST, BROADWAY between WEST 61 STREET and WEST 63 STREET, WEST 61 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, WEST 62 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,10023
+563583,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 11:00:00 PM,03/08/2021 01:22:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 72 STREET and EAST 70 STREET, EAST 70 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 72 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,8,19,Television,Cable-episodic,United States of America,10021
+563580,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 08:00:00 PM,03/08/2021 01:16:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563579,Shooting Permit,03/10/2021 09:30:00 AM,03/10/2021 07:30:00 PM,03/08/2021 01:16:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 155 STREET between AMSTERDAM AVENUE and ST NICHOLAS AVENUE, WEST 153 STREET between AMSTERDAM AVENUE and BROADWAY, AMSTERDAM AVENUE between WEST 153 STREET and WEST 152 STREET, ST NICHOLAS AVENUE between WEST 147 STREET and WEST 148 STREET, WEST 147 STREET between ST NICHOLAS AVENUE and CONVENT AVENUE",Manhattan,"12, 9","26, 30, 33",Television,Cable-episodic,United States of America,"10027, 10031, 10032"
+563571,Shooting Permit,03/10/2021 11:00:00 AM,03/11/2021 01:00:00 AM,03/08/2021 12:47:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 138 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE, EAST 140 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE, BRUCKNER BLVD between EAST 134 STREET and EAST 137 STREET, EAST 135 STREET between BRUCKNER BOULEVARD and WILLOW AVENUE, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"1, 9","40, 43",Television,Cable-episodic,United States of America,"10454, 10473"
+563546,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 10:00:00 PM,03/08/2021 11:55:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 4 STREET between BOWERY and 2 AVENUE,Manhattan,3,9,Still Photography,Not Applicable,United States of America,10003
+563525,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 10:00:00 PM,03/08/2021 11:08:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 84 STREET between FIRST AVENUE and SECOND AVENUE, EAST 83 STREET between FIRST AVENUE and SECOND AVENUE, EAST 83 STREET between FIRST AVENUE and YORK AVENUE, FIRST AVENUE between EAST 82 STREET and EAST 84 STREET, YORK AVENUE between EAST 79 STREET and EAST 84 STREET, YORK AVENUE between EAST 84 STREET and EAST 85 STREET, YORK AVENUE between EAST 85 STREET and EAST 86 STREET",Manhattan,8,19,Film,Feature,United States of America,"10028, 10075"
+563509,Shooting Permit,03/12/2021 07:00:00 AM,03/12/2021 10:00:00 PM,03/08/2021 10:16:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between BOND STREET and 3 AVENUE, NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, NEVINS STREET between UNION STREET and DOUGLAS STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+563508,Shooting Permit,03/12/2021 01:00:00 PM,03/13/2021 05:00:00 AM,03/08/2021 10:15:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14TH ST between 10TH AVENUE and 9TH AVENUE, 10 AVENUE between WEST 13 STREET and WEST 14 STREET, GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, GANSEVOORT STREET between WASHINGTON STREET and 9 AVENUE, WASHINGTON STREET between LITTLE WEST 12 STREET and GANSEVOORT STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, WEST 13 STREET between WASHINGTON STREET and 9 AVENUE, WEST 13 STREET between 10 AVENUE and WASHINGTON STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+563493,Shooting Permit,03/10/2021 06:00:00 AM,03/10/2021 10:00:00 PM,03/08/2021 09:24:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","FIFTH AVENUE between EAST 77 STREET and EAST 80 STREET, MADISON AVENUE between EAST 72 STREET and EAST 73 STREET, MADISON AVENUE between EAST 73 STREET and EAST 74 STREET, MADISON AVENUE between EAST 74 STREET and EAST 75 STREET, MADISON AVENUE between EAST 75 STREET and EAST 76 STREET, MADISON AVENUE between EAST 76 STREET and EAST 77 STREET, MADISON AVENUE between EAST 77 STREET and EAST 78 STREET, MADISON AVENUE between EAST 78 STREET and EAST 79 STREET, FIFTH AVENUE between EAST 82 STREET and EAST 81 STREET, LEXINGTON AVENUE between EAST 77 STREET and EAST 76 STREET, LEXINGTON AVENUE between EAST 76 STREET and EAST 75 STREET, EAST 75 STREET between LEXINGTON AVENUE and THIRD AVENUE, LEXINGTON AVENUE between EAST 75 STREET and EAST 74 STREET",Manhattan,"64, 8","19, 22",Film,Feature,United States of America,"10021, 10028, 10075"
+563490,Shooting Permit,03/11/2021 07:00:00 AM,03/11/2021 10:00:00 PM,03/08/2021 09:17:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 125 STREET between ST NICHOLAS AVENUE and MALCOLM X BOULEVARD, WEST 125 STREET between MALCOLM X BOULEVARD and FIFTH AVENUE, W 124TH ST between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 123 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, FREDERICK DOUGLAS BOULEVARD between WEST 126 STREET and WEST 127 STREET, FREDERICK DOUGLAS BOULEVARD between WEST 122 STREET and WEST 121 STREET, WEST 123 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLASS BOULEVARD, FREDERICK DOUGLASS BOULEVARD between WEST 124 STREET and WEST 125 STREET",Manhattan,10,28,Television,Episodic series,United States of America,10027
+563447,Shooting Permit,03/11/2021 11:00:00 AM,03/12/2021 02:00:00 AM,03/07/2021 08:54:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+563368,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 11:00:00 PM,03/05/2021 07:39:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between GRAND AVENUE and CLASSON AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and BEDFORD AVENUE, CLASSON AVENUE between QUINCY STREET and GREENE AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE, QUINCY STREET between DOWNING STREET and CLASSON AVENUE, ST JAMES PLACE between DEKALB AVENUE and LAFAYETTE AVENUE, WASHINGTON AVENUE between GATES AVENUE and FULTON STREET",Brooklyn,"2, 3","79, 88",Television,Episodic series,United States of America,"11205, 11216, 11238"
+563360,Shooting Permit,03/10/2021 06:00:00 AM,03/10/2021 08:00:00 PM,03/05/2021 05:30:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","Malba Drive between Boulevard and North Drive, Boulevard between Malba Drive and Parsons Blvd, Boulevard between Malba Drive and Parsons Blvd, Boulevard between Malba Drive and Parsons Blvd, 3rd Avenue between Whitestone Expressway and 147th Street, 14 AVENUE between CLINTONVILLE STREET and 150 STREET, 150 STREET between 12 ROAD and 14 AVENUE, 14 AVENUE between 149 STREET and 150 STREET, 12 ROAD between CLINTONVILLE STREET and 150 STREET",Queens,7,109,Television,Cable-episodic,United States of America,11357
+563358,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 09:00:00 PM,03/05/2021 05:22:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOND STREET between BERGEN STREET and PACIFIC STREET, DEAN STREET between BOND STREET and NEVINS STREET, ATLANTIC AVENUE between 3 AVENUE and SMITH STREET, SMITH STREET between ATLANTIC AVENUE and PACIFIC STREET, BOND STREET between STATE STREET and SCHERMERHORN STREET",Brooklyn,2,84,Television,Episodic series,United States of America,"11201, 11217"
+563342,Shooting Permit,03/10/2021 07:30:00 AM,03/10/2021 06:30:00 PM,03/05/2021 04:30:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","LISPENARD STREET between CHURCH STREET and BROADWAY, WALKER STREET between CHURCH STREET and BROADWAY, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, CHURCH STREET between CANAL STREET and LISPENARD STREET, CHURCH STREET between LISPENARD STREET and WHITE STREET, CHURCH STREET between WHITE STREET and LEONARD STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, 6 AVENUE between LISPENARD STREET and FRANKLIN STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+563340,Shooting Permit,03/13/2021 06:00:00 AM,03/13/2021 10:00:00 PM,03/05/2021 04:21:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563330,Shooting Permit,03/10/2021 06:00:00 AM,03/10/2021 11:00:00 PM,03/05/2021 03:22:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOUNT CARMEL PLACE between EAST 28 STREET and EAST 26 STREET, EAST 25 STREET between 2 AVENUE and 3 AVENUE, E 28TH ST between 1 AVENUE and 2 AVENUE",Manhattan,6,13,Television,Cable-episodic,United States of America,"10010, 10016"
+563327,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 11:00:00 PM,03/05/2021 03:13:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+563312,Shooting Permit,03/09/2021 02:00:00 PM,03/09/2021 10:00:00 PM,03/05/2021 02:16:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",DEAN STREET between NEW YORK AVENUE and NOSTRAND AVENUE,Brooklyn,8,77,Still Photography,Not Applicable,United States of America,11216
+563311,Shooting Permit,03/11/2021 07:00:00 AM,03/11/2021 08:00:00 PM,03/05/2021 02:13:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 46 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+563303,Shooting Permit,03/11/2021 07:00:00 AM,03/11/2021 10:00:00 PM,03/05/2021 01:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 103 STREET and EAST 104 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 102 STREET and EAST 103 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 99 STREET and EAST 102 STREET, 3 AVENUE between EAST 104 STREET and EAST 108 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+563298,Shooting Permit,03/18/2021 06:00:00 AM,03/18/2021 11:00:00 PM,03/05/2021 01:21:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+563282,Shooting Permit,03/11/2021 04:00:00 PM,03/12/2021 06:00:00 AM,03/05/2021 11:46:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between ALBEMARLE ROAD and CHURCH AVENUE, ALBEMARLE ROAD between MCDONALD AVENUE and DAHILL ROAD, MCDONALD AVENUE between CHURCH AVENUE and AVENUE C, EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE",Brooklyn,"12, 14","66, 70",Television,Cable-episodic,United States of America,"11218, 11226"
+563273,Shooting Permit,03/12/2021 06:00:00 AM,03/13/2021 01:00:00 AM,03/05/2021 11:29:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+563269,Shooting Permit,03/09/2021 07:00:00 AM,03/09/2021 11:00:00 PM,03/05/2021 11:15:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563265,Shooting Permit,03/09/2021 06:30:00 AM,03/09/2021 10:00:00 PM,03/05/2021 10:56:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 42 STREET and 43 STREET, 43 STREET between QUEENS BOULEVARD and SKILLMAN AVENUE, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, 44 STREET between QUEENS BOULEVARD and 43 AVENUE, 45 STREET between QUEENS BOULEVARD and 43 AVENUE, QUEENS BOULEVARD between 43 STREET and 44 STREET, QUEENS BOULEVARD between 39 PLACE and 41 STREET",Queens,2,108,Television,Episodic series,United States of America,11104
+563261,Shooting Permit,03/12/2021 07:00:00 AM,03/12/2021 10:00:00 PM,03/05/2021 10:42:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, GREENPOINT AVENUE between WEST STREET and DEAD END, KENT STREET between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+563260,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 11:00:00 PM,03/05/2021 10:42:11 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563244,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 10:00:00 PM,03/05/2021 09:29:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","WOODPOINT ROAD between JACKSON STREET and MASPETH AVENUE, HUMBOLDT STREET between SKILLMAN AVENUE and MASPETH AVENUE, SKILLMAN AVENUE between HUMBOLDT STREET and WOODPOINT ROAD, CONSELYEA STREET between HUMBOLDT STREET and MASPETH AVENUE, MASPETH AVENUE between WOODPOINT ROAD and OLIVE STREET, NORTH HENRY STREET between RICHARDSON STREET and HERBERT STREET",Brooklyn,1,"90, 94",Television,Episodic series,United States of America,"11211, 11222"
+563217,Rigging Permit,03/10/2021 06:00:00 AM,03/10/2021 07:00:00 PM,03/04/2021 07:42:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563215,Rigging Permit,03/09/2021 06:00:00 AM,03/09/2021 07:00:00 PM,03/04/2021 07:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563214,Rigging Permit,03/08/2021 06:00:00 AM,03/08/2021 07:00:00 PM,03/04/2021 07:36:00 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+563206,Shooting Permit,03/10/2021 07:00:00 AM,03/11/2021 12:00:00 AM,03/04/2021 05:24:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 83 STREET between WEST END AVENUE and AMSTERDAM AVENUE, BROADWAY between WEST 83 STREET and WEST 80 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 79 STREET between WEST END AVENUE and AMSTERDAM AVENUE, WEST 79 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, WEST 81 STREET between BROADWAY and WEST END AVENUE",Manhattan,7,20,Television,Episodic series,United States of America,10024
+563198,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 11:00:00 PM,03/04/2021 04:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563193,Shooting Permit,03/10/2021 03:00:00 PM,03/11/2021 05:00:00 AM,03/04/2021 04:26:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 3 STREET between AVENUE A and AVENUE B, AVENUE B between EAST 3 STREET and EAST 2 STREET, EAST 4 STREET between AVENUE A and AVENUE C, AVENUE A between EAST 3 STREET and EAST 2 STREET, AVENUE B between EAST 2 STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between AVENUE D and AVENUE C, EAST HOUSTON STREET between AVENUE C and AVENUE B, EAST HOUSTON STREET between AVENUE B and AVENUE A, EAST 8 STREET between AVENUE B and AVENUE C",Manhattan,3,"7, 9",Television,Cable-episodic,United States of America,"10002, 10009"
+563186,Shooting Permit,03/11/2021 06:00:00 AM,03/11/2021 10:00:00 PM,03/04/2021 03:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563184,Shooting Permit,03/10/2021 06:00:00 AM,03/10/2021 10:00:00 PM,03/04/2021 03:47:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563182,Shooting Permit,03/09/2021 07:00:00 AM,03/09/2021 10:00:00 PM,03/04/2021 03:43:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","SCHAEFER STREET between CENTRAL AVENUE and EVERGREEN AVENUE, SCHAEFER STREET between WILSON AVENUE and CENTRAL AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11207, 11237, 11385"
+563180,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 10:00:00 PM,03/04/2021 03:42:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563173,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 11:00:00 PM,03/04/2021 03:03:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563172,Shooting Permit,03/16/2021 07:00:00 AM,03/16/2021 09:00:00 PM,03/04/2021 02:55:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563171,Shooting Permit,03/15/2021 07:00:00 AM,03/15/2021 09:00:00 PM,03/04/2021 02:55:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563170,Shooting Permit,03/12/2021 07:00:00 AM,03/12/2021 09:00:00 PM,03/04/2021 02:54:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563167,Shooting Permit,03/11/2021 07:00:00 AM,03/11/2021 09:00:00 PM,03/04/2021 02:54:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563166,Shooting Permit,03/10/2021 07:00:00 AM,03/10/2021 09:00:00 PM,03/04/2021 02:53:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563165,Shooting Permit,03/09/2021 07:00:00 AM,03/09/2021 09:00:00 PM,03/04/2021 02:53:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563164,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 09:00:00 PM,03/04/2021 02:52:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563162,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 10:00:00 PM,03/04/2021 02:47:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 86 STREET between EAST END AVENUE and YORK AVENUE, YORK AVENUE between EAST 79 STREET and EAST 84 STREET, YORK AVENUE between EAST 84 STREET and EAST 85 STREET, YORK AVENUE between EAST 85 STREET and EAST 86 STREET, EAST 84 STREET between FIRST AVENUE and SECOND AVENUE, EAST 83 STREET between FIRST AVENUE and SECOND AVENUE, EAST 83 STREET between FIRST AVENUE and YORK AVENUE, FIRST AVENUE between EAST 82 STREET and EAST 84 STREET",Manhattan,8,19,Film,Feature,United States of America,"10028, 10075"
+563154,Shooting Permit,03/12/2021 08:00:00 AM,03/13/2021 12:00:00 AM,03/04/2021 02:18:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 st between queens plaza s and 43rd ave",Queens,2,108,Television,Episodic series,United States of America,11101
+563141,Shooting Permit,03/09/2021 09:00:00 AM,03/09/2021 11:30:00 PM,03/04/2021 01:52:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563138,Shooting Permit,03/10/2021 11:00:00 AM,03/11/2021 01:00:00 AM,03/04/2021 01:43:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+563135,Shooting Permit,03/09/2021 09:00:00 AM,03/09/2021 11:59:00 PM,03/04/2021 01:33:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 141 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+563130,Shooting Permit,03/11/2021 08:00:00 AM,03/12/2021 12:00:00 AM,03/04/2021 01:22:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+563128,Shooting Permit,03/07/2021 06:00:00 AM,03/07/2021 01:00:00 PM,03/04/2021 01:15:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between NINTH AVENUE and EIGHTH AVENUE, EIGHTH AVENUE between WEST 40 STREET and WEST 39 STREET, EIGHTH AVENUE between WEST 40 STREET and WEST 41 STREET, WEST 40 STREET between SEVENTH AVENUE and EIGHTH AVENUE",Manhattan,"4, 5",14,Film,Feature,United States of America,10018
+563116,Shooting Permit,03/10/2021 07:00:00 AM,03/11/2021 01:00:00 AM,03/04/2021 12:38:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between 6 AVENUE and BROADWAY, PARK AVENUE SOUTH between EAST 28 STREET and EAST 27 STREET, WEST 26 STREET between BROADWAY and 5 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 25 STREET and EAST 26 STREET, BROADWAY between WEST 24 STREET and WEST 25 STREET, EAST 27 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,13,Television,Episodic series,United States of America,"10010, 10016"
+563114,Shooting Permit,03/06/2021 12:00:00 PM,03/07/2021 03:00:00 AM,03/04/2021 12:34:49 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563106,Shooting Permit,03/09/2021 02:00:00 PM,03/10/2021 03:00:00 AM,03/04/2021 12:16:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and TAYLOR AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, THIERIOT AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, SOUNDVIEW AVE between RANDALL AVENUE and LACOMBE AVENUE, Soundview Ave between UNDERHILL AVENUE and Leland Ave, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+563103,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 10:00:00 PM,03/04/2021 12:04:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between STEWART AVENUE and GARDNER AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,1,90,Television,Episodic series,United States of America,11237
+563097,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 10:00:00 PM,03/04/2021 11:35:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+563096,Shooting Permit,03/09/2021 07:00:00 AM,03/09/2021 07:00:00 PM,03/04/2021 11:31:08 AM,"Mayor's Office of Film, Theatre & Broadcasting",BRIDGE STREET between YORK STREET and PROSPECT STREET,Brooklyn,2,84,Commercial,Commercial,United States of America,11201
+563088,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 11:59:00 PM,03/04/2021 10:58:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","KNICKERBOCKER AVENUE between JEFFERSON STREET and TROUTMAN STREET, KNICKERBOCKER AVENUE between TROUTMAN STREET and STARR STREET, DEKALB AVENUE between HUDSON AVENUE and ST FELIX STREET, DEKALB AVENUE between FLATBUSH AVENUE EXTENSION and HUDSON AVENUE, FLATBUSH AVENUE EXTENSION between DEKALB AVENUE and FULTON STREET, DEKALB AVENUE between BOND STREET and FLATBUSH AVENUE EXTENSION, FLATBUSH AVENUE EXTENSION between DEKALB AVENUE and FLEET STREET",Brooklyn,"2, 4","83, 84, 88",Television,Episodic series,United States of America,"11201, 11237"
+563079,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 10:00:00 PM,03/04/2021 10:25:21 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+563077,Shooting Permit,03/06/2021 08:00:00 AM,03/06/2021 11:30:00 PM,03/04/2021 10:08:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 23 STREET between LEXINGTON AVENUE and PARK AVENUE SOUTH,Manhattan,5,13,WEB,Not Applicable,United States of America,10010
+563073,Shooting Permit,03/05/2021 12:00:00 PM,03/06/2021 03:00:00 AM,03/04/2021 09:21:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+563057,Shooting Permit,03/09/2021 07:00:00 AM,03/09/2021 10:00:00 PM,03/04/2021 08:14:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between GRAND AVENUE and CLASSON AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and BEDFORD AVENUE, CLASSON AVENUE between QUINCY STREET and GREENE AVENUE",Brooklyn,"2, 3","79, 88",Television,Episodic series,United States of America,"11216, 11238"
+563056,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 10:00:00 PM,03/04/2021 07:56:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+563009,Shooting Permit,03/09/2021 02:00:00 PM,03/10/2021 03:30:00 AM,03/03/2021 04:26:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 7 STREET between AVENUE A and AVENUE B, EAST 7 STREET between AVENUE B and AVENUE C, EAST 8 STREET between AVENUE B and AVENUE C, AVENUE A between EAST 10 STREET and EAST 7 STREET, AVENUE A between EAST 7 STREET and EAST 6 STREET",Manhattan,3,9,Television,Cable-episodic,United States of America,10009
+562989,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 10:00:00 PM,03/03/2021 03:37:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562985,Shooting Permit,03/09/2021 09:00:00 AM,03/09/2021 11:00:00 PM,03/03/2021 03:22:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","HANSON PLACE between ST FELIX STREET and ASHLAND PLACE, HANSON PLACE between ST FELIX STREET and FORT GREENE PLACE, ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, ASHLAND PLACE between FULTON STREET and LAFAYETTE AVENUE, ASHLAND PLACE between DEKALB AVENUE and MYRTLE AVENUE, ST FELIX STREET between LAFAYETTE AVENUE and HANSON PLACE",Brooklyn,2,"78, 88",Television,Episodic series,United States of America,"11201, 11217"
+562982,Shooting Permit,03/08/2021 07:15:00 AM,03/08/2021 07:00:00 PM,03/03/2021 03:01:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between CONSELYEA STREET and SKILLMAN AVENUE, CONSELYEA STREET between MANHATTAN AVENUE and LEONARD STREET",Brooklyn,1,"90, 94",Commercial,Commercial,United States of America,11211
+562976,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 11:00:00 PM,03/03/2021 02:25:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 9 STREET, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+562972,Shooting Permit,03/09/2021 10:00:00 AM,03/10/2021 12:00:00 AM,03/03/2021 02:16:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 85 STREET and EAST 89 STREET, EAST 87 STREET between 5 AVENUE and MADISON AVENUE, EAST 88 STREET between 5 AVENUE and MADISON AVENUE, LEXINGTON AVENUE between EAST 86 STREET and EAST 91 STREET, EAST 86 STREET between PARK AVENUE and LEXINGTON AVENUE, MADISON AVENUE between EAST 92 STREET and EAST 97 STREET, EAST 95 STREET between MADISON AVENUE and 5 AVENUE",Manhattan,"11, 64, 8","19, 22, 23",Television,Episodic series,United States of America,"10028, 10029, 10128"
+562959,Shooting Permit,03/05/2021 06:00:00 AM,03/06/2021 04:00:00 AM,03/03/2021 01:29:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562956,Shooting Permit,03/08/2021 06:30:00 AM,03/08/2021 10:00:00 PM,03/03/2021 01:21:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562945,Shooting Permit,03/05/2021 06:00:00 AM,03/06/2021 01:00:00 AM,03/03/2021 12:39:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between HARRISON PLACE and JOHNSON AVENUE, HARRISON PLACE between KNICKERBOCKER AVENUE and PORTER AVENUE",Brooklyn,"1, 4","10, 90",Television,Cable-episodic,United States of America,"10018, 11237"
+562944,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 11:00:00 PM,03/03/2021 12:38:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562941,Shooting Permit,03/08/2021 12:00:00 PM,03/09/2021 02:00:00 AM,03/03/2021 12:28:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 14 STREET and EAST 13 STREET, 3 AVENUE between EAST 13 STREET and EAST 10 STREET, EAST 9 STREET between 3 AVENUE and 4 AVENUE, WANAMAKER PLACE between LAFAYETTE STREET and BROADWAY, BROADWAY between WANAMAKER PLACE and EAST 8 STREET, ASTOR PLACE between BROADWAY and LAFAYETTE STREET, EAST 10 STREET between 3 AVENUE and 2 AVENUE, 3 AVENUE between EAST 9 STREET and ST MARKS PLACE, EAST 11 STREET between 3 AVENUE and 2 AVENUE, TARAS SHEVCHENKO PLACE between EAST 7 STREET and EAST 6 STREET, 3 AVENUE between EAST 10 STREET and EAST 9 STREET, 3 AVENUE between EAST 9 STREET and ASTOR PLACE, 3rd Avenue between E. 7th St and E. 6th St, LAFAYETTE STREET between ASTOR PLACE and EAST 4 STREET",Manhattan,"2, 3","6, 9",Television,Cable-episodic,United States of America,10003
+562936,Shooting Permit,03/04/2021 10:00:00 AM,03/05/2021 02:00:00 AM,03/03/2021 12:11:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between MONTGOMERY PLACE and 3 STREET, PROSPECT PARK WEST between GARFIELD PLACE and 2 STREET, PROSPECT PARK WEST between CARROLL STREET and GARFIELD PLACE, 7 AVENUE between CARROLL STREET and 1 STREET, GARFIELD PLACE between 8 AVENUE and PROSPECT PARK WEST",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+562932,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 11:00:00 PM,03/03/2021 11:57:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562922,Shooting Permit,03/05/2021 08:00:00 AM,03/06/2021 12:00:00 AM,03/03/2021 10:44:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","HANCOCK STREET between WYCKOFF AVENUE and IRVING AVENUE, WEIRFIELD STREET between WYCKOFF AVENUE and IRVING AVENUE, JEFFERSON AVENUE between WYCKOFF AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between JEFFERSON AVENUE and HALSEY STREET, IRVING AVENUE between CORNELIA STREET and JEFFERSON AVENUE, WEIRFIELD ST between WYCKOFF AVENUE and CYPRESS AVE",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562919,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 10:00:00 PM,03/03/2021 10:36:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562918,Shooting Permit,03/05/2021 12:00:00 PM,03/06/2021 03:00:00 AM,03/03/2021 10:27:40 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562913,Shooting Permit,03/11/2021 07:30:00 AM,03/11/2021 11:00:00 PM,03/03/2021 10:12:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562909,Shooting Permit,03/10/2021 08:00:00 AM,03/10/2021 11:00:00 PM,03/03/2021 09:44:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562905,Shooting Permit,03/06/2021 06:00:00 AM,03/06/2021 10:00:00 PM,03/03/2021 08:58:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562893,Shooting Permit,03/07/2021 06:00:00 AM,03/07/2021 06:00:00 PM,03/03/2021 08:18:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT STREET between EAST 9 STREET and EAST 10 STREET, EAST 10 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 10 STREET and EAST 11 STREET, 2 AVENUE between EAST 10 STREET and EAST 9 STREET, ST MARKS PLACE between 1 AVENUE and 2 AVENUE, EAST 11 STREET between 1 AVENUE and 2 AVENUE, BROADWAY between EAST 12 STREET and EAST 13 STREET, EAST 11 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 9 STREET and EAST 10 STREET, EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 2 AVENUE and 3 AVENUE, EAST 12 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between ASTOR PLACE and EAST 9 STREET, EAST 10 STREET between 1 AVENUE and 2 AVENUE, EAST 10 STREET between 3 AVENUE and 4 AVENUE",Manhattan,"2, 3","6, 9",Television,Episodic series,United States of America,10003
+562868,Shooting Permit,03/08/2021 09:30:00 AM,03/08/2021 11:30:00 PM,03/02/2021 08:10:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 104 STREET and EAST 103 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 103 STREET and EAST 102 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET, MADISON AVENUE between EAST 102 STREET and EAST 99 STREET, 3 AVENUE between EAST 104 STREET and EAST 108 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+562854,Shooting Permit,03/10/2021 08:00:00 AM,03/11/2021 12:00:00 AM,03/02/2021 05:41:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562851,Shooting Permit,03/08/2021 08:00:00 AM,03/08/2021 09:00:00 PM,03/02/2021 05:31:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 27 STREET and WEST 29 STREET, WEST 28 STREET between 9 AVENUE and 10 AVENUE, 89 AVENUE between 164 STREET and 165 STREET, 89 AVENUE between 165 STREET and MERRICK BOULEVARD, 89 AVENUE between MERRICK BOULEVARD and 168 STREET, 165 STREET between 89 AVENUE and HILLSIDE AVENUE, MERRICK BOULEVARD between HILLSIDE AVENUE and 89 AVENUE, 88 AVENUE between 165 STREET and MERRICK BOULEVARD",Manhattan,"12, 4","10, 103",Television,Cable-episodic,United States of America,"10001, 11432"
+562850,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 09:30:00 PM,03/02/2021 05:30:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 111 STREET and WEST 112 STREET, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and ST NICHOLAS AVENUE, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 111 STREET between ADAM CLAYTON POWELL JR BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 110 STREET between FRED DOUGLASS CIRCLE and LENOX AVENUE, ADAM CLAYTON POWELL JR BOULEVARD between WEST 112 STREET and WEST 113 STREET, WEST 112 STREET between FREDRICK DOUGLAS BOULEVARD and ST NICHOLAS AVENUE",Manhattan,"10, 64","22, 28",Television,Cable-episodic,United States of America,"10023, 10024, 10025, 10026"
+562846,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 11:00:00 PM,03/02/2021 05:03:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562843,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 10:00:00 PM,03/02/2021 04:54:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, 59 AVENUE between 156 STREET and 157 STREET, HORACE HARDING EXPRESSWAY between 156TH STREET and 157TH STREET, 157TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, Horace Harding Expressway between 155th Street and 156th Street, 155TH STREET between 59 AVENUE and HORACE HARDING EXPRESSWAY, 156th Street between 59 AVENUE and Horace Harding Expressway, 156 STREET between BOOTH MEMORIAL AVENUE and 59 AVENUE",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365"
+562828,Shooting Permit,03/07/2021 07:00:00 AM,03/07/2021 08:00:00 PM,03/02/2021 03:55:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","GOTHIC DRIVE between 168 STREET and CHAPIN PARKWAY, CHAPIN PARKWAY between GOTHIC DRIVE and CHAPIN COURT, GOTHIC DRIVE between 168 STREET and 168 PLACE, 21 STREET between DITMARS BOULEVARD and 21 AVENUE, 21 AVENUE between 21 STREET and 19 STREET",Queens,"1, 8","107, 114",Television,Cable-episodic,United States of America,"11105, 11432"
+562826,Shooting Permit,03/05/2021 05:00:00 AM,03/05/2021 10:00:00 PM,03/02/2021 03:40:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 140 STREET between BRUCKNER BOULEVARD and WALNUT AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+562825,Shooting Permit,03/03/2021 09:00:00 AM,03/04/2021 01:00:00 AM,03/02/2021 03:40:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between MONTGOMERY PLACE and 2 STREET, PROSPECT PARK WEST between GARFIELD PLACE and 3 STREET, 8 AVENUE between 3 STREET and 6 STREET, PROSPECT PARK WEST between GARFIELD PLACE and CARROLL STREET, 7 AVENUE between CARROLL STREET and 1 STREET, GARFIELD PLACE between 8 AVENUE and PROSPECT PARK WEST",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+562824,Shooting Permit,03/04/2021 01:00:00 PM,03/05/2021 03:00:00 AM,03/02/2021 03:34:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562793,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 10:00:00 PM,03/02/2021 01:56:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE, GREENPOINT AVENUE between KINGSLAND AVENUE and DEAD END",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562787,Shooting Permit,03/04/2021 10:00:00 AM,03/04/2021 11:59:00 PM,03/02/2021 01:20:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WHITE STREET and BEACH STREET, WEST BROADWAY between WHITE STREET and FRANKLIN STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, BEACH STREET between VARICK STREET and CHURCH STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, 6 AVENUE between BEACH STREET and WHITE STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between WEST BROADWAY and 6 AVENUE, VARICK STREET between FRANKLIN STREET and LEONARD STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between WORTH STREET and LEONARD STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10013
+562767,Shooting Permit,03/04/2021 08:00:00 AM,03/04/2021 10:00:00 PM,03/02/2021 12:17:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","HALSEY STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, HALSEY STREET between IRVING AVENUE and WYCKOFF AVENUE, IRVING AVENUE between HALSEY STREET and ELDERT STREET, ELDERT STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562744,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 10:00:00 PM,03/02/2021 10:36:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 AVENUE and 44 DRIVE, 44 ROAD between 11 STREET and 21 STREET, 21 STREET between 44 ROAD and 44 DRIVE, 44 DRIVE between 11 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+562742,Theater Load in and Load Outs,03/09/2021 12:01:00 AM,03/13/2021 11:59:00 PM,03/02/2021 10:31:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 33 STREET between 7 AVENUE and 8 AVENUE, WEST 31 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 31 STREET and WEST 33 STREET, 7 AVENUE between WEST 31 STREET and WEST 33 STREET",Manhattan,"4, 5",14,Theater,Theater,United States of America,"10001, 10121"
+562741,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 10:00:00 PM,03/02/2021 10:30:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 44 AVENUE and 44 DRIVE, 44 ROAD between 11 STREET and 21 STREET, 21 STREET between 44 ROAD and 44 DRIVE, 44 DRIVE between 11 STREET and 21 STREET",Queens,2,108,Commercial,Commercial,United States of America,11101
+562736,Shooting Permit,03/09/2021 08:00:00 AM,03/10/2021 12:00:00 AM,03/02/2021 10:15:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562735,Shooting Permit,03/08/2021 08:00:00 AM,03/09/2021 12:00:00 AM,03/02/2021 10:12:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562730,Shooting Permit,03/05/2021 09:00:00 AM,03/06/2021 01:15:00 AM,03/02/2021 09:31:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between VARICK AVENUE and STEWART AVENUE, STEWART AVENUE between JOHNSON AVENUE and INGRAHAM STREET, STEWART AVENUE between INGRAHAM STREET and FLUSHING AVENUE, FLUSHING AVENUE between STEWART AVENUE and WYCKOFF AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between FLUSHING AVENUE and RANDOLPH STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+562724,Rigging Permit,03/04/2021 11:00:00 PM,03/05/2021 02:00:00 PM,03/02/2021 08:56:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between EAST 15 STREET and EAST 17 STREET,Manhattan,6,13,Television,Episodic series,United States of America,10003
+562723,Rigging Permit,03/04/2021 09:00:00 AM,03/04/2021 02:00:00 PM,03/02/2021 08:55:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between EAST 15 STREET and EAST 17 STREET,Manhattan,6,13,Television,Episodic series,United States of America,10003
+562722,Shooting Permit,03/04/2021 07:00:00 AM,03/04/2021 11:00:00 PM,03/02/2021 08:55:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 13 STREET and EAST 16 STREET, EAST 17 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 15 STREET and EAST 17 STREET",Manhattan,"3, 4, 6","10, 13, 9",Television,Episodic series,United States of America,"10003, 10011"
+562688,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 10:00:00 PM,03/01/2021 07:17:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 102 STREET and EAST 105 STREET, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 106 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 106 STREET and EAST 104 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+562676,Shooting Permit,03/11/2021 09:00:00 AM,03/12/2021 02:00:00 AM,03/01/2021 05:37:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 100 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 98 STREET between RIVERSIDE DRIVE and BROADWAY, WEST END AVENUE between WEST 100 STREET and WEST 99 STREET, BROADWAY between WEST 96 STREET and WEST 103 STREET, WEST 98 STREET between WEST END AVENUE and BROADWAY, WEST 99 STREET between WEST END AVENUE and BROADWAY, WEST 97 STREET between AMSTERDAM AVENUE and BROADWAY",Manhattan,7,24,Television,Episodic series,United States of America,10025
+562656,Shooting Permit,03/05/2021 12:00:00 PM,03/06/2021 01:00:00 AM,03/01/2021 04:22:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MYRTLE AVENUE between CHARLES PLACE and CENTRAL AVENUE, HART STREET between EVERGREEN AVENUE and BUSHWICK AVENUE, EVERGREEN AVENUE between HART STREET and CEDAR STREET, KNICKERBOCKER AVENUE between DEKALB AVENUE and TROUTMAN STREET",Brooklyn,4,83,Television,Episodic series,United States of America,"11221, 11237"
+562655,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 10:00:00 PM,03/01/2021 04:18:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEVINS STREET between DOUGLASS STREET and DEGRAW STREET, NEVINS STREET between DOUGLASS STREET and UNION STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET, UNION STREET between NEVINS STREET and BOND STREET, DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLASS STREET between 3 AVENUE and NEVINS STREET",Brooklyn,6,"76, 78",Television,Episodic series,United States of America,"11215, 11217, 11231"
+562654,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 10:00:00 PM,03/01/2021 04:11:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562651,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 11:00:00 PM,03/01/2021 04:05:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562650,Shooting Permit,03/05/2021 07:00:00 AM,03/06/2021 01:00:00 AM,03/01/2021 04:00:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 71 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 72 STREET and EAST 71 STREET, PARK AVENUE between EAST 71 STREET and EAST 69 STREET, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 70 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, PARK AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+562637,Shooting Permit,03/03/2021 10:00:00 AM,03/04/2021 03:30:00 AM,03/01/2021 03:24:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 40 STREET and EAST 41 STREET, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 46 STREET and EAST 49 STREET, EAST 46 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between MADISON AVENUE and PARK AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10167, 10171, 10172, 10177"
+562633,Shooting Permit,03/03/2021 08:00:00 AM,03/03/2021 11:59:00 PM,03/01/2021 02:57:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between WOODWARD AVENUE and FLUSHING AVENUE, WOODWARD AVENUE between METROPOLITAN AVENUE and FLUSHING AVENUE, FURMANVILLE AVENUE between 78 STREET and 80 STREET, JUNIPER VALLEY ROAD between 78 STREET and 79 STREET, 79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, DRY HARBOR ROAD between 63 AVENUE and JUNIPER BLVD SOUTH, 63 AVENUE between DRY HARBOR ROAD and 82 PLACE, JUNIPER BLVD NORTH between DRY HARBOR ROAD and 80 STREET, 82 PLACE between 63 AVENUE and PENELOPE AVENUE, 82 PLACE between 63 AVENUE and DRY HARBOR ROAD, JUNIPER BLVD SOUTH between 76 STREET and 80 STREET, 81 STREET between PENELOPE AVENUE and JUNIPER BLVD SOUTH",Queens,5,104,Television,Episodic series,United States of America,"11379, 11385"
+562626,Shooting Permit,03/09/2021 08:00:00 AM,03/09/2021 11:00:00 PM,03/01/2021 02:32:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562619,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 11:00:00 PM,03/01/2021 02:24:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVE between ONDERDONK AVE and ST NICHOLAS AVE, JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+562618,Shooting Permit,03/03/2021 09:00:00 AM,03/03/2021 10:30:00 PM,03/01/2021 02:21:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WHITE STREET and BEACH STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, BEACH STREET between VARICK STREET and CHURCH STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, 6 AVENUE between BEACH STREET and WHITE STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between WEST BROADWAY and 6 AVENUE, VARICK STREET between FRANKLIN STREET and LEONARD STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between WORTH STREET and LEONARD STREET, WORTH STREET between HUDSON STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10013
+562603,Shooting Permit,03/02/2021 08:00:00 AM,03/03/2021 12:00:00 AM,03/01/2021 01:39:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between MONTGOMERY PLACE and 6 STREET, 1 STREET between 8 AVENUE and PROSPECT PARK WEST, PROSPECT PARK WEST between GARFIELD PLACE and 4 STREET, PROSPECT PARK WEST between GARFIELD PLACE and CARROLL STREET, 7 AVENUE between CARROLL STREET and 1 STREET, GARFIELD PLACE between 8 AVENUE and PROSPECT PARK WEST",Brooklyn,"55, 6",78,Television,Episodic series,United States of America,11215
+562600,Shooting Permit,03/04/2021 06:30:00 AM,03/04/2021 09:30:00 PM,03/01/2021 01:38:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 42 STREET and 43 STREET, 42 STREET between 43 AVENUE and QUEENS BOULEVARD, 43 STREET between QUEENS BOULEVARD and SKILLMAN AVENUE, 44 STREET between QUEENS BOULEVARD and SKILLMAN AVENUE, 45 STREET between QUEENS BOULEVARD and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11104
+562589,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 10:00:00 PM,03/01/2021 01:11:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","24 STREET between 44 ROAD and 43 AVENUE, 44 ROAD between 24 STREET and CRESCENT STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562563,Shooting Permit,03/04/2021 11:00:00 AM,03/05/2021 02:00:00 AM,03/01/2021 12:17:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+562544,Shooting Permit,03/10/2021 06:00:00 AM,03/10/2021 08:00:00 PM,03/01/2021 11:14:01 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562543,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 08:00:00 PM,03/01/2021 11:10:56 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562542,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 08:00:00 PM,03/01/2021 11:08:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562539,Shooting Permit,03/08/2021 07:00:00 AM,03/08/2021 10:00:00 PM,03/01/2021 10:51:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562533,Shooting Permit,03/07/2021 07:00:00 AM,03/07/2021 10:00:00 PM,03/01/2021 10:09:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562527,Rigging Permit,03/05/2021 06:00:00 AM,03/05/2021 07:00:00 PM,03/01/2021 10:01:30 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+562526,Rigging Permit,03/04/2021 06:00:00 AM,03/04/2021 07:00:00 PM,03/01/2021 09:58:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+562525,Shooting Permit,03/04/2021 07:30:00 AM,03/04/2021 10:00:00 PM,03/01/2021 09:56:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562524,Rigging Permit,03/03/2021 06:00:00 AM,03/03/2021 07:00:00 PM,03/01/2021 09:53:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+562518,Shooting Permit,03/03/2021 03:00:00 PM,03/04/2021 01:00:00 AM,03/01/2021 09:22:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 11 STREET between 3 AVENUE and 4 AVENUE,Manhattan,3,9,Television,Episodic series,United States of America,10003
+562517,Shooting Permit,03/03/2021 09:00:00 AM,03/03/2021 06:00:00 PM,03/01/2021 09:21:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER SQUARE between EAST 6 STREET and EAST 7 STREET, COOPER SQUARE between ST MARKS PLACE and EAST 7 STREET, 3 AVENUE between EAST 9 STREET and ASTOR PLACE, 3 AVENUE between EAST 10 STREET and EAST 9 STREET, EAST 9 STREET between 3 AVENUE and 4 AVENUE, EAST 10 STREET between 3 AVENUE and 4 AVENUE, 4 AVENUE between EAST 9 STREET and EAST 10 STREET, GRAND STREET between CLINTON STREET and PITT STREET, PITT STREET between GRAND STREET and BROOME STREET, GRAND STREET between PITT STREET and BIALYSTOKER PLACE, GRAND STREET between BIALYSTOKER PLACE and COLUMBIA STREET, GRAND STREET between COLUMBIA STREET and LEWIS STREET, GRAND STREET between LEWIS STREET and FDR DRIVE, BROOME STREET between PITT STREET and RIDGE STREET, ST MARK'S PLACE between 1 AVENUE and 2 AVENUE",Manhattan,"2, 3","7, 9",Television,Episodic series,United States of America,"10002, 10003"
+562515,Shooting Permit,03/03/2021 08:00:00 AM,03/03/2021 05:00:00 PM,03/01/2021 09:11:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 ROAD between 11 STREET and 21 STREET, 11 STREET between 44 ROAD and 44 DRIVE",Queens,2,108,Commercial,Commercial,United States of America,11101
+562509,Shooting Permit,03/04/2021 12:00:00 PM,03/05/2021 02:00:00 AM,03/01/2021 08:11:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","BROOK AVENUE between EAST 161 STREET and 3 AVENUE, 3 AVENUE between BROOK AVENUE and EAST 162 STREET, BROOK AVENUE between 3 AVENUE and EAST 158 STREET, GRAND CONCOURSE between EAST 158 STREET and EAST 153 STREET, MADISON AVENUE between EAST 43 STREET and EAST 45 STREET, EAST 44 STREET between MADISON AVENUE and 5 AVENUE, E 43 STREET between MADISON AVENUE and 6 AVENUE",Manhattan,"1, 3, 4, 5","14, 40, 42, 44",Television,Cable-episodic,United States of America,"10017, 10173, 10451, 10455"
+562483,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 10:00:00 PM,02/28/2021 07:59:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 10 STREET and 9 STREET, 10 STREET between 44 AVENUE and 43 ROAD, 9 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+562461,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 10:00:00 PM,02/28/2021 04:39:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and 44 AVENUE, 44 AVENUE between 9 STREET and 10 STREET, 10 STREET between 44 AVENUE and 43 ROAD, 9 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Commercial,Commercial,United States of America,11101
+562394,Shooting Permit,03/04/2021 11:00:00 AM,03/04/2021 11:00:00 PM,02/26/2021 06:48:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST LUKE'S PLACE between HUDSON STREET and SEVENTH AVENUE SOUTH, BEDFORD STREET between MORTON STREET and COMMERCE STREET, LEROY STREET between BLEECKER STREET and BEDFORD STREET, 7 AVENUE SOUTH between GROVE STREET and CLARKSON STREET, HUDSON STREET between ST LUKES PLACE and CLARKSON STREET, 6 AVENUE between WEST 8 STREET and WEST 10 STREET, WEST 9 STREET between 6 AVENUE and 5 AVENUE, BLEECKER STREET between LEROY STREET and CARMINE STREET, BLEECKER STREET between LEROY STREET and MORTON STREET",Manhattan,2,6,Television,Episodic series,United States of America,"10011, 10014"
+562382,Shooting Permit,03/09/2021 06:00:00 AM,03/09/2021 09:00:00 PM,02/26/2021 05:26:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562380,Shooting Permit,03/08/2021 06:00:00 AM,03/08/2021 09:00:00 PM,02/26/2021 05:23:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562372,Shooting Permit,03/04/2021 09:00:00 AM,03/04/2021 05:30:00 PM,02/26/2021 05:07:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",DOVER STREET between WATER STREET and FRONT STREET,Manhattan,"1, 3, 5, 64, 8","1, 18, 19, 22, 5",Film,Short,United States of America,"10002, 10019, 10021, 10022, 10023, 10038"
+562359,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 10:00:00 PM,02/26/2021 04:39:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE between 101 ST ST. and 105 TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+562357,Shooting Permit,03/04/2021 07:00:00 AM,03/05/2021 01:00:00 AM,02/26/2021 04:38:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 72 STREET between MADISON AVENUE and PARK AVENUE, MADISON AVENUE between EAST 72 STREET and EAST 71 STREET, EAST 71 STREET between MADISON AVENUE and 5 AVENUE, EAST 71 STREET between PARK AVENUE and MADISON AVENUE, PARK AVENUE between EAST 72 STREET and EAST 71 STREET, PARK AVENUE between EAST 71 STREET and EAST 69 STREET, EAST 70 STREET between PARK AVENUE and MADISON AVENUE, EAST 70 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 70 STREET and EAST 71 STREET, PARK AVENUE between EAST 64 STREET and EAST 63 STREET, EAST 63 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Television,Episodic series,United States of America,"10021, 10065"
+562355,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 10:00:00 PM,02/26/2021 04:35:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+562349,Shooting Permit,03/04/2021 07:00:00 AM,03/04/2021 09:00:00 PM,02/26/2021 04:08:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 28 STREET between MOUNT CARMEL PLACE and 1 AVENUE, MOUNT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, EAST 30 STREET between 2 AVENUE and LEXINGTON AVENUE, EAST 29 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 29 STREET and EAST 30 STREET",Manhattan,6,"13, 17",Television,Episodic series,United States of America,"10010, 10016"
+562346,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 11:00:00 PM,02/26/2021 03:48:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between HARRISON PLACE and JOHNSON AVENUE, INGRAHAM STREET between KNICKERBOCKER AVENUE and VARICK AVENUE, HARRISON PLACE between KNICKERBOCKER AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+562345,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 10:00:00 PM,02/26/2021 03:47:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562344,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 09:00:00 PM,02/26/2021 03:42:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562339,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 09:00:00 PM,02/26/2021 03:21:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562334,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 09:00:00 PM,02/26/2021 03:03:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562331,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 11:00:00 PM,02/26/2021 02:47:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562326,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 08:00:00 PM,02/26/2021 01:48:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between BOND STREET and DEAD END, BOND STREET between DEGRAW STREET and DOUGLASS STREET, DOUGLASS STREET between BOND STREET and DEAD END",Brooklyn,6,"76, 78",Television,Not Applicable,United States of America,11217
+562324,Shooting Permit,03/04/2021 08:00:00 AM,03/04/2021 10:00:00 PM,02/26/2021 01:32:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+562318,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 09:00:00 PM,02/26/2021 01:04:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","THOMSON AVENUE between JACKSON AVENUE and 44 DRIVE, 44 DRIVE between JACKSON AVENUE and THOMSON AVENUE, COURT SQUARE between THOMSON AVENUE and DEAD END, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+562312,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 10:00:00 PM,02/26/2021 12:26:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+562311,Shooting Permit,03/04/2021 07:00:00 AM,03/04/2021 10:00:00 PM,02/26/2021 12:18:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+562307,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 09:00:00 PM,02/26/2021 12:09:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WHITE STREET and BEACH STREET, WHITE STREET between 6 AVENUE and WEST BROADWAY, BEACH STREET between VARICK STREET and CHURCH STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, 6 AVENUE between BEACH STREET and WHITE STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between 6 AVENUE and WEST BROADWAY, VARICK STREET between FRANKLIN STREET and LEONARD STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between WORTH STREET and LEONARD STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+562306,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 10:00:00 PM,02/26/2021 12:07:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+562302,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 09:00:00 PM,02/26/2021 11:14:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 85 STREET and WEST 81 STREET, WEST 85 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 85 STREET and WEST 86 STREET, WEST 85 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 86 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 86 STREET between COLUMBUS AVENUE and WEST END AVENUE, WEST END AVENUE between WEST 87 STREET and WEST 86 STREET, RIVERSIDE DRIVE between WEST 86 STREET and WEST 87 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,10024
+562295,Shooting Permit,03/02/2021 06:30:00 AM,03/02/2021 07:00:00 PM,02/26/2021 09:42:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between WEST 26 STREET and WEST 25 STREET, WEST 24 STREET between 6 AVENUE and 5 AVENUE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 28 STREET, MADISON AVENUE between EAST 23 STREET and EAST 25 STREET, WEST 27 STREET between BROADWAY and 5 AVENUE, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, WEST 26 STREET between BROADWAY and 5 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, WEST 25 STREET between 6 AVENUE and 5 AVENUE",Manhattan,5,13,Television,Episodic series,United States of America,"10001, 10010, 10016"
+562271,Shooting Permit,03/04/2021 08:00:00 AM,03/04/2021 07:00:00 PM,02/25/2021 09:00:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",W.125th St between FREDERICK DOUGLASS BOULEVARD and Adam Clayton Powelll JR BLVD,Manhattan,10,28,Television,Special/Awards Show,United States of America,10027
+562263,Shooting Permit,02/28/2021 07:00:00 AM,02/28/2021 08:00:00 PM,02/25/2021 06:40:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",ELDERT STREET between WILSON AVENUE and CENTRAL AVENUE,Brooklyn,4,83,Commercial,Commercial,United States of America,11207
+562257,Shooting Permit,03/03/2021 11:00:00 AM,03/04/2021 01:00:00 AM,02/25/2021 05:12:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between NASSAU AVENUE and FROST STREET, BAYARD STREET between LORIMER STREET and LEONARD STREET, RICHARDSON STREET between LORIMER STREET and LEONARD STREET, LEONARD STREET between RICHARDSON STREET and BAYARD STREET, Meeker Ave between Frost Street and Lorimer Street, BAYARD STREET between UNION AVENUE and LORIMER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11211, 11222"
+562249,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 11:00:00 PM,02/25/2021 04:34:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562241,Theater Load in and Load Outs,02/26/2021 06:00:00 AM,02/28/2021 07:00:00 AM,02/25/2021 03:33:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE, FLATBUSH AVENUE between ATLANTIC AVENUE and 5 AVENUE",Brooklyn,"2, 6",78,Theater,Theater,United States of America,11217
+562239,Shooting Permit,02/26/2021 08:00:00 AM,02/26/2021 11:00:00 PM,02/25/2021 03:30:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 136 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, WEST 137 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 139 STREET and WEST 137 STREET, WEST 139 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD, WEST 139 ST between ADAM CLAYTON POWELL BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 138 STREET and WEST 139 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 140 STREET and WEST 139 STREET",Manhattan,10,32,Television,Episodic series,United States of America,"10030, 10037"
+562236,Shooting Permit,03/01/2021 06:30:00 AM,03/01/2021 07:00:00 PM,02/25/2021 03:22:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","STUYVESANT STREET between EAST 9 STREET and EAST 10 STREET, EAST 10 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 10 STREET and EAST 11 STREET, 2 AVENUE between EAST 10 STREET and EAST 9 STREET, ST MARKS PLACE between 2 AVENUE and 1 AVENUE, EAST 9 STREET between 2 AVENUE and 1 AVENUE, EAST 11 STREET between 2 AVENUE and 1 AVENUE, EAST 6 STREET between 2 AVENUE and TARAS SHEVCHENKO PLACE, EAST 11 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 9 STREET and EAST 10 STREET, EAST 11 STREET between 3 AVENUE and 4 AVENUE, EAST 12 STREET between 2 AVENUE and 3 AVENUE, EAST 12 STREET between 1 AVENUE and 2 AVENUE, 3 AVENUE between ASTOR PLACE and EAST 9 STREET",Manhattan,3,9,Television,Episodic series,United States of America,10003
+562230,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 07:00:00 PM,02/25/2021 02:59:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between 7 AVENUE and BROADWAY, WEST 53 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 53 STREET and WEST 52 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 51 STREET and WEST 53 STREET, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,5,18,Television,Cable-episodic,United States of America,"10019, 10103, 10119"
+562227,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 11:00:00 PM,02/25/2021 02:53:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","PURVES STREET between DEAD END and JACKSON AVENUE, 44 ROAD between CRESCENT STREET and 23 STREET, 44 DRIVE between 23 STREET and JACKSON AVENUE, 43 AVENUE between HUNTER STREET and JACKSON AVENUE, CRESCENT STREET between 43 AVENUE and 44 ROAD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+562225,Shooting Permit,03/02/2021 08:00:00 AM,03/02/2021 11:00:00 PM,02/25/2021 02:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 2 STREET and EAST HOUSTON STREET, AVENUE A between EAST 2 STREET and EAST 3 STREET, AVENUE A between EAST 3 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, AVENUE B between EAST 3 STREET and EAST 4 STREET, EAST 4 STREET between AVENUE B and AVENUE C, EAST 23 STREET between 1 AVENUE and FDR DRIVE, EAST 23 STREET between 1 AVENUE and 2 AVENUE",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,"10009, 10010"
+562224,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 11:00:00 PM,02/25/2021 02:08:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+562222,Shooting Permit,03/02/2021 10:00:00 AM,03/02/2021 06:00:00 PM,02/25/2021 01:59:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 49 AVENUE and 47 AVENUE,Queens,2,108,Television,Cable-episodic,United States of America,11101
+562219,Rigging Permit,03/02/2021 06:00:00 AM,03/02/2021 07:00:00 PM,02/25/2021 01:38:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+562218,Shooting Permit,03/01/2021 06:30:00 AM,03/01/2021 08:30:00 PM,02/25/2021 01:34:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between WHITE STREET and BEACH STREET, WHITE STREET between 6 AVENUE and WEST BROADWAY, BEACH STREET between VARICK STREET and CHURCH STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, 6 AVENUE between BEACH STREET and WHITE STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, FRANKLIN STREET between 6 AVENUE and WEST BROADWAY, VARICK STREET between FRANKLIN STREET and LEONARD STREET, VARICK STREET between FRANKLIN STREET and NORTH MOORE STREET, FRANKLIN STREET between VARICK STREET and HUDSON STREET, HUDSON STREET between WORTH STREET and LEONARD STREET, FRANKLIN STREET between HUDSON STREET and GREENWICH STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+562217,Shooting Permit,03/03/2021 06:30:00 AM,03/03/2021 10:00:00 PM,02/25/2021 01:24:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562213,Shooting Permit,03/04/2021 07:00:00 AM,03/04/2021 10:00:00 PM,02/25/2021 12:34:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562207,Shooting Permit,03/03/2021 06:00:00 AM,03/04/2021 12:00:00 AM,02/25/2021 12:20:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between DELANCEY STREET and RIVINGTON STREET, ALLEN STREET between STANTON STREET and RIVINGTON STREET, ALLEN STREET between STANTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between ALLEN STREET and LUDLOW STREET, ESSEX STREET between STANTON STREET and RIVINGTON STREET, ESSEX STREET between RIVINGTON STREET and DELANCEY STREET, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, 5 AVENUE between EAST 28 STREET and EAST 26 STREET, EAST 27 STREET between 5 AVENUE and PARK AVENUE SOUTH, MADISON AVENUE between EAST 26 STREET and EAST 29 STREET, EAST 28 STREET between MADISON AVENUE and 5 AVENUE, PARK AVENUE SOUTH between EAST 26 STREET and EAST 29 STREET",Manhattan,"3, 5","13, 5, 7, 9",Television,Episodic series,United States of America,"10001, 10002, 10009, 10010, 10016"
+562198,Shooting Permit,03/05/2021 10:00:00 AM,03/06/2021 02:00:00 AM,02/25/2021 11:04:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+562191,Shooting Permit,03/01/2021 10:00:00 AM,03/01/2021 11:59:00 PM,02/25/2021 10:42:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 104 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST 104 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 104 STREET and WEST 103 STREET, WEST END AVENUE between WEST 100 STREET and WEST 106 STREET, WEST 104 STREET between BROADWAY and AMSTERDAM AVENUE",Manhattan,7,24,Television,Cable-episodic,United States of America,10025
+562189,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 10:00:00 PM,02/25/2021 10:28:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562184,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 10:00:00 PM,02/25/2021 10:18:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562181,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 10:00:00 PM,02/25/2021 09:44:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562160,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 11:00:00 PM,02/24/2021 09:55:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562141,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 10:00:00 PM,02/24/2021 06:36:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562140,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 10:00:00 PM,02/24/2021 06:34:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562138,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 10:00:00 PM,02/24/2021 06:31:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562108,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 09:00:00 PM,02/24/2021 04:44:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562107,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 09:00:00 PM,02/24/2021 04:42:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562105,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 09:00:00 PM,02/24/2021 04:40:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+562103,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 10:00:00 PM,02/24/2021 04:26:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALLEN STREET between DELANCEY STREET and RIVINGTON STREET, ALLEN STREET between STANTON STREET and RIVINGTON STREET, ALLEN STREET between STANTON STREET and EAST HOUSTON STREET, EAST HOUSTON STREET between ALLEN STREET and LUDLOW STREET, ESSEX STREET between STANTON STREET and RIVINGTON STREET, ESSEX STREET between RIVINGTON STREET and DELANCEY STREET, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET",Manhattan,3,"5, 7, 9",Television,Episodic series,United States of America,"10002, 10009"
+562097,Shooting Permit,03/02/2021 05:00:00 AM,03/02/2021 11:00:00 PM,02/24/2021 03:59:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between ST LAWRENCE AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and OBRIEN AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, SOUNDVIEW AVE between RANDALL AVENUE and LACOMBE AVENUE, Soundview Ave between Leland Ave and Underhill Ave, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+562095,Shooting Permit,03/02/2021 09:00:00 AM,03/02/2021 11:00:00 PM,02/24/2021 03:53:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST END AVENUE between WEST 97 STREET and WEST 98 STREET, WEST 98 STREET between WEST END AVENUE and BROADWAY, WEST 97 STREET between WEST END AVENUE and BROADWAY, WEST END AVENUE between WEST 96 STREET and WEST 97 STREET, BROADWAY between WEST 97 STREET and WEST 101 STREET, WEST 79 STREET between AMSTERDAM AVENUE and COLUMBUS AVENUE, COLUMBUS AVENUE between WEST 80 STREET and WEST 78 STREET, BROADWAY between WEST 79 STREET and WEST 81 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 77 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 77 STREET and WEST 81 STREET, BROADWAY between WEST 78 STREET and WEST 79 STREET",Manhattan,"64, 7","20, 22, 24",Television,Episodic series,United States of America,"10024, 10025"
+562094,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 11:00:00 PM,02/24/2021 03:50:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+562092,Shooting Permit,02/28/2021 07:00:00 AM,02/28/2021 08:00:00 PM,02/24/2021 03:29:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSBY STREET between GRAND STREET and HOWARD STREET, HOWARD STREET between LAFAYETTE STREET and CROSBY STREET, CROSBY STREET between GRAND STREET and BROOME STREET, LAFAYETTE STREET between GRAND STREET and HOWARD STREET",Manhattan,2,5,Music Video,Signed Artist,United States of America,10013
+562087,Shooting Permit,02/28/2021 07:00:00 AM,02/28/2021 08:00:00 PM,02/24/2021 02:43:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 55 STREET, EAST 49 STREET between MADISON AVENUE and 5 AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 50 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 49 STREET and EAST 50 STREET, EAST 52 STREET between MADISON AVENUE and PARK AVENUE, WEST 51 STREET between 5 AVENUE and 6 AVENUE, MADISON AVENUE between EAST 51 STREET and EAST 50 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10019, 10020, 10022, 10152"
+562085,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 10:00:00 PM,02/24/2021 02:41:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562083,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 10:00:00 PM,02/24/2021 02:34:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11207
+562082,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 10:00:00 PM,02/24/2021 02:34:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11207
+562081,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 11:00:00 PM,02/24/2021 02:29:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 40 STREET between 3 AVENUE and PARK AVENUE, PARK AVENUE between EAST 35 STREET and EAST 38 STREET, EAST 36 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","14, 17",Television,Cable-episodic,United States of America,"10016, 10017"
+562080,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 10:00:00 PM,02/24/2021 02:19:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562079,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 10:00:00 PM,02/24/2021 02:16:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562078,Shooting Permit,02/26/2021 09:00:00 AM,02/26/2021 11:30:00 PM,02/24/2021 02:13:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562076,Shooting Permit,02/25/2021 09:00:00 AM,02/25/2021 11:30:00 PM,02/24/2021 02:10:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+562074,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 09:00:00 PM,02/24/2021 02:03:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 62 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 60 STREET and EAST 63 STREET, MADISON AVENUE between EAST 62 STREET and EAST 61 STREET",Manhattan,"64, 8","19, 22",Television,Cable-episodic,United States of America,10065
+562073,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 09:00:00 PM,02/24/2021 02:00:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 STREET between 4 AVENUE and 3 AVENUE, 3 AVENUE between 11 STREET and 12 STREET",Brooklyn,6,78,Television,Not Applicable,United States of America,11215
+562072,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 10:00:00 PM,02/24/2021 01:59:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+562071,Shooting Permit,02/28/2021 07:00:00 AM,02/28/2021 07:00:00 PM,02/24/2021 01:58:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",MULBERRY STREET between JERSEY STREET and PRINCE STREET,Manhattan,"2, 3",5,Film,Short,United States of America,"10002, 10012"
+562069,Shooting Permit,02/26/2021 11:00:00 AM,02/27/2021 01:00:00 AM,02/24/2021 01:56:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between ANN STREET and SPRUCE STREET, SPRUCE STREET between GOLD STREET and WILLIAM STREET, GOLD STREET between SPRUCE STREET and FULTON STREET, NASSAU STREET between FULTON STREET and JOHN STREET, WATER STREET between JOHN STREET and WALL STREET, PARK ROW between ANN STREET and BEEKMAN STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038"
+562068,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 10:00:00 PM,02/24/2021 01:53:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+562058,Shooting Permit,03/01/2021 01:00:00 PM,03/01/2021 04:00:00 PM,02/24/2021 01:16:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",NEWEL STREET between GREENPOINT AVENUE and CALYER STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562054,Shooting Permit,02/28/2021 07:00:00 AM,02/28/2021 11:00:00 PM,02/24/2021 12:56:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 96 STREET between 1 AVENUE and 2 AVENUE, 2 AVENUE between EAST 94 STREET and EAST 103 STREET",Manhattan,"11, 64, 7, 8","19, 22, 23, 24",Television,Episodic series,United States of America,"10024, 10029, 10128"
+562051,Shooting Permit,03/02/2021 01:00:00 AM,03/03/2021 08:00:00 PM,02/24/2021 12:49:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",MADISON AVENUE between EAST 77 STREET and EAST 78 STREET,Manhattan,8,19,Commercial,Commercial,United States of America,10075
+562048,Shooting Permit,03/01/2021 06:30:00 AM,03/01/2021 10:00:00 PM,02/24/2021 12:21:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562044,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 11:00:00 PM,02/24/2021 12:01:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562041,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 06:00:00 PM,02/24/2021 11:54:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between THOMAS STREET and DUANE STREET, WEST BROADWAY between DUANE STREET and READE STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,1,Film,Short,United States of America,"10006, 10007, 10013"
+562040,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 10:00:00 PM,02/24/2021 11:52:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562037,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 11:00:00 PM,02/24/2021 11:40:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562029,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 09:00:00 PM,02/24/2021 11:03:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562027,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 06:00:00 PM,02/24/2021 10:50:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST BROADWAY between THOMAS STREET and DUANE STREET, WEST BROADWAY between DUANE STREET and READE STREET, DUANE STREET between WEST BROADWAY and CHURCH STREET",Manhattan,1,1,Film,Short,United States of America,10013
+562026,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 10:00:00 PM,02/24/2021 10:38:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+562024,Shooting Permit,03/03/2021 10:00:00 AM,03/04/2021 01:30:00 AM,02/24/2021 10:00:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 40 STREET and EAST 41 STREET, PARK AVENUE between EAST 39 STREET and EAST 40 STREET, EAST 40 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between MADISON AVENUE and PARK AVENUE, EAST 41 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 40 STREET and EAST 41 STREET, EAST 40 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 39 STREET between MADISON AVENUE and PARK AVENUE, EAST 39 STREET between 5 AVENUE and MADISON AVENUE, PARK AVENUE between EAST 46 STREET and EAST 49 STREET, EAST 46 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 6","14, 17, 18",Television,Episodic series,United States of America,"10016, 10017, 10167, 10171, 10172, 10177"
+562021,Shooting Permit,03/01/2021 07:00:00 AM,03/02/2021 11:00:00 PM,02/24/2021 09:19:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","LORIMER STREET between JACKSON STREET and METROPOLITAN AVENUE, JACKSON STREET between MEEKER AVENUE and LEONARD STREET, lorimer street between meeker ave and jackson street, SKILLMAN AVENUE between MEEKER AVENUE and LORIMER STREET, meeker ave between METROPOLITAN AVENUE and Leonard street, union ave between METROPOLITAN AVENUE and meeker ave, WITHERS STREET between MEEKER AVENUE and LEONARD STREET, 43 AVENUE between 12 STREET and 21 STREET, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11211"
+562013,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 10:00:00 PM,02/24/2021 09:00:32 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+562005,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 09:00:00 PM,02/23/2021 09:59:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",24 STREET between 4 AVENUE and 5 AVENUE,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+562004,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 09:00:00 PM,02/23/2021 09:51:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",24 STREET between 4 AVENUE and 5 AVENUE,Brooklyn,7,72,WEB,Not Applicable,United States of America,11232
+562002,Rigging Permit,03/01/2021 06:00:00 AM,03/01/2021 07:00:00 PM,02/23/2021 09:19:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561992,Shooting Permit,03/02/2021 07:00:00 AM,03/03/2021 02:00:00 AM,02/23/2021 07:16:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","SKILLMAN AVENUE between 47 AVENUE and 29 STREET, SKILLMAN AVENUE between PEARSON PLACE and AUSTELL PLACE, SKILLMAN AVENUE between PEARSON PLACE and 49 AVENUE, AUSTELL PLACE between SKILLMAN AVENUE and 27 STREET, DAVIS COURT between PEARSON PLACE and 49 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561983,Shooting Permit,02/26/2021 10:00:00 AM,02/26/2021 11:00:00 PM,02/23/2021 05:47:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORFOLK STREET between EAST HOUSTON STREET and STANTON STREET, EAST HOUSTON STREET between NORFOLK STREET and SUFFOLK STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, AVENUE A between EAST 2 STREET and EAST 1 STREET, AVENUE A between EAST 2 STREET and EAST 3 STREET, AVENUE A between EAST 7 STREET and EAST 10 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 3 STREET between AVENUE A and 1 AVENUE, EAST 2 STREET between AVENUE A and AVENUE B, EAST HOUSTON STREET between ESSEX STREET and NORFOLK STREET, EAST HOUSTON STREET between SUFFOLK STREET and CLINTON STREET",Manhattan,3,"7, 9",Television,Episodic series,United States of America,"10002, 10009"
+561971,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 09:00:00 PM,02/23/2021 03:43:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",BUFFALO AVENUE between LINCOLN PLACE and ST JOHNS PLACE,Brooklyn,8,77,Commercial,Commercial,United States of America,11213
+561962,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 11:00:00 PM,02/23/2021 03:17:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","GERRITSEN AVENUE between DEVON AVENUE and FLORENCE AVENUE, FLORENCE AVENUE between GERRITSEN AVENUE and BEVY COURT, GOTHAM AVENUE between FANE CT SOUTH and GERRITSEN AVENUE, GERRITSEN AVENUE between BARTLETT PLACE and GOTHAM AVENUE, GERRITSEN AVENUE between GOTHAM AVENUE and FLORENCE AVENUE",Brooklyn,"15, 18","61, 63",Television,Cable-episodic,United States of America,"11229, 11234"
+561948,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 10:00:00 PM,02/23/2021 02:10:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREEN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, FREEMAN STREET between PROVOST STREET and MCGUINNESS BOULEVARD, PROVOST STREET between DUPONT STREET and JAVA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561939,Shooting Permit,02/25/2021 07:00:00 AM,02/25/2021 08:00:00 PM,02/23/2021 01:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 70 STREET and WEST 72 STREET, RIVERSIDE DRIVE between WEST 114 STREET and WEST 112 STREET, WEST 113 STREET between RIVERSIDE DRIVE and BROADWAY",Manhattan,"64, 7, 9","20, 22, 26",Television,Episodic series,United States of America,"10023, 10025"
+561926,Shooting Permit,02/27/2021 07:00:00 AM,02/27/2021 07:00:00 PM,02/23/2021 12:10:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELDRIDGE STREET between RIVINGTON STREET and STANTON STREET, RIVINGTON STREET between ELDRIDGE STREET and FORSYTH STREET",Manhattan,3,5,Film,Short,United States of America,10002
+561917,Shooting Permit,03/01/2021 08:00:00 AM,03/01/2021 09:00:00 PM,02/23/2021 11:41:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET, 31 PLACE between HUNTERS POINT AVENUE and BORDEN AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561915,Shooting Permit,02/25/2021 06:30:00 AM,02/25/2021 10:00:00 PM,02/23/2021 11:38:36 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561895,Rigging Permit,02/26/2021 06:00:00 AM,02/26/2021 07:00:00 PM,02/23/2021 10:49:42 AM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561893,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 01:00:00 PM,02/23/2021 10:28:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","BOOTH MEMORIAL AVENUE between KISSENA BOULEVARD and PARSONS BOULEVARD, 59 AVENUE between 156 STREET and 157 STREET, 156th Street between 59 AVENUE and Horace Harding Expressway, 156th Street between 59 AVENUE and Horace Harding Expressway, 157th Street between 59 AVENUE and Horace Harding Expressway, Horace Harding Expressway between 156th Street and 157th Street, Horace Harding Expressway between 155th Street and 156th Street, 155th Street between 59 AVENUE and Horace Harding Expressway",Queens,7,109,Television,Cable-episodic,United States of America,"11355, 11365"
+561876,Shooting Permit,02/26/2021 12:00:00 AM,02/27/2021 03:00:00 AM,02/23/2021 08:43:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561873,Shooting Permit,02/25/2021 11:00:00 AM,02/26/2021 02:00:00 AM,02/23/2021 08:39:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561870,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 08:00:00 PM,02/23/2021 08:37:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between BOND STREET and DEAD END, BOND STREET between DEGRAW STREET and DOUGLASS STREET, DOUGLASS STREET between BOND STREET and DEAD END",Brooklyn,6,"76, 78",Television,Not Applicable,United States of America,11217
+561865,Shooting Permit,02/25/2021 10:00:00 AM,02/26/2021 01:00:00 AM,02/23/2021 07:57:17 AM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK SOUTH between 6 AVENUE and COLUMBUS CIRCLE, BROADWAY between WEST 57 STREET and COLUMBUS CIRCLE, WEST 58 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between CENTRAL PARK SOUTH and WEST 58 STREET, BROADWAY between WEST 57 STREET and WEST 56 STREET, WEST 54 STREET between AVENUE OF THE AMERICAS and 7 AVENUE",Manhattan,"5, 64","18, 22",Television,Episodic series,United States of America,10019
+561861,Shooting Permit,02/25/2021 07:00:00 AM,02/26/2021 02:00:00 AM,02/23/2021 07:14:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between 23 ROAD and DITMARS BOULEVARD, SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH, 30TH RD between CRESCENT ST and 29TH ST, 30TH AVE between 27 STREET and 29 ST, 30TH AVE between 29TH ST and 30TH ST, 30 STREET between 30 AVENUE and NEWTOWN AVENUE, 29TH ST between 30TH AVE and 30TH RD, 29 STREET between 30 DRIVE and 30 ROAD",Queens,1,114,Television,Episodic series,United States of America,"11102, 11105"
+561849,Rigging Permit,02/25/2021 06:00:00 AM,02/25/2021 07:00:00 PM,02/22/2021 07:02:04 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561848,Rigging Permit,02/24/2021 06:00:00 AM,02/24/2021 07:00:00 PM,02/22/2021 06:58:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561837,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/22/2021 04:52:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",WESTMINSTER ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11218
+561833,Shooting Permit,02/26/2021 04:00:00 AM,02/27/2021 02:00:00 AM,02/22/2021 04:37:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","CENTRAL PARK WEST between WEST 72 STREET and WEST 76 STREET, WEST 73 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, BROADWAY between WEST 67 STREET and WEST 69 STREET, WEST 68 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 66 STREET and WEST 68 STREET",Manhattan,"64, 7","20, 22",Television,Cable-episodic,United States of America,"10023, 10024"
+561828,Shooting Permit,02/25/2021 08:00:00 AM,02/25/2021 11:00:00 PM,02/22/2021 04:10:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD, WEST 136 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, WEST 137 STREET between FREDERICK DOUGLAS BOULEVARD and MALCOLM X BOULEVARD, W 139TH ST between ADAM CLAYTON POWELL BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 140 STREET and WEST 139 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 139 STREET and WEST 138 STREET, WEST 139 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD",Manhattan,10,32,Television,Episodic series,United States of America,10030
+561825,Shooting Permit,02/26/2021 07:00:00 AM,02/26/2021 10:00:00 PM,02/22/2021 03:55:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 46 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561816,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 11:00:00 PM,02/22/2021 02:51:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 26 STREET and WEST 28 STREET, WEST 25 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",10,Television,Cable-episodic,United States of America,10001
+561814,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 10:00:00 PM,02/22/2021 02:40:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, GREENPOINT AVENUE between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561806,Shooting Permit,02/25/2021 12:00:00 PM,02/26/2021 06:00:00 AM,02/22/2021 01:53:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between VERNON BOULEVARD and 11 STREET, 47 ROAD between CENTER BOULEVARD and 5 STREET, CENTER BOULEVARD between 48 AVENUE and 47 ROAD, 47 AVENUE between CENTER BOULEVARD and 5 STREET, CENTER BOULEVARD between 47 ROAD and 48 AVENUE, 48 AVENUE between CENTER BOULEVARD and 5 STREET, 5 STREET between 47 ROAD and 47 AVENUE, 43 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, 9 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+561797,Shooting Permit,02/26/2021 08:00:00 AM,02/26/2021 11:00:00 PM,02/22/2021 12:58:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","UNION STREET between PORTAL STREET and RALPH AVENUE, EASTERN PARKWAY between BUFFALO AVENUE and ROCHESTER AVENUE, BUFFALO AVENUE between EASTERN PARKWAY and EAST NEW YORK AVENUE, ROCKAWAY PARKWAY between EAST NEW YORK AVENUE and RUTLAND ROAD, EAST NEW YORK AVENUE between BUFFALO AVENUE and RALPH AVENUE, PORTAL STREET between UNION STREET and EAST NEW YORK AVENUE, PORTAL STREET between EASTERN PARKWAY and UNION STREET",Brooklyn,"16, 17, 8","67, 73, 77",Television,Cable-episodic,United States of America,"11212, 11213, 11233"
+561786,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 10:00:00 PM,02/22/2021 11:46:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between AVENUE L and AVENUE J, OCEAN AVENUE between AVENUE J and AVENUE I, EAST 21 STREET between AVENUE K and AVENUE L, FOSTER AVENUE between EAST 21 STREET and OCEAN AVENUE, KENMORE PLACE between FOSTER AVENUE and FARRAGUT ROAD, FARRAGUT ROAD between KENMORE PLACE and OCEAN AVENUE, AVENUE H between OCEAN AVENUE and CAMPUS ROAD",Brooklyn,14,70,Television,Episodic series,United States of America,"11210, 11230"
+561785,Shooting Permit,02/25/2021 11:00:00 AM,02/26/2021 04:00:00 AM,02/22/2021 11:43:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 82 STREET and EAST 85 STREET, EAST 83 STREET between 3 AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 83 STREET and EAST 84 STREET, EAST 84 STREET between 2 AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 85 STREET and EAST 86 STREET",Manhattan,8,19,Television,Episodic series,United States of America,10028
+561781,Shooting Permit,02/26/2021 07:00:00 AM,02/26/2021 01:00:00 PM,02/22/2021 11:32:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561776,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 07:00:00 PM,02/22/2021 11:22:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561764,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 11:00:00 PM,02/22/2021 09:58:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between GREENPOINT AVE and N HENRY STREET, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561763,Shooting Permit,02/24/2021 06:30:00 AM,02/24/2021 10:00:00 PM,02/22/2021 09:49:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 15 STREET between NEPTUNE AVENUE and MERMAID AVENUE, WEST 15 STREET between MERMAID AVENUE and SURF AVENUE, MERMAID AVENUE between WEST 16 STREET and WEST 15 STREET",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+561762,Shooting Permit,02/25/2021 07:00:00 AM,02/25/2021 11:00:00 PM,02/22/2021 09:46:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between TILDEN AVENUE and DURYEA PLACE, TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, BEDFORD AVENUE between TILDEN AVENUE and BEVERLY ROAD, EAST 22 STREET between DURYEA PLACE and BEVERLY ROAD, BEDFORD AVENUE between SNYDER AVENUE and ALBEMARLE ROAD",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+561761,Shooting Permit,02/24/2021 08:00:00 AM,02/24/2021 11:59:00 PM,02/22/2021 09:20:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 10 STREET between 1 AVENUE and 2 AVENUE, EAST 12 STREET between 2 AVENUE and 3 AVENUE, EAST 12 STREET between 2 AVENUE and 1 AVENUE, 2 AVENUE between EAST 12 STREET and EAST 11 STREET, 2 AVENUE between EAST 11 STREET and EAST 9 STREET, AVENUE A between EAST 7 STREET and EAST 10 STREET, AVENUE A between EAST 10 STREET and EAST 11 STREET, AVENUE A between EAST 11 STREET and EAST 12 STREET, EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 2 STREET and EAST HOUSTON STREET, AVENUE A between EAST 2 STREET and EAST 3 STREET, AVENUE A between EAST 3 STREET and EAST 4 STREET, AVENUE A between EAST 4 STREET and EAST 5 STREET, EAST 2 STREET between AVENUE A and 1 AVENUE, AVENUE B between EAST 3 STREET and EAST 4 STREET, EAST 4 STREET between AVENUE B and AVENUE C",Manhattan,3,9,Television,Episodic series,United States of America,"10003, 10009"
+561759,Shooting Permit,02/25/2021 09:00:00 AM,02/25/2021 11:00:00 PM,02/22/2021 08:48:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, MAYFLOWER AVENUE between WELLMAN AVENUE and MAITLAND AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, Hutchinson River Pkwy E between ROEBLING AVENUE and East Tremont Ave, MIDDLETOWN ROAD between WESTCHESTER AVENUE and MAYFLOWER AVENUE, MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, WESTCHESTER AVENUE between MIDDLETOWN ROAD and MAYFLOWER AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 230 STREET, WEST 231 STREET between RIVERDALE AVENUE and KINGSBRIDGE AVENUE, TIBBETT AVENUE between WEST 231 STREET and WEST 232 STREET, WEST 230 STREET between CORLEAR AVENUE and MARBLE HILL AVENUE, MARBLE HILL AVENUE between WEST 230 STREET and WEST 228 STREET",Bronx,"10, 8","45, 50",Television,Cable-episodic,United States of America,"10461, 10463"
+561680,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/19/2021 05:29:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 104 STREET and EAST 103 STREET, EAST 104 STREET between 5 AVENUE and MADISON AVENUE, EAST 103 STREET between 5 AVENUE and MADISON AVENUE, EAST 102 STREET between 5 AVENUE and MADISON AVENUE, 5 AVENUE between EAST 103 STREET and EAST 101 STREET, MADISON AVENUE between EAST 104 STREET and EAST 106 STREET, EAST 104 STREET between MADISON AVENUE and PARK AVENUE, PARK AVENUE between EAST 104 STREET and EAST 102 STREET, MADISON AVENUE between EAST 102 STREET and EAST 104 STREET",Manhattan,"11, 64","22, 23",Television,Episodic series,United States of America,10029
+561674,Shooting Permit,02/24/2021 08:30:00 AM,02/24/2021 10:30:00 PM,02/19/2021 05:07:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561650,Shooting Permit,02/25/2021 01:00:00 PM,02/26/2021 04:00:00 AM,02/19/2021 04:23:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","DELANCEY STREET between CHRYSTIE STREET and BOWERY, BOWERY between PRINCE STREET and SPRING STREET, BOWERY between SPRING STREET and KENMARE STREET, BOWERY between KENMARE STREET and BROOME STREET, BOWERY between BROOME STREET and KENMARE STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, BOND STREET between LAFAYETTE STREET and BOWERY",Manhattan,"2, 3","5, 9",Television,Cable-episodic,United States of America,"10002, 10003, 10012, 10013"
+561643,Shooting Permit,03/03/2021 07:00:00 AM,03/03/2021 09:00:00 PM,02/19/2021 03:51:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561641,Shooting Permit,03/05/2021 07:00:00 AM,03/05/2021 09:00:00 PM,02/19/2021 03:47:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561639,Shooting Permit,03/02/2021 07:00:00 AM,03/02/2021 09:00:00 PM,02/19/2021 03:43:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561634,Shooting Permit,03/01/2021 07:00:00 AM,03/01/2021 09:00:00 PM,02/19/2021 03:38:31 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561633,Shooting Permit,02/26/2021 07:00:00 AM,02/26/2021 09:00:00 PM,02/19/2021 03:38:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561632,Shooting Permit,02/25/2021 07:00:00 AM,02/25/2021 09:00:00 PM,02/19/2021 03:37:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561630,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 09:00:00 PM,02/19/2021 03:36:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561629,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 09:00:00 PM,02/19/2021 03:36:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561620,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/19/2021 02:51:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE AVENUE between CLASSON AVENUE and FRANKLIN AVENUE, LEXINGTON AVENUE between CLASSON AVENUE and GRAND AVENUE, GRAND AVENUE between LEXINGTON AVENUE and GATES AVENUE, CLASSON AVENUE between GREENE AVENUE and LEXINGTON AVENUE",Brooklyn,"2, 3","79, 88",Television,Cable-episodic,United States of America,11238
+561619,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 11:59:00 PM,02/19/2021 02:34:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 7 AVENUE and 6 AVENUE, WEST 26 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 28 STREET and WEST 26 STREET, WEST 25 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5","10, 13",Television,Cable-episodic,United States of America,10001
+561616,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 10:00:00 PM,02/19/2021 02:19:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","OCEAN AVENUE between AVENUE L and AVENUE J, OCEAN AVENUE between AVENUE J and AVENUE I, EAST 21 STREET between AVENUE K and AVENUE L, FOSTER AVENUE between EAST 21 STREET and OCEAN AVENUE, KENMORE PLACE between FOSTER AVENUE and FARRAGUT ROAD, FARRAGUT ROAD between KENMORE PLACE and OCEAN AVENUE",Brooklyn,14,70,Television,Episodic series,United States of America,"11210, 11230"
+561612,Shooting Permit,02/24/2021 09:00:00 AM,02/24/2021 11:00:00 PM,02/19/2021 02:01:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561606,Shooting Permit,02/26/2021 01:00:00 PM,02/27/2021 05:00:00 AM,02/19/2021 12:25:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","W 14th st between 10th ave and 9th ave, WEST 13 STREET between 10 AVENUE and 9 AVENUE, WASHINGTON STREET between HORATIO STREET and WEST 14 STREET, GANSEVOORT STREET between 10 AVENUE and WASHINGTON STREET, HORATIO STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between GANSEVOORT STREET and HORATIO STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+561604,Rigging Permit,02/23/2021 06:00:00 AM,02/23/2021 07:00:00 PM,02/19/2021 12:15:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561599,Shooting Permit,02/24/2021 08:00:00 AM,02/24/2021 11:00:00 PM,02/19/2021 11:48:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL BOULEVARD between WEST 116 STREET and WEST 112 STREET, W 116 ST between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLAS BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 119 STREET and WEST 117 STREET, WEST 118 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 119 STREET and WEST 120 STREET, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 117 STREET, WEST 118 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 120 STREET",Manhattan,10,28,Television,Episodic series,United States of America,10026
+561591,Shooting Permit,02/24/2021 06:00:00 AM,02/24/2021 11:00:00 PM,02/19/2021 10:03:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 26 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 26 STREET and WEST 28 STREET, WEST 25 STREET between 7 AVENUE and 8 AVENUE",Manhattan,"4, 5",10,Television,Cable-episodic,United States of America,10001
+561586,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 11:00:00 PM,02/19/2021 09:38:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+561572,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 11:30:00 PM,02/18/2021 09:57:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between 9 STREET and 10 STREET, 43 AVENUE between 9 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 40 AVENUE, 24 AVENUE between 19 STREET and 21 STREET, 19 STREET between 24 AVENUE and 23 TERRACE, 23 TERRACE between 19 STREET and 21 STREET, 19 STREET between 24 ROAD and 24 AVENUE, SHORE BOULEVARD between DITMARS BOULEVARD and ASTORIA PARK SOUTH",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11102, 11105"
+561567,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 09:00:00 PM,02/18/2021 07:47:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","NEWEL STREET between CALYER STREET and GREENPOINT AVENUE, CALYER STREET between MCGUINNESS BOULEVARD and DIAMOND STREET, CALYER STREET between MOULTRIE STREET and HUMBOLDT STREET, GREENPOINT AVENUE between NEWELL STREET and JEWEL STREET, DOBBIN STREET between NORMAN AVENUE and MESEROLE AVENUE, NORMAN AVENUE between BANKER STREET and GUERNSEY STREET, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561565,Shooting Permit,02/25/2021 07:00:00 AM,02/25/2021 11:00:00 PM,02/18/2021 07:09:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561559,Shooting Permit,02/23/2021 08:00:00 AM,02/23/2021 11:00:00 PM,02/18/2021 05:37:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561555,Shooting Permit,02/23/2021 08:00:00 AM,02/23/2021 11:00:00 PM,02/18/2021 04:57:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 18 STREET between 7 AVENUE and 6 AVENUE, 7 AVENUE between WEST 18 STREET and WEST 19 STREET, WEST 19 STREET between 7 AVENUE and 6 AVENUE, 6 AVENUE between WEST 18 STREET and WEST 20 STREET, WEST 18 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"4, 5","10, 13",Television,Episodic series,United States of America,10011
+561551,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 10:00:00 PM,02/18/2021 04:39:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 20 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Episodic series,United States of America,10011
+561535,Shooting Permit,02/26/2021 08:00:00 AM,02/27/2021 02:00:00 AM,02/18/2021 04:10:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between PITKIN AVENUE and BELMONT AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, ALABAMA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11207
+561533,Shooting Permit,02/25/2021 08:00:00 AM,02/26/2021 02:00:00 AM,02/18/2021 04:10:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between PITKIN AVENUE and BELMONT AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, ALABAMA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11207
+561532,Shooting Permit,02/24/2021 08:00:00 AM,02/25/2021 02:00:00 AM,02/18/2021 04:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE, SHEFFIELD AVENUE between PITKIN AVENUE and BELMONT AVENUE, SHEFFIELD AVENUE between BELMONT AVENUE and SUTTER AVENUE, BELMONT AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between ALABAMA AVENUE and GEORGIA AVENUE, SUTTER AVENUE between GEORGIA AVENUE and SHEFFIELD AVENUE, SUTTER AVENUE between SHEFFIELD AVENUE and PENNSYLVANIA AVENUE, ALABAMA AVENUE between SUTTER AVENUE and BELMONT AVENUE",Brooklyn,5,75,Film,Feature,United States of America,11207
+561517,Shooting Permit,02/24/2021 06:00:00 AM,02/24/2021 10:00:00 PM,02/18/2021 03:37:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 89 STREET and WEST 90 STREET, WEST 90 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 93 STREET and WEST 92 STREET, BROADWAY between WEST 94 STREET and WEST 95 STREET, WEST 85 STREET between BROADWAY and WEST END AVENUE, WEST 85 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 86 STREET and WEST 87 STREET, WEST 87 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 87 STREET between BROADWAY and WEST END AVENUE, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 86 STREET and WEST 85 STREET, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 97 STREET and WEST 98 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10024, 10025"
+561515,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 10:00:00 PM,02/18/2021 03:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561512,Shooting Permit,02/23/2021 01:00:00 PM,02/24/2021 03:00:00 AM,02/18/2021 03:25:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","HUNTER STREET between 43 AVENUE and 44 DRIVE, 44 ROAD between CRESCENT STREET and 24 STREET, 44 ROAD between 24 STREET and 23 STREET, 24 STREET between 44 ROAD and 43 AVENUE, 43 AVENUE between 22 STREET and 23 STREET, 43 AVENUE between 23 STREET and 24 STREET, 43 AVENUE between 24 STREET and CRESCENT STREET, CRESCENT STREET between 43 AVENUE and 42 ROAD, CRESCENT STREET between 43 AVENUE and 44 ROAD",Queens,2,108,Television,Cable-episodic,United States of America,11101
+561496,Shooting Permit,02/22/2021 08:00:00 AM,02/22/2021 11:00:00 PM,02/18/2021 02:27:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL BOULEVARD between WEST 138 STREET and WEST 139 STREET, WEST 138 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDERICK DOUGLASS BOULEVARD",Manhattan,10,32,WEB,Not Applicable,United States of America,10030
+561495,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/18/2021 02:03:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561490,Shooting Permit,02/27/2021 06:00:00 AM,02/27/2021 11:00:00 PM,02/18/2021 01:56:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561489,Rigging Permit,02/22/2021 06:00:00 AM,02/22/2021 07:00:00 PM,02/18/2021 01:52:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",37 STREET between 34 AVENUE and 35 AVENUE,Queens,1,114,Television,Episodic series,United States of America,"11101, 11106"
+561485,Shooting Permit,02/20/2021 06:00:00 AM,02/20/2021 06:00:00 PM,02/18/2021 01:38:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 86 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 86 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 95 STREET and WEST 96 STREET, WEST 87 STREET between AMSTERDAM AVENUE and WEST END AVENUE, BROADWAY between WEST 87 STREET and WEST 86 STREET, WEST 88 STREET between BROADWAY and AMSTERDAM AVENUE, WEST 88 STREET between AMSTERDAM AVENUE and BROADWAY, WEST 82 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 89 STREET and WEST 88 STREET, BROADWAY between WEST 91 STREET and WEST 89 STREET, WEST 90 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 92 STREET and WEST 93 STREET, BROADWAY between WEST 94 STREET and WEST 95 STREET, BROADWAY between WEST 97 STREET and WEST 98 STREET, CENTRAL PARK WEST between WEST 87 STREET and WEST 86 STREET, WEST 86 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE",Manhattan,"64, 7","20, 22, 24",Television,Episodic series,United States of America,"10024, 10025"
+561484,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 09:00:00 PM,02/18/2021 01:37:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561465,Shooting Permit,02/21/2021 01:00:00 PM,02/21/2021 11:00:00 PM,02/18/2021 12:07:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",CHURCH AVENUE between LLOYD STREET and NOSTRAND AVENUE,Brooklyn,17,67,WEB,Not Applicable,United States of America,"11203, 11226"
+561463,Shooting Permit,02/23/2021 09:00:00 AM,02/23/2021 11:00:00 PM,02/18/2021 11:15:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","WESTCHESTER AVENUE between MIDDLETOWN ROAD and MAYFLOWER AVENUE, MIDDLETOWN ROAD between WESTCHESTER AVENUE and PILGRIM AVENUE, MULFORD AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, MAYFLOWER AVENUE between MIDDLETOWN ROAD and WESTCHESTER AVENUE, ERICSON PLACE between WELLMAN AVENUE and ROEBLING AVENUE, Hutchinson River Parkway East between Roebling Ave and East Tremont Ave, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10461, 10473"
+561462,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 11:00:00 PM,02/18/2021 10:59:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+561460,Shooting Permit,02/19/2021 08:00:00 AM,02/19/2021 11:00:00 PM,02/18/2021 10:30:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+561447,Shooting Permit,02/26/2021 11:00:00 AM,02/27/2021 03:00:00 AM,02/18/2021 09:22:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","NEPTUNE AVENUE between WEST 33 STREET and WEST 36 STREET, SURF AVENUE between WEST 12 STREET and POLICE OFFICER HARRY RYMAN PLACE, STILLWELL AVENUE between SURF AVENUE and BOARDWALK, WEST 12 STREET between SURF AVENUE and DEAD END",Brooklyn,13,60,Television,Episodic series,United States of America,11224
+561445,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/18/2021 08:44:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, MADISON AVENUE between EAST 44 STREET and EAST 45 STREET, EAST 44 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 44 STREET between SIXTH AVENUE and FIFTH AVENUE, EAST 43 STREET between MADISON AVENUE and FIFTH AVENUE, WEST 43 STREET between FIFTH AVENUE and SIXTH AVENUE",Manhattan,5,14,Film,Feature,United States of America,"10017, 10036, 10173"
+561444,Shooting Permit,02/24/2021 06:00:00 AM,02/24/2021 10:00:00 PM,02/18/2021 08:43:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH END AVENUE between LIBERTY STREET and ALBANY STREET, SOUTH END AVENUE between ALBANY STREET and RECTOR PLACE, ALBANY STREET between SOUTH END AVENUE and WEST STREET, BATTERY PLACE between 1 PLACE and 2 PLACE, BATTERY PLACE between 2 PLACE and 3 PLACE, WEST STREET between HUBERT STREET and NORTH MOORE STREET, WEST STREET between NORTH MOORE STREET and HARRISON STREET, WEST STREET between HARRISON STREET and CHAMBERS STREET, MINETTA LANE between MACDOUGAL STREET and MINETTA STREET, SIXTH AVENUE between MINETTA STREET and MINETTA LANE, SIXTH AVENUE between WEST 3 STREET and WEST 4 STREET, WEST 3 STREET between SIXTH AVENUE and MACDOUGAL STREET, LAGUARDIA PLACE between WEST HOUSTON STREET and WEST 3 STREET, LAGUARDIA PLACE between WEST 3 STREET and WASHINGTON SQUARE SOUTH, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,"1, 2","1, 6",Film,Feature,United States of America,"10012, 10013, 10014, 10280, 10281"
+561443,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 10:00:00 PM,02/18/2021 08:42:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH END AVENUE between LIBERTY STREET and ALBANY STREET, SOUTH END AVENUE between ALBANY STREET and RECTOR PLACE, ALBANY STREET between SOUTH END AVENUE and WEST STREET, BATTERY PLACE between 1 PLACE and 2 PLACE, BATTERY PLACE between 2 PLACE and 3 PLACE, WEST STREET between HUBERT STREET and NORTH MOORE STREET, WEST STREET between NORTH MOORE STREET and HARRISON STREET, WEST STREET between HARRISON STREET and CHAMBERS STREET, HARRISON STREET between WEST STREET and GREENWICH STREET",Manhattan,1,1,Film,Feature,United States of America,"10013, 10280, 10281"
+561423,Shooting Permit,02/23/2021 07:00:00 AM,02/24/2021 03:00:00 AM,02/17/2021 07:57:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 45 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, 46 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 11 STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, 46 AVENUE between 5 STREET and VERNON BOULEVARD",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+561419,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 10:00:00 PM,02/17/2021 06:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561415,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 10:00:00 PM,02/17/2021 05:32:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561414,Shooting Permit,02/25/2021 09:00:00 AM,02/25/2021 11:59:00 PM,02/17/2021 05:29:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","45 AVENUE between 10 STREET and 11 STREET, VERNON BOULEVARD between 10 STREET and 45 ROAD, VERNON BOULEVARD between 45 ROAD and 46 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, 10 STREET between 44 DRIVE and 45 AVENUE, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561413,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 10:00:00 PM,02/17/2021 05:28:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","45 AVENUE between 10 STREET and 11 STREET, VERNON BOULEVARD between 10 STREET and 45 ROAD, VERNON BOULEVARD between 45 ROAD and 46 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, 46 AVENUE between VERNON BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 ROAD and 47 AVENUE, 10 STREET between 44 DRIVE and 45 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561412,Shooting Permit,02/23/2021 11:00:00 AM,02/23/2021 11:00:00 PM,02/17/2021 05:23:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 27 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 10 AVENUE and 11 AVENUE, WEST 28 STREET between 11 AVENUE and WEST SIDE HIGHWAY, 11 AVENUE between WEST 27 STREET and WEST 29 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10001
+561410,Shooting Permit,02/22/2021 07:00:00 AM,02/23/2021 10:00:00 PM,02/17/2021 04:33:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 57 STREET and WEST 58 STREET, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 58 STREET between MADISON AVENUE and 5 AVENUE, WEST 58 STREET between 5 AVENUE and 6 AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, CENTRAL PARK SOUTH between 6 AVENUE and COLUMBUS CIRCLE, GRAND ARMY PLAZA between WEST 58 STREET and CENTRAL PARK SOUTH",Manhattan,"1, 5, 64","18, 22, 40",Television,Episodic series,United States of America,"10019, 10022, 10454"
+561409,Shooting Permit,02/25/2021 04:00:00 PM,02/26/2021 06:00:00 AM,02/17/2021 04:26:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","212 STREET between 38 AVENUE and 39 AVENUE, 38 AVENUE between 211 STREET and 212 STREET, 38 AVENUE between 212 STREET and BELL BOULEVARD, 39 AVENUE between 211 STREET and 213 STREET, BELL BOULEVARD between 35 AVENUE and 39 AVENUE, 211 STREET between 38 AVENUE and 36 AVENUE, 36 AVENUE between 213 STREET and BELL BOULEVARD, 213 STREET between 38 AVENUE and 39 AVENUE",Queens,11,111,Television,Episodic series,United States of America,11361
+561405,Shooting Permit,02/18/2021 09:00:00 AM,02/18/2021 11:00:00 PM,02/17/2021 04:05:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561403,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 10:00:00 PM,02/17/2021 04:01:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561400,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 10:00:00 PM,02/17/2021 03:54:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561398,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 10:00:00 PM,02/17/2021 03:51:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 44 STREET and WEST 46 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561397,Shooting Permit,02/19/2021 08:00:00 AM,02/19/2021 10:00:00 PM,02/17/2021 03:51:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561392,Shooting Permit,02/24/2021 07:00:00 AM,02/24/2021 08:00:00 PM,02/17/2021 03:29:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT STREET between WEST STREET and DEAD END, GREENPOINT AVENUE between WEST STREET and DEAD END, JAVA STREET between WEST STREET and DEAD END, CALYER STREET between JEWEL STREET and HUMBOLDT STREET, MOULTRIE STREET between CALYER STREET and MESEROLE AVENUE, MOULTRIE STREET between GREENPOINT AVENUE and CALYER STREET, GREEN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, FREEMAN STREET between MCGUINNESS BOULEVARD and PROVOST STREET, PROVOST STREET between DUPONT STREET and JAVA STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561390,Shooting Permit,02/22/2021 01:00:00 AM,02/22/2021 11:30:00 AM,02/17/2021 03:22:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116 STREET between FREDERICK DOUGLAS BOULEVARD and ST NICHOLAS AVENUE, W 116 ST between ADAM CLAYTON POWELL BOULEVARD and MALCOLM X BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 116 STREET and WEST 112 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 119 STREET and WEST 117 STREET, WEST 118 STREET between FREDERICK DOUGLAS BOULEVARD and ST NICHOLAS AVENUE, WEST 119 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL BOULEVARD, ST NICHOLAS AVENUE between WEST 119 STREET and WEST 118 STREET",Manhattan,10,28,Television,Episodic series,United States of America,10026
+561388,Shooting Permit,02/27/2021 08:00:00 AM,02/27/2021 11:00:00 PM,02/17/2021 03:17:25 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,WEB,Not Applicable,United States of America,10027
+561386,Shooting Permit,02/24/2021 06:00:00 AM,02/24/2021 08:00:00 PM,02/17/2021 03:12:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561385,Shooting Permit,02/23/2021 06:00:00 AM,02/23/2021 08:00:00 PM,02/17/2021 03:10:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561384,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 08:00:00 PM,02/17/2021 03:07:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561381,Shooting Permit,02/18/2021 08:00:00 AM,02/18/2021 10:00:00 PM,02/17/2021 02:33:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561380,Shooting Permit,02/18/2021 08:00:00 AM,02/18/2021 11:00:00 PM,02/17/2021 02:31:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+561369,Shooting Permit,02/19/2021 06:00:00 AM,02/19/2021 09:00:00 PM,02/17/2021 12:28:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+561368,Shooting Permit,02/23/2021 08:00:00 AM,02/23/2021 06:00:00 PM,02/17/2021 12:22:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",CARLTON AVE between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,"2, 8","78, 88",Still Photography,Not Applicable,United States of America,"11205, 11238"
+561367,Shooting Permit,02/24/2021 08:00:00 AM,02/24/2021 06:00:00 PM,02/17/2021 12:20:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",CARLTON AVENUE between MYRTLE AVENUE and WILLOUGHBY AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+561363,Shooting Permit,02/20/2021 07:00:00 AM,02/20/2021 11:00:00 PM,02/17/2021 11:49:15 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561361,Shooting Permit,02/19/2021 07:00:00 AM,02/19/2021 11:00:00 PM,02/17/2021 11:41:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561358,Shooting Permit,02/22/2021 08:00:00 AM,02/22/2021 11:00:00 PM,02/17/2021 11:29:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLAY AVENUE between EAST 171 STREET and EAST 170 STREET, EAST 170 STREET between TELLER AVENUE and CLAY AVENUE, FINDLAY AVENUE between EAST 168 STREET and EAST 167 STREET, FINDLAY AVENUE between EAST 168 STREET and EAST 169 STREET, EAST 168 STREET between COLLEGE AVENUE and TELLER AVENUE, TELLER AVENUE between EAST 168 STREET and EAST 169 STREET, WEBSTER AVENUE between EAST 168 STREET and EAST 170 STREET, TELLER AVENUE between EAST 167 STREET and EAST 168 STREET",Bronx,"3, 4","42, 44",Television,Cable-episodic,United States of America,"10456, 10457"
+561354,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 11:00:00 PM,02/17/2021 11:08:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561350,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 10:00:00 PM,02/17/2021 10:24:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561349,Shooting Permit,02/24/2021 09:00:00 AM,02/25/2021 01:00:00 AM,02/17/2021 09:59:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561347,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 11:59:00 PM,02/17/2021 09:30:14 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561345,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 11:00:00 PM,02/17/2021 09:22:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between 6 AVENUE and BROADWAY, WEST 26 STREET between BROADWAY and 5 AVENUE, EAST 26 STREET between 5 AVENUE and MADISON AVENUE, EAST 27 STREET between MADISON AVENUE and PARK AVENUE SOUTH, PARK AVENUE SOUTH between EAST 25 STREET and EAST 28 STREET, BROADWAY between WEST 24 STREET and WEST 25 STREET, EAST 27 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,13,Television,Episodic series,United States of America,"10010, 10016"
+561343,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 09:00:00 PM,02/17/2021 09:15:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+561342,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 10:00:00 PM,02/17/2021 09:11:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+561341,Shooting Permit,02/19/2021 07:00:00 AM,02/19/2021 09:00:00 PM,02/17/2021 09:03:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","8 AVENUE between WEST 46 STREET and WEST 45 STREET, WEST 45 STREET between 7 AVENUE and 8 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","14, 18",Television,Cable-episodic,United States of America,10036
+561330,Shooting Permit,02/22/2021 08:00:00 AM,02/22/2021 06:00:00 PM,02/16/2021 07:03:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",CARLTON AVENUE between WILLOUGHBY AVENUE and MYRTLE AVENUE,Brooklyn,2,88,Still Photography,Not Applicable,United States of America,11205
+561325,Shooting Permit,02/18/2021 06:30:00 AM,02/18/2021 10:00:00 PM,02/16/2021 05:34:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561321,Shooting Permit,02/20/2021 06:00:00 AM,02/20/2021 10:00:00 PM,02/16/2021 05:07:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561319,Shooting Permit,02/18/2021 06:30:00 AM,02/18/2021 11:00:00 PM,02/16/2021 04:50:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 48 STREET and WEST 49 STREET, WEST 48 STREET between BROADWAY and 8 AVENUE, FIFTH AVENUE between WEST 34 STREET and WEST 33 STREET, EAST 33 STREET between FIFTH AVENUE and MADISON AVENUE, EAST 43 STREET between FIFTH AVENUE and MADISON AVENUE, WEST 37 STREET between BROADWAY and 7 AVENUE",Manhattan,5,"14, 18",Commercial,Promo,United States of America,"10016, 10017, 10018, 10019, 10036, 10118"
+561317,Shooting Permit,02/19/2021 12:00:00 PM,02/20/2021 03:00:00 AM,02/16/2021 04:41:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","ST NICHOLAS AVENUE between WEST 133 STREET and WEST 127 STREET, ST NICHOLAS AVENUE between WEST 135 STREET and WEST 133 STREET, WEST 134 STREET between ST NICHOLAS AVENUE and FREDERICK DOUGLAS BOULEVARD, WEST 135 STREET between FREDERICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 139 STREET and WEST 140 STREET",Manhattan,"10, 9","26, 32",Television,Episodic series,United States of America,"10027, 10030, 10031"
+561313,Shooting Permit,02/20/2021 06:00:00 AM,02/20/2021 10:00:00 PM,02/16/2021 04:30:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561306,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 09:00:00 PM,02/16/2021 04:17:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","REVIEW AVENUE between 29 STREET and 35 STREET, STARR AVENUE between 31 PLACE and 34 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+561303,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 11:00:00 PM,02/16/2021 04:09:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561301,Shooting Permit,02/19/2021 01:00:00 PM,02/20/2021 03:30:00 AM,02/16/2021 04:05:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","GUERNSEY STREET between CALYER STREET and MESEROLE AVENUE, GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DOBBIN STREET and GUERNSEY STREET, CLIFFORD PLACE between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between BANKER STREET and CLIFFORD PLACE, BANKER STREET between CALYER STREET and MESEROLE AVENUE, BANKER STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561300,Shooting Permit,02/24/2021 09:00:00 AM,02/25/2021 03:00:00 AM,02/16/2021 04:03:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","57 AVENUE between 90 STREET and 92 STREET, 90 STREET between 56 AVENUE and 57 AVENUE, 90 STREET between 57 AVENUE and QUEENS BOULEVARD, JUNIPER BLVD SOUTH between 80 STREET and 77 STREET, FURMANVILLE AVENUE between 78 STREET and 80 STREET, 79 STREET between FURMANVILLE AVENUE and JUNIPER VALLEY ROAD, JUNIPER VALLEY ROAD between 78 STREET and 79 PLACE, 79 STREET between JUNIPER VALLEY ROAD and 66 ROAD, 79 STREET between FURMANVILLE AVENUE and PENELOPE AVENUE, 81 STREET between PENELOPE AVENUE and JUNIPER BLVD SOUTH",Queens,"4, 5","104, 110",Television,Episodic series,United States of America,"11373, 11379"
+561299,Shooting Permit,02/18/2021 07:00:00 AM,02/18/2021 11:00:00 PM,02/16/2021 04:02:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry St, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561296,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 11:00:00 PM,02/16/2021 03:56:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 st between QUEENS PLAZA SOUTH and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561287,Shooting Permit,02/23/2021 07:00:00 AM,02/23/2021 09:00:00 PM,02/16/2021 02:56:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 116 STREET between ROCKAWAY BEACH BOULEVARD and DEAD END, ROCKAWAY BEACH BOULEVARD between BEACH 117 STREET and BEACH 113 STREET, BEACH CHANNEL DRIVE between SEASIDE AVENUE and BEACH 108 STREET, ROCKAWAY BEACH DRIVE between BEACH 108 STREET and BEACH 109 STREET, BEACH 116 STREET between NEWPORT AVENUE and ROCKAWAY BEACH BOULEVARD",Queens,14,100,Television,Episodic series,United States of America,11694
+561286,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 09:00:00 PM,02/16/2021 02:54:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH CHANNEL DRIVE between BEACH 116 STREET and SEASIDE AVENUE, ROCKAWAY BEACH DRIVE between BEACH 108 STREET and BEACH 109 STREET",Queens,14,100,Television,Episodic series,United States of America,11694
+561285,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 10:00:00 PM,02/16/2021 02:51:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+561284,Shooting Permit,02/25/2021 06:00:00 AM,02/25/2021 10:00:00 PM,02/16/2021 02:50:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+561283,Shooting Permit,02/24/2021 06:00:00 AM,02/24/2021 08:00:00 PM,02/16/2021 02:50:58 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+561282,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 11:00:00 PM,02/16/2021 02:48:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","PORTER AVENUE between HARRISON PLACE and JOHNSON AVENUE, INGRAHAM STREET between KNICKERBOCKER AVENUE and VARICK AVENUE, HARRISON PLACE between KNICKERBOCKER AVENUE and PORTER AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+561277,Shooting Permit,02/23/2021 08:00:00 AM,02/24/2021 02:00:00 AM,02/16/2021 02:35:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, CEDAR STREET between PEARL STREET and WILLIAM STREET",Manhattan,1,1,Film,Feature,United States of America,"10005, 10038"
+561276,Shooting Permit,02/20/2021 12:00:00 PM,02/21/2021 05:00:00 AM,02/16/2021 02:18:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HOYT STREET and SMITH STREET, ATLANTIC AVENUE between SMITH STREET and BOERUM PLACE, ATLANTIC AVENUE between BOERUM PLACE and COURT STREET, SMITH STREET between ATLANTIC AVENUE and PACIFIC STREET, SMITH STREET between DEAN STREET and PACIFIC STREET",Brooklyn,2,84,Film,Feature,United States of America,11201
+561271,Shooting Permit,02/19/2021 02:00:00 PM,02/19/2021 11:59:00 PM,02/16/2021 01:43:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","WHITE STREET between CHURCH STREET and BROADWAY, WHITE STREET between WEST BROADWAY and 6 AVENUE, WALKER STREET between CHURCH STREET and BROADWAY, 6 AVENUE between WHITE STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and WHITE STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, CHURCH STREET between WHITE STREET and WALKER STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+561267,Shooting Permit,02/19/2021 01:30:00 PM,02/20/2021 05:30:00 AM,02/16/2021 01:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between 43 AVENUE and QUEENS PLAZA SOUTH, QUEENS PLAZA SOUTH between 9 STREET and 12 STREET, 9 STREET between 43 ROAD and QUEENS PLAZA SOUTH, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 11 STREET, 11 STREET between 43 AVENUE and 43 ROAD",Queens,2,108,Television,Episodic series,United States of America,11101
+561261,Shooting Permit,02/18/2021 07:00:00 AM,02/18/2021 11:00:00 PM,02/16/2021 01:04:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 st between queens plaza s and 43rd ave",Queens,2,108,Television,Episodic series,United States of America,11101
+561250,Shooting Permit,02/23/2021 06:30:00 AM,02/23/2021 10:00:00 PM,02/16/2021 12:08:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","44 STREET between 5 AVENUE and 6 AVENUE, 44 STREET between 6 AVENUE and 7 AVENUE, 45 STREET between 6 AVENUE and 7 AVENUE, 46 STREET between 6 AVENUE and 7 AVENUE, 5 AVENUE between 43 STREET and 44 STREET, 5 AVENUE between 42 STREET and 43 STREET, 5 AVENUE between 41 STREET and 42 STREET, 5 AVENUE between 39 STREET and 41 STREET, 5 AVENUE between 44 STREET and 49 STREET",Brooklyn,7,72,Television,Episodic series,United States of America,"11220, 11232"
+561244,Shooting Permit,02/19/2021 06:00:00 AM,02/19/2021 10:00:00 PM,02/16/2021 11:52:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561233,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 10:00:00 PM,02/16/2021 10:49:33 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561231,Shooting Permit,02/19/2021 06:00:00 AM,02/19/2021 10:00:00 PM,02/16/2021 10:47:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561230,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 10:00:00 PM,02/16/2021 10:44:36 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561229,Shooting Permit,02/19/2021 10:30:00 AM,02/20/2021 03:00:00 AM,02/16/2021 10:43:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, CALYER STREET between NEWEL STREET and JEWEL STREET, JEWEL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561228,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 10:00:00 PM,02/16/2021 10:42:18 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561223,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 11:00:00 PM,02/16/2021 10:00:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+561220,Shooting Permit,02/19/2021 11:00:00 AM,02/20/2021 02:00:00 AM,02/16/2021 09:10:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+561184,Shooting Permit,02/18/2021 10:00:00 AM,02/19/2021 01:00:00 AM,02/15/2021 11:08:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+561146,Shooting Permit,02/24/2021 10:00:00 AM,02/25/2021 02:00:00 AM,02/12/2021 08:11:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 60 STREET and WEST 61 STREET, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+561136,Shooting Permit,02/22/2021 06:00:00 AM,02/22/2021 03:00:00 PM,02/12/2021 04:01:21 PM,"Mayor's Office of Film, Theatre & Broadcasting",SOUTH 5 STREET between BERRY STREET and KENT AVENUE,Brooklyn,1,90,Television,Episodic series,United States of America,11249
+561132,Shooting Permit,02/19/2021 08:00:00 AM,02/20/2021 12:00:00 PM,02/12/2021 03:45:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 12 STREET and NORTH 11 STREET, NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, NORTH 12 STREET between KENT AVENUE and WYTHE AVENUE, NORTH 10 STREET between WYTHE AVENUE and KENT AVENUE, BERRY STREET between NORTH 13 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 12 STREET",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+561129,Shooting Permit,02/19/2021 07:00:00 AM,02/19/2021 09:00:00 PM,02/12/2021 03:15:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+561127,Shooting Permit,02/18/2021 07:00:00 AM,02/18/2021 09:00:00 PM,02/12/2021 03:11:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+561124,Shooting Permit,02/17/2021 08:00:00 AM,02/17/2021 11:00:00 PM,02/12/2021 03:00:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","PITT STREET between GRAND STREET and BROOME STREET, GRAND STREET between CLINTON STREET and BIALYSTOKER PLACE, GRAND STREET between BIALYSTOKER PLACE and COLUMBIA STREET, GRAND STREET between COLUMBIA STREET and LEWIS STREET",Manhattan,3,7,Television,Episodic series,United States of America,10002
+561121,Shooting Permit,02/23/2021 10:00:00 AM,02/23/2021 11:59:00 PM,02/12/2021 02:41:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, HALSEY STREET between WYCKOFF AVENUE and IRVING AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561117,Shooting Permit,02/17/2021 10:00:00 AM,02/17/2021 11:59:00 PM,02/12/2021 02:20:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 19 STREET between 9 AVENUE and 10 AVENUE, WEST 20 STREET between 9 AVENUE and 10 AVENUE, WEST 22 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 8 AVENUE and 9 AVENUE, WEST 23 STREET between 9 AVENUE and 10 AVENUE, 8 AVENUE between WEST 21 STREET and WEST 22 STREET, 9 AVENUE between WEST 21 STREET and WEST 22 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10011
+561116,Shooting Permit,02/17/2021 11:30:00 AM,02/18/2021 02:00:00 AM,02/12/2021 02:13:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 137 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 136 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 138 STREET and WEST 135 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 139 STREET and WEST 140 STREET",Manhattan,10,32,Television,Episodic series,United States of America,10030
+561110,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 10:00:00 PM,02/12/2021 12:32:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+561106,Shooting Permit,02/17/2021 07:00:00 AM,02/17/2021 11:59:00 PM,02/12/2021 11:21:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH OXFORD STREET between DEKALB AVENUE and LAFAYETTE AVENUE, MYRTLE AVENUE between ST EDWARDS STREET and WASHINGTON PARK, DEKALB AVENUE between SOUTH ELLIOTT PLACE and SOUTH PORTLAND AVENUE, DEKALB AVENUE between FORT GREENE PLACE and ROCKWELL PLACE",Brooklyn,2,88,Television,Episodic series,United States of America,"11201, 11205, 11217"
+561101,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 09:00:00 PM,02/12/2021 11:04:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+561093,Shooting Permit,02/15/2021 07:00:00 AM,02/15/2021 08:00:00 PM,02/12/2021 10:06:03 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between WEST 4 STREET and HUDSON STREET,Manhattan,"2, 4","10, 6",Commercial,Commercial,United States of America,"10011, 10014"
+561092,Shooting Permit,02/16/2021 08:00:00 AM,02/16/2021 11:00:00 PM,02/12/2021 09:47:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+561091,Shooting Permit,02/15/2021 08:00:00 AM,02/15/2021 11:00:00 PM,02/12/2021 09:26:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+561090,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 10:00:00 PM,02/12/2021 09:26:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561077,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 11:00:00 PM,02/11/2021 05:36:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561073,Shooting Permit,02/19/2021 10:00:00 AM,02/19/2021 11:59:00 PM,02/11/2021 05:01:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 AVENUE and 45 AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE, 48 AVENUE between CENTER BOULEVARD and 5 STREET, 46 ROAD between VERNON BOULEVARD and 11 STREET, 48 AVENUE between VERNON BOULEVARD and 11 STREET, CENTER BOULEVARD between 47 AVENUE and 47 ROAD, 47 ROAD between CENTER BOULEVARD and 5 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+561071,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 10:00:00 PM,02/11/2021 04:48:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","COURT STREET between SECOND PLACE and SACKETT STREET, PRESIDENT STREET between COURT STREET and SMITH STREET, CONOVER STREET between BEARD STREET and REED STREET",Brooklyn,6,76,Television,Cable-episodic,United States of America,11231
+561070,Shooting Permit,02/18/2021 07:00:00 AM,02/18/2021 09:00:00 PM,02/11/2021 04:47:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between NEWELL STREET and DIAMOND STREET, NEWELL STREET between CALYER STREET and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561068,Shooting Permit,02/18/2021 11:00:00 AM,02/19/2021 01:00:00 AM,02/11/2021 04:45:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 12 STREET and WEST 11 STREET, 6 AVENUE between WEST 11 STREET and WEST 10 STREET, 6 AVENUE between WEST 10 STREET and WEST 9 STREET, WEST 9 STREET between 6 AVENUE and 5 AVENUE, EAST 16 STREET between 5 AVENUE and UNION SQUARE WEST, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between EAST 15 STREET and EAST 14 STREET, WEST 16 STREET between 5 AVENUE and 6 AVENUE, 5 AVENUE between WEST 17 STREET and WEST 16 STREET, WEST 13 STREET between 6 AVENUE and 5 AVENUE",Manhattan,"2, 5","13, 6",Television,Cable-episodic,United States of America,"10003, 10011"
+561067,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 10:00:00 PM,02/11/2021 04:44:50 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561066,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 10:00:00 PM,02/11/2021 04:41:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+561064,Shooting Permit,02/17/2021 11:00:00 AM,02/18/2021 03:00:00 AM,02/11/2021 04:18:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","23 STREET between 41 AVENUE and QUEENS PLAZA NORTH, 22 STREET between 41 AVENUE and QUEENS PLAZA NORTH, 24 STREET between 41 AVENUE and QUEENS PLAZA NORTH, 41 AVENUE between 22 STREET and 24 STREET, 41 AVENUE between 24 STREET and CRESCENT STREET, queens plaza North between 23 STREET and Crescent Street",Queens,1,114,Television,Episodic series,United States of America,11101
+561060,Shooting Permit,02/18/2021 08:00:00 AM,02/18/2021 11:00:00 PM,02/11/2021 03:56:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 138 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 137 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 136 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, ADAM CLAYTON POWELL BOULEVARD between WEST 138 STREET and WEST 135 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 140 STREET and WEST 139 STREET",Manhattan,10,32,Television,Episodic series,United States of America,10030
+561049,Shooting Permit,02/17/2021 07:00:00 AM,02/17/2021 11:00:00 PM,02/11/2021 02:46:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE, BROADWAY between WEST 60 STREET and WEST 61 STREET, CENTRAL PARK SOUTH between COLUMBUS CIRCLE and 7 AVENUE",Manhattan,"4, 5, 64, 7","18, 20, 22",Television,Episodic series,United States of America,"10019, 10023"
+561044,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 09:00:00 PM,02/11/2021 02:10:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561043,Shooting Permit,02/17/2021 07:00:00 AM,02/17/2021 10:00:00 PM,02/11/2021 02:05:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561042,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 11:00:00 PM,02/11/2021 02:05:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVE between RAILROAD AVE and DEAD END, RAILROAD AVE between GREENPOINT AVE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+561039,Shooting Permit,02/17/2021 09:00:00 AM,02/17/2021 11:00:00 PM,02/11/2021 01:48:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVER STREET between GRAND STREET and SOUTH FIFTH STREET, RIVER STREET between GRAND STREET and NORTH 1 STREET, SOUTH 5 STREET between KENT AVENUE and BERRY STREET, WYTHE AVENUE between SOUTH 1 STREET and GRAND STREET, SOUTH 3 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,90,Television,Episodic series,United States of America,11249
+561033,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 09:00:00 PM,02/11/2021 01:38:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","22 ROAD between 21 STREET and 19 STREET, 22 DRIVE between 21 STREET and 19 STREET, 19 STREET between 21 DRIVE and DITMARS BOULEVARD, 19 STREET between 22 ROAD and 22 DRIVE",Queens,1,114,Television,Episodic series,United States of America,11105
+561030,Shooting Permit,02/19/2021 12:00:00 PM,02/20/2021 03:00:00 AM,02/11/2021 01:17:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561023,Shooting Permit,02/18/2021 11:00:00 AM,02/19/2021 02:00:00 AM,02/11/2021 12:49:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561021,Shooting Permit,02/17/2021 11:00:00 AM,02/18/2021 02:00:00 AM,02/11/2021 12:46:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+561018,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 09:00:00 PM,02/11/2021 12:09:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","FLATBUSH AVENUE between MAPLE STREET and LINCOLN ROAD, WASHINGTON AVENUE between LINCOLN ROAD and STERLING STREET",Brooklyn,9,71,Television,Episodic series,United States of America,11225
+561016,Shooting Permit,02/15/2021 07:00:00 AM,02/15/2021 10:00:00 PM,02/11/2021 11:48:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+561012,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 11:00:00 PM,02/11/2021 11:11:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 23 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+561007,Shooting Permit,02/16/2021 06:00:00 AM,02/17/2021 02:00:00 PM,02/11/2021 10:14:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KENT AVENUE between NORTH 5 STREET and METROPOLITAN AVENUE, NORTH 4 STREET between KENT AVENUE and WYTHE AVENUE, METROPOLITAN AVENUE between KENT AVENUE and WYTHE AVENUE, METROPOLITAN AVENUE between WYTHE AVENUE and BERRY STREET, NORTH 3 STREET between DEAD END and KENT AVENUE, 69 AVENUE between NANSEN STREET and OLCOTT STREET, 69 AVENUE between MANSE STREET and NANSEN STREET, NANSEN STREET between SELFRIDGE STREET and 69 AVENUE, MANSE STREET between 69 AVENUE and 70 AVENUE, OLCOTT STREET between 70 AVENUE and 69 AVENUE, OLCOTT STREET between SELFRIDGE STREET and 69 AVENUE, COOPER AVENUE between WOODHAVEN BOULEVARD and 88 STREET, 69 AVENUE between METROPOLITAN AVENUE and OLCOTT STREET",Brooklyn,"1, 5, 6","104, 112, 90, 94",Television,Episodic series,United States of America,"11222, 11249, 11374, 11375, 11385"
+560987,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 10:00:00 PM,02/10/2021 09:19:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 125 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 126 STREET between ADAM CLAYTON POWELL BOULEVARD and FREDRICK DOUGLAS BOULEVARD, WEST 126 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, WEST 125 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, MALCOLM X BOULEVARD between WEST 125 STREET and WEST 126 STREET, ADAM CLAYTON POWELL BOULEVARD between WEST 126 STREET and WEST 127 STREET",Manhattan,10,28,Television,Episodic series,United States of America,10027
+560985,Shooting Permit,02/14/2021 06:00:00 AM,02/14/2021 07:00:00 PM,02/10/2021 08:14:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between HICKS STREET and MONTAGUE TERRACE, MONTAGUE STREET between HENRY STREET and HICKS STREET, HICKS STREET between REMSEN STREET and MONTAGUE STREET, REMSEN STREET between HENRY STREET and HICKS STREET",Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+560980,Shooting Permit,02/13/2021 10:00:00 AM,02/14/2021 01:00:00 AM,02/10/2021 04:15:34 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560978,Shooting Permit,02/17/2021 07:00:00 AM,02/17/2021 10:00:00 PM,02/10/2021 04:02:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","CROSS BRONX EXPY between ST. LAWRENCE AVE and TAYLOR AVE, ST LAWRENCE AVE between CROSS BRONX EXPY and E 174TH ST, CROSS BRONX EXPY between TAYLOR AVE and THIERIOT AVE, EAST 174 STREET between ST LAWRENCE AVENUE and BEACH AVENUE, BEACH AVENUE between EAST 174 STREET and MCGRAW AVENUE, TAYLOR AVE between CROSS BRONX EXPY and MCGRAW AVE, MCGRAW AVENUE between BEACH AVENUE and TAYLOR AVENUE, TAYLOR AVENUE between MCGRAW AVENUE and WESTCHESTER AVENUE, TAYLOR AVENUE between MCGRAW AVENUE and WESTCHESTER AVENUE, WESTCHESTER AVENUE between BEACH AVENUE and THIERIOT AVENUE, WHITE PLAINS ROAD between WESTCHESTER AVENUE and GLEASON AVENUE, GLEASON AVENUE between LELAND AVENUE and WHITE PLAINS ROAD, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"11, 9","43, 49",Television,Cable-episodic,United States of America,"10462, 10467, 10472, 10473"
+560971,Rigging Permit,02/19/2021 07:00:00 AM,02/19/2021 07:00:00 PM,02/10/2021 03:09:45 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 5 STREET between AVENUE A and AVENUE B,Manhattan,3,9,Television,Episodic series,United States of America,10009
+560970,Rigging Permit,02/15/2021 07:00:00 AM,02/15/2021 07:00:00 PM,02/10/2021 03:09:13 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 5 STREET between AVENUE A and AVENUE B,Manhattan,3,9,Television,Episodic series,United States of America,10009
+560969,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 11:00:00 PM,02/10/2021 03:02:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560968,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 02:00:00 PM,02/10/2021 02:52:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",VAN BUREN STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE,Brooklyn,3,81,Commercial,Commercial,United States of America,11221
+560964,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 06:00:00 PM,02/10/2021 02:39:48 PM,"Mayor's Office of Film, Theatre & Broadcasting",VAN BUREN STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE,Brooklyn,3,81,Commercial,Commercial,United States of America,11221
+560963,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 06:00:00 PM,02/10/2021 02:37:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",VAN BUREN STREET between MARCUS GARVEY BOULEVARD and LEWIS AVENUE,Brooklyn,3,81,Commercial,Commercial,United States of America,11221
+560957,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 11:00:00 PM,02/10/2021 01:52:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between CLINTON AVENUE and WAVERLY AVENUE, GATES AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between GATES AVENUE and FULTON STREET, GATES AVENUE between WASHINGTON AVENUE and ST JAMES PLACE, WASHINGTON AVENUE between GREENE AVENUE and GATES AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11238
+560956,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 11:00:00 PM,02/10/2021 01:50:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","GATES AVENUE between CLINTON AVENUE and WAVERLY AVENUE, GATES AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between GATES AVENUE and FULTON STREET, GATES AVENUE between WASHINGTON AVENUE and ST JAMES PLACE, WASHINGTON AVENUE between GREENE AVENUE and GATES AVENUE",Brooklyn,2,88,Film,Feature,United States of America,11238
+560945,Shooting Permit,02/16/2021 12:00:00 PM,02/17/2021 03:00:00 AM,02/10/2021 12:48:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","BOWERY between SPRING STREET and KENMARE STREET, DELANCEY STREET between CHRYSTIE STREET and BOWERY, KENMARE STREET between BOWERY and ELIZABETH STREET, BOWERY between KENMARE STREET and BROOME STREET, BOWERY between BROOME STREET and GRAND STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, LAFAYETTE STREET between BROOME STREET and GRAND STREET, BROOME STREET between LAFAYETTE STREET and CROSBY STREET, BROOME STREET between CROSBY STREET and BROADWAY",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+560940,Shooting Permit,02/13/2021 06:00:00 AM,02/13/2021 07:00:00 PM,02/10/2021 12:30:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between MONTAGUE TERRACE and HICKS STREET, REMSEN STREET between HENRY STREET and HICKS STREET, HICKS STREET between REMSEN STREET and MONTAGUE STREET, MONTAGUE STREET between HICKS STREET and HENRY STREET",Brooklyn,2,84,WEB,Not Applicable,United States of America,11201
+560925,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 10:00:00 PM,02/10/2021 11:29:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","LIBERTY STREET between BROADWAY and NASSAU STREET, NASSAU STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, WILLIAM STREET between LIBERTY STREET and CEDAR STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between FLETCHER STREET and MAIDEN LANE, WATER STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between WATER STREET and PEARL STREET, WATER STREET between MAIDEN LANE and PINE STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+560920,Shooting Permit,02/12/2021 07:00:00 AM,02/12/2021 10:00:00 PM,02/10/2021 11:00:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560914,Shooting Permit,02/15/2021 06:00:00 AM,02/15/2021 10:00:00 PM,02/10/2021 10:20:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560913,Shooting Permit,02/17/2021 11:00:00 AM,02/18/2021 02:00:00 AM,02/10/2021 10:02:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, SUTTON STREET between NASSAU AVENUE and DRIGGS AVENUE, SUTTON STREET between NORMAN AVENUE and NASSAU AVENUE, BRIDGEWATER STREET between VAN DAM STREET and MEEKER AVENUE, MEEKER AVENUE between STEWART AVENUE and GARDNER AVENUE, GARDNER AVENUE between MEEKER AVENUE and THOMAS STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+560911,Rigging Permit,02/12/2021 10:00:00 PM,02/13/2021 02:00:00 PM,02/10/2021 09:14:02 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 47 STREET between 11 AVENUE and 12 AVENUE,Manhattan,4,18,Television,Episodic series,United States of America,10036
+560910,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 10:00:00 PM,02/10/2021 09:13:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between LAIGHT STREET and BEACH STREET, BEACH STREET between VARICK STREET and 6 AVENUE, ST JOHNS LANE between LAIGHT STREET and BEACH STREET, YORK STREET between ST JOHNS LANE and 6 AVENUE, 6 AVENUE between LAIGHT STREET and LISPENARD STREET, 6 AVENUE between WALKER STREET and FRANKLIN STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, CHURCH STREET between WHITE STREET and WALKER STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, WHITE STREET between CHURCH STREET and FRANKLIN PLACE, WALKER STREET between CHURCH STREET and LAFAYETTE STREET, WEST 48 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 48 STREET and WEST 50 STREET, WEST 49 STREET between 10 AVENUE and 11 AVENUE, WEST 47 STREET between 11 AVENUE and 12 AVENUE",Manhattan,"1, 4","1, 18, 5",Television,Episodic series,United States of America,"10013, 10019, 10036"
+560906,Shooting Permit,02/12/2021 09:00:00 AM,02/12/2021 11:59:00 PM,02/10/2021 08:37:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+560902,Shooting Permit,02/13/2021 06:00:00 AM,02/13/2021 11:59:00 PM,02/09/2021 11:23:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560901,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 11:00:00 PM,02/09/2021 11:18:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560893,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 09:00:00 PM,02/09/2021 06:49:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","GREENE STREET between PRINCE STREET and BROOME STREET, SPRING STREET between WOOSTER STREET and GREENE STREET, LAFAYETTE STREET between BLEECKER STREET and EAST 4 STREET, BROADWAY between BLEECKER STREET and EAST 4 STREET, GREAT JONES STREET between BROADWAY and LAFAYETTE STREET, BOND STREET between BROADWAY and LAFAYETTE STREET, BOWERY between EAST 2 STREET and EAST 3 STREET, BOND STREET between LAFAYETTE STREET and BOWERY",Manhattan,"2, 3","1, 6, 9",Television,Episodic series,United States of America,"10003, 10012"
+560892,Shooting Permit,02/12/2021 11:00:00 AM,02/13/2021 01:00:00 AM,02/09/2021 06:28:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","19 STREET between DITMARS BOULEVARD and 22 ROAD, 19 STREET between 23 ROAD and 22 ROAD, 21 STREET between 23 AVENUE and 22 ROAD, 22 ROAD between 19 STREET and 21 STREET, 22 DRIVE between 21 STREET and 19 STREET",Queens,1,114,Television,Episodic series,United States of America,11105
+560890,Shooting Permit,02/12/2021 07:00:00 AM,02/12/2021 01:00:00 PM,02/09/2021 05:52:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 22 STREET between 10 AVENUE and 11 AVENUE, WEST 21 STREET between 10 AVENUE and 11 AVENUE, WEST 23 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+560888,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 09:00:00 PM,02/09/2021 05:48:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+560887,Shooting Permit,02/12/2021 02:00:00 PM,02/13/2021 06:00:00 AM,02/09/2021 05:48:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","WARREN STREET between BROADWAY and GREENWICH STREET, BROADWAY between READE STREET and CHAMBERS STREET, READE STREET between BROADWAY and CHURCH STREET, CHURCH STREET between DUANE STREET and CHAMBERS STREET",Manhattan,1,"1, 5",Television,Cable-episodic,United States of America,"10007, 10013"
+560882,Shooting Permit,02/12/2021 07:00:00 AM,02/12/2021 11:59:00 PM,02/09/2021 05:11:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","DEGRAW STREET between 3 AVENUE and NEVINS STREET, DOUGLAS STREET between NEVINS STREET and 3 AVENUE, 3 AVENUE between DEGRAW STREET and DOUGLAS STREET, NEVINS STREET between DOUGLAS STREET and DEGRAW STREET, SACKETT STREET between 3 AVENUE and NEVINS STREET, DEGRAW STREET between DEAD END and NEVINS STREET, NEVINS STREET between DEGRAW STREET and UNION STREET",Brooklyn,6,78,Television,Episodic series,United States of America,11217
+560879,Shooting Permit,02/11/2021 08:00:00 AM,02/11/2021 10:00:00 PM,02/09/2021 04:58:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560869,Shooting Permit,02/17/2021 07:00:00 AM,02/17/2021 09:00:00 PM,02/09/2021 04:16:23 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE A between EAST 10 STREET and EAST 7 STREET, EAST 7 STREET between AVENUE A and AVENUE B, EAST 4 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 6 STREET and EAST 5 STREET, EAST 5 STREET between AVENUE A and AVENUE B, AVENUE A between EAST 5 STREET and EAST 4 STREET, EAST 4 STREET between AVENUE A and 1 AVENUE, AVENUE A between EAST 4 STREET and EAST 3 STREET, AVENUE B between EAST 5 STREET and EAST 4 STREET, EAST 4 STREET between AVENUE B and AVENUE C, EAST 28 STREET between 1 AVENUE and MOUNT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE",Manhattan,"3, 6","13, 9",Television,Episodic series,United States of America,"10009, 10010, 10016"
+560863,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 06:00:00 PM,02/09/2021 03:38:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","NASSAU STREET between LIBERTY STREET and PINE STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between WILLIAM STREET and GOLD STREET, LIBERTY STREET between BROADWAY and NASSAU STREET, WILLIAM STREET between CEDAR STREET and LIBERTY STREET, MAIDEN LANE between PEARL STREET and FRONT STREET, WATER STREET between FLETCHER STREET and MAIDEN LANE, WATER STREET between JOHN STREET and FLETCHER STREET, JOHN STREET between WATER STREET and PEARL STREET, WATER STREET between MAIDEN LANE and PINE STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10005, 10038, 10045"
+560859,Shooting Permit,02/12/2021 01:00:00 PM,02/13/2021 03:00:00 AM,02/09/2021 03:07:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between 6 AVENUE and 5 AVENUE, 5TH AVENUE between W 11TH ST and W 12TH ST, WEST 17 STREET between 7 AVENUE and 8 AVENUE, EAST 12 STREET between 5 AVENUE and UNIVERSITY PLACE, 5 AVENUE between WEST 12 STREET and WEST 13 STREET, 5 AVENUE between WEST 13 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 6",Television,Cable-episodic,United States of America,"10003, 10011"
+560857,Shooting Permit,02/12/2021 08:00:00 AM,02/12/2021 11:00:00 PM,02/09/2021 02:51:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560842,Shooting Permit,02/12/2021 01:00:00 PM,02/13/2021 05:00:00 AM,02/09/2021 01:01:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between SHORE PARKWAY and EMMONS AVENUE, EMMONS AVENUE between OCEAN AVENUE and DOOLEY STREET, SHORE BOULEVARD between GIRARD STREET and HASTINGS STREET, EMMONS AVENUE between SHEEPSHEAD BAY ROAD and OCEAN AVENUE, EAST 19 STREET between SHORE PARKWAY and EMMONS AVENUE, SHORE PARKWAY between EAST 19 STREET and DOOLEY STREET, Ocean Ave. between Shore Pkwy and Emmons Ave., DOOLEY STREET between SHORE PARKWAY and EMMONS AVENUE, SHEEPSHEAD BAY RD between Shore pkwy and E 16th st, EAST 16 STREET between SHEEPSHEAD BAY ROAD and AVENUE Z, JEROME AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11235
+560835,Shooting Permit,02/11/2021 08:00:00 AM,02/11/2021 11:00:00 PM,02/09/2021 11:37:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 1 AVENUE and 2 AVENUE",Manhattan,6,13,Television,Episodic series,United States of America,10010
+560834,Shooting Permit,02/11/2021 10:00:00 AM,02/12/2021 01:00:00 AM,02/09/2021 11:22:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between BAY RIDGE PARKWAY and 76 STREET, 3 AVENUE between 76 STREET and 77 STREET, 3 AVENUE between 77 STREET and 78 STREET, BAY RIDGE PARKWAY between RIDGE BOULEVARD and 3 AVENUE, BAY RIDGE PARKWAY between 3 AVENUE and 4 AVENUE, 77 STREET between 3 AVENUE and 4 AVENUE, 76 STREET between 3 AVENUE and 4 AVENUE, 76 STREET between RIDGE BOULEVARD and 3 AVENUE, 3 AVENUE between 78 STREET and 79 STREET, 3 AVENUE between 72 STREET and 74 STREET, 3 AVENUE between 72 STREET and BAY RIDGE AVENUE",Brooklyn,10,68,Television,Episodic series,United States of America,11209
+560825,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 10:00:00 PM,02/09/2021 09:55:48 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560803,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 09:00:00 PM,02/08/2021 06:12:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 23 STREET between 8 AVENUE and 10 AVENUE, 10 AVENUE between WEST 20 STREET and WEST 22 STREET, 9 AVENUE between WEST 19 STREET and WEST 23 STREET, WEST 19 STREET between 9 AVENUE and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+560801,Shooting Permit,02/13/2021 06:00:00 AM,02/13/2021 09:00:00 PM,02/08/2021 05:34:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+560798,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 09:00:00 PM,02/08/2021 05:20:16 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+560797,Shooting Permit,02/12/2021 09:00:00 AM,02/13/2021 02:00:00 AM,02/08/2021 05:19:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","ATLANTIC AVENUE between HOYT STREET and 4 AVENUE, STATE STREET between NEVINS STREET and 3 AVENUE, ASHLAND PLACE between LAFAYETTE AVENUE and HANSON PLACE, HANSON PLACE between ASHLAND PLACE and ST FELIX STREET, 3 AVENUE between ATLANTIC AVENUE and PACIFIC STREET",Brooklyn,2,"78, 84, 88",Television,Episodic series,United States of America,11217
+560796,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 10:00:00 PM,02/08/2021 05:09:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE AVENUE between ST FELIX STREET and FORT GREENE PLACE, Lafayette Ave between FULTON STREET and S Elliot Place, FORT GREENE PLACE between LAFAYETTE AVENUE and HANSON PLACE",Brooklyn,2,88,Commercial,PSA,United States of America,11217
+560790,Shooting Permit,02/11/2021 07:00:00 AM,02/11/2021 10:00:00 PM,02/08/2021 04:34:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560789,Shooting Permit,02/11/2021 09:00:00 AM,02/11/2021 11:59:00 PM,02/08/2021 04:31:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYCKOFF AVENUE between JEFFERSON STREET and TROUTMAN STREET, WYCKOFF AVENUE between FLUSHING AVENUE and JEFFERSON STREET, FLUSHING AVENUE between IRVING AVENUE and WYCKOFF AVENUE, JEFFERSON STREET between WYCKOFF AVENUE and IRVING AVENUE, JEFFERSON STREET between WYCKOFF AVENUE and ST NICHOLAS AVENUE, STARR STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, IRVING AVENUE between STARR STREET and SUYDAM STREET, KNICKERBOCKER AVENUE between SUYDAM STREET and STARR STREET",Brooklyn,"1, 4","83, 90",Television,Episodic series,United States of America,11237
+560787,Shooting Permit,02/11/2021 09:00:00 AM,02/12/2021 01:00:00 AM,02/08/2021 04:27:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, NASSAU AVENUE between VARICK STREET and VAN DAM STREET, VAN DAM STREET between MEEKER AVENUE and BRIDGEWATER STREET, APOLLO STREET between BRIDGEWATER STREET and MEEKER AVENUE, VARICK STREET between NASSAU AVENUE and MEEKER AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560777,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 10:00:00 PM,02/08/2021 03:50:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING AVE between SCHAEFER ST and DECATUR ST, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560776,Shooting Permit,02/17/2021 10:00:00 AM,02/17/2021 06:00:00 PM,02/08/2021 03:42:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 43 STREET between 7 AVENUE and BROADWAY,Manhattan,5,14,Television,Game show,United States of America,10036
+560772,Shooting Permit,02/10/2021 09:00:00 PM,02/11/2021 11:00:00 AM,02/08/2021 03:25:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","ELIZABETH STREET between PRINCE STREET and SPRING STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,2,5,Film,Short,United States of America,10012
+560767,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 09:00:00 PM,02/08/2021 02:55:20 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,Commercial,Commercial,United States of America,11226
+560766,Shooting Permit,02/10/2021 09:00:00 AM,02/10/2021 11:59:00 PM,02/08/2021 02:32:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between 5 AVENUE and 6 AVENUE, EAST 51 STREET between 5 AVENUE and PARK AVENUE, EAST 52 STREET between 5 AVENUE and PARK AVENUE, EAST 51 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, PARK AVENUE between EAST 51 STREET and EAST 52 STREET, WEST 51 STREET between 6 AVENUE and 7 AVENUE, WEST 52 STREET between 5 AVENUE and 6 AVENUE",Manhattan,"5, 8","18, 19",Television,Episodic series,United States of America,"10017, 10019, 10020, 10021, 10022, 10065, 10103, 10152"
+560761,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 11:00:00 PM,02/08/2021 01:36:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560759,Shooting Permit,02/10/2021 08:00:00 AM,02/11/2021 12:00:00 AM,02/08/2021 01:12:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between SHORE PARKWAY and EMMONS AVENUE, EMMONS AVENUE between OCEAN AVENUE and DOOLEY STREET, SHORE BOULEVARD between GIRARD STREET and HASTINGS STREET, EMMONS AVENUE between SHEEPSHEAD BAY ROAD and OCEAN AVENUE, EAST 19 STREET between SHORE PARKWAY and EMMONS AVENUE, SHORE PARKWAY between EAST 19 STREET and DOOLEY STREET, Ocean Ave. between Shore Pkwy and Emmons Ave., DOOLEY STREET between SHORE PARKWAY and EMMONS AVENUE, SHEEPSHEAD BAY Rd between Shore pkwy and EAST 16 STREET, EAST 16 STREET between SHEEPSHEAD BAY ROAD and AVENUE Z, JEROME AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11235
+560739,Shooting Permit,02/22/2021 07:00:00 AM,02/22/2021 09:00:00 PM,02/08/2021 11:40:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560737,Shooting Permit,02/19/2021 07:00:00 AM,02/19/2021 09:00:00 PM,02/08/2021 11:28:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560736,Shooting Permit,02/18/2021 07:00:00 AM,02/18/2021 09:00:00 PM,02/08/2021 11:25:06 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560735,Shooting Permit,02/16/2021 07:00:00 AM,02/16/2021 09:00:00 PM,02/08/2021 11:21:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560733,Shooting Permit,02/12/2021 07:00:00 AM,02/12/2021 09:00:00 PM,02/08/2021 11:12:06 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560732,Shooting Permit,02/11/2021 07:00:00 AM,02/11/2021 09:00:00 PM,02/08/2021 11:07:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560730,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 09:00:00 PM,02/08/2021 11:01:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560723,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 09:00:00 PM,02/08/2021 09:24:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET, NORTH HENRY STREET between GREENPOINT AVENUE and MESEROLE AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560722,Shooting Permit,02/18/2021 06:00:00 AM,02/18/2021 10:00:00 PM,02/08/2021 09:11:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560720,Shooting Permit,02/17/2021 06:00:00 AM,02/17/2021 10:00:00 PM,02/08/2021 09:04:38 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560716,Shooting Permit,02/16/2021 06:00:00 AM,02/16/2021 10:00:00 PM,02/08/2021 09:00:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560715,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 10:00:00 PM,02/08/2021 08:57:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560713,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 10:00:00 PM,02/08/2021 08:52:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560711,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 10:00:00 PM,02/08/2021 08:02:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+560710,Shooting Permit,02/12/2021 06:00:00 AM,02/12/2021 10:00:00 PM,02/08/2021 08:00:43 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+560709,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 10:00:00 PM,02/08/2021 07:57:46 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+560661,Shooting Permit,02/12/2021 02:00:00 PM,02/13/2021 06:00:00 AM,02/05/2021 04:34:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 19 STREET between ALBEMARLE ROAD and BEVERLY ROAD, EAST 19 STREET between BEVERLY ROAD and CORTELYOU ROAD, BEVERLY ROAD between EAST 17 STREET and EAST 18 STREET, BEVERLY ROAD between EAST 18 STREET and EAST 19 STREET, BEVERLY ROAD between EAST 19 STREET and OCEAN AVENUE",Brooklyn,14,70,Film,Feature,United States of America,11226
+560659,Shooting Permit,02/08/2021 05:00:00 AM,02/08/2021 08:00:00 PM,02/05/2021 04:21:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","STARR STREET between WOODWARD AVENUE and METROPOLITAN AVENUE, GRANDVIEW AVENUE between METROPOLITAN AVENUE and RENE COURT, WOODWARD AVENUE between STARR STREET and STANHOPE STREET, STOCKHOLM STREET between ONDERDONK AVENUE and SENECA AVENUE",Queens,5,104,Television,Made for TV/mini-series,United States of America,11385
+560654,Shooting Permit,02/11/2021 09:00:00 AM,02/11/2021 11:30:00 PM,02/05/2021 03:59:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, JOHNSON AVENUE between VARICK AVENUE and SCOTT AVENUE, STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, HARRISON PLACE between FLUSHING AVENUE and STEWART AVENUE, VARICK AVENUE between JOHNSON AVENUE and THAMES STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+560649,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 11:00:00 PM,02/05/2021 03:27:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","STEWART AVENUE between JOHNSON AVENUE and HARRISON PLACE, JOHNSON AVENUE between SCOTT AVENUE and VARICK AVENUE, GARDNER AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, INGRAHAM STREET between STEWART AVENUE and GARDNER AVENUE, HARRISON PLACE between FLUSHING AVENUE and STEWART AVENUE, VARICK AVENUE between JOHNSON AVENUE and THAMES STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,11237
+560646,Shooting Permit,02/09/2021 08:00:00 AM,02/09/2021 11:00:00 PM,02/05/2021 03:15:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560645,Shooting Permit,02/08/2021 08:30:00 AM,02/08/2021 11:00:00 PM,02/05/2021 03:11:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560637,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 07:00:00 PM,02/05/2021 02:30:29 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 23 STREET between 11 AVENUE and 10 AVENUE,Manhattan,4,10,Television,Not Applicable,United States of America,10011
+560632,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 09:30:00 PM,02/05/2021 01:59:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","46 AVENUE between 5 STREET and VERNON BOULEVARD, 47 ROAD between 5 STREET and CENTER BOULEVARD, 47 ROAD between 5 STREET and VERNON BOULEVARD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 5 STREET between 47 AVENUE and 47 ROAD, VERNON BOULEVARD between 46 AVENUE and 46 ROAD, VERNON BOULEVARD between 47 ROAD and 48 AVENUE, 46 AVENUE between CENTER BOULEVARD and 5 STREET, 5 STREET between N BASIN RD and 46 AVE, 5 STREET between 46 AVENUE and 46 ROAD, 46 ROAD between 5 STREET and VERNON BOULEVARD, CENTER BOULEVARD between 47 AVENUE and 47 ROAD, N BASIN ROAD between CENTER BLVD and 5 STREET",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+560629,Shooting Permit,02/11/2021 10:00:00 AM,02/12/2021 03:00:00 AM,02/05/2021 01:43:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 21 STREET between SHORE PARKWAY and EMMONS AVENUE, EMMONS AVENUE between OCEAN AVENUE and DOOLEY STREET, SHORE BOULEVARD between GIRARD STREET and HASTINGS STREET, EMMONS AVENUE between SHEEPSHEAD BAY ROAD and OCEAN AVENUE, EAST 19 STREET between SHORE PARKWAY and EMMONS AVENUE, SHORE PARKWAY between EAST 19 STREET and DOOLEY STREET, Ocean Ave. between Shore Pkwy and Emmons Ave., DOOLEY STREET between SHORE PARKWAY and EMMONS AVENUE, SHEEPSHEAD BAY RD between Shore pkwy and EAST 16 STREET, EAST 16 STREET between SHEEPSHEAD BAY ROAD and AVENUE Z, JEROME AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and EAST 19 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11235
+560621,Shooting Permit,02/12/2021 08:00:00 AM,02/12/2021 11:00:00 PM,02/05/2021 01:06:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560615,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 05:00:00 PM,02/05/2021 12:32:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between EAST 20 STREET and EAST 21 STREET, 5 AVENUE between EAST 20 STREET and EAST 21 STREET",Manhattan,5,13,Still Photography,Not Applicable,United States of America,"10003, 10010"
+560612,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 07:00:00 PM,02/05/2021 12:23:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",BROADWAY between EAST 4 STREET and WASHINGTON PLACE,Manhattan,2,"6, 9",Still Photography,Not Applicable,United States of America,10003
+560609,Shooting Permit,02/10/2021 08:00:00 AM,02/10/2021 11:00:00 PM,02/05/2021 12:03:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, 31 AVENUE between 12 STREET and 21 STREET, 14 STREET between 30 ROAD and BROADWAY, 34 AVENUE between 12 STREET and 21 STREET",Brooklyn,1,"114, 94",Television,Episodic series,United States of America,"11102, 11106, 11222"
+560608,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 11:00:00 PM,02/05/2021 12:03:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+560607,Shooting Permit,02/10/2021 06:00:00 AM,02/10/2021 11:00:00 PM,02/05/2021 11:51:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560606,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 11:00:00 PM,02/05/2021 11:45:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+560598,Shooting Permit,02/11/2021 08:00:00 AM,02/12/2021 12:00:00 AM,02/05/2021 10:54:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between BROADWAY and 8 AVENUE, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,"4, 5, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+560597,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 10:00:00 PM,02/05/2021 10:48:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between BROADWAY and 8 AVENUE, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,"4, 5, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+560595,Shooting Permit,02/10/2021 08:30:00 AM,02/10/2021 11:30:00 PM,02/05/2021 10:33:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and DIKEMAN STREET, KING STREET between VAN BRUNT STREET and RICHARDS STREET, KING STREET between VAN BRUNT STREET and RICHARDS STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, RICHARDS STREET between KING STREET and PIONEER STREET, PIONEER STREET between IMLAY STREET and VAN BRUNT STREET, VISITATION PLACE between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between PIONEER STREET and VERONA STREET, VAN BRUNT STREET between KING STREET and PIONEER STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+560593,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 10:00:00 PM,02/05/2021 10:08:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 54 STREET between 10 AVENUE and 9 AVENUE, WEST 56 STREET between 8 AVENUE and 10 AVENUE, WEST 55 STREET between 9 AVENUE and 10 AVENUE, 9TH AVE between WEST 59 STREET and WEST 60 ST",Manhattan,"4, 7","18, 20",Television,Episodic series,United States of America,"10019, 10023"
+560591,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 10:00:00 PM,02/05/2021 09:55:37 AM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+560585,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 09:00:00 PM,02/05/2021 09:28:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between BROADWAY and 8 AVENUE, WEST 58 STREET between 8 AVENUE and 9 AVENUE, WEST 57 STREET between 9 AVENUE and 10 AVENUE, 10 AVENUE between WEST 57 STREET and WEST 58 STREET, WEST 60 STREET between BROADWAY and COLUMBUS AVENUE",Manhattan,"4, 5, 7","18, 20",Television,Cable-episodic,United States of America,"10019, 10023"
+560581,Shooting Permit,02/07/2021 08:00:00 AM,02/07/2021 08:00:00 PM,02/05/2021 08:13:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 131 STREET between LENOX AVENUE and 5 AVENUE,Manhattan,10,"28, 32",Commercial,Commercial,United States of America,"10027, 10037"
+560563,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 11:00:00 PM,02/04/2021 05:00:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between 43 AVENUE and QUEENS PLAZA SOUTH",Queens,2,108,Television,Episodic series,United States of America,11101
+560560,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 09:00:00 PM,02/04/2021 04:49:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 29 STREET and WEST 27 STREET, WEST 27 STREET between 12 AVENUE and 11 AVENUE, 12 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10018"
+560559,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 11:00:00 PM,02/04/2021 04:43:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WYTHE AVENUE between NORTH 11 STREET and NORTH 13 STREET, NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, BERRY STREET between NORTH 11 STREET and NORTH 13 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,"11222, 11249"
+560556,Shooting Permit,02/05/2021 08:00:00 AM,02/05/2021 10:00:00 PM,02/04/2021 04:15:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560553,Shooting Permit,02/09/2021 03:00:00 PM,02/09/2021 04:00:00 PM,02/04/2021 03:44:00 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between MANHATTAN AVENUE and ECKFORD STREET, MANHATTAN AVENUE between CALYER STREET and NORMAN STREET, LORIMER STREET between CALYER STREET and MESEROLE STREET, GUERNSEY STREET between MESEROLE AVENUE and NORMAN AVENUE, DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560548,Shooting Permit,03/07/2021 06:00:00 AM,03/07/2021 11:59:00 PM,02/04/2021 02:36:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560544,Shooting Permit,03/03/2021 06:00:00 AM,03/03/2021 11:59:00 PM,02/04/2021 02:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560545,Shooting Permit,03/04/2021 06:00:00 AM,03/04/2021 11:59:00 PM,02/04/2021 02:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560546,Shooting Permit,03/05/2021 06:00:00 AM,03/05/2021 11:59:00 PM,02/04/2021 02:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560547,Shooting Permit,03/06/2021 06:00:00 AM,03/06/2021 11:59:00 PM,02/04/2021 02:36:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560540,Shooting Permit,02/27/2021 06:00:00 AM,02/27/2021 11:59:00 PM,02/04/2021 02:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560541,Shooting Permit,02/28/2021 06:00:00 AM,02/28/2021 11:59:00 PM,02/04/2021 02:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560542,Shooting Permit,03/01/2021 06:00:00 AM,03/01/2021 11:59:00 PM,02/04/2021 02:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560543,Shooting Permit,03/02/2021 06:00:00 AM,03/02/2021 11:59:00 PM,02/04/2021 02:36:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560539,Shooting Permit,02/26/2021 06:00:00 AM,02/26/2021 11:59:00 PM,02/04/2021 02:36:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 66 STREET and EAST 67 STREET, EAST 66 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,8,19,Theater,Theater,United States of America,10065
+560534,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 11:00:00 PM,02/04/2021 01:36:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560533,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 07:00:00 PM,02/04/2021 01:35:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE",Manhattan,"2, 4","10, 6",Still Photography,Not Applicable,United States of America,"10001, 10014"
+560531,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 11:00:00 PM,02/04/2021 01:30:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560530,Shooting Permit,02/11/2021 06:00:00 AM,02/11/2021 07:00:00 PM,02/04/2021 01:28:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 14 STREET and WEST 13 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE",Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+560527,Shooting Permit,02/10/2021 06:00:00 AM,02/10/2021 07:00:00 PM,02/04/2021 01:24:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 AVENUE between WEST 13 STREET and WEST 14 STREET, WEST 13 STREET between WASHINGTON STREET and 10 AVENUE",Manhattan,2,6,Still Photography,Not Applicable,United States of America,10014
+560525,Shooting Permit,02/08/2021 08:00:00 AM,02/08/2021 10:00:00 PM,02/04/2021 01:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 40 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 40 STREET and WEST 39 STREET, WEST 38 STREET between 6 AVENUE and BROADWAY, WEST 38 STREET between 6 AVENUE and 5 AVENUE, WEST 33 STREET between 8 AVENUE and 9 AVENUE, WEST 43 STREET between 6 AVENUE and BROADWAY, 6 AVENUE between WEST 42 STREET and WEST 43 STREET, 6 AVENUE between WEST 43 STREET and WEST 44 STREET, WEST 31 STREET between 8 AVENUE and 9 AVENUE",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018, 10036"
+560516,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 10:00:00 PM,02/04/2021 11:48:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560512,Shooting Permit,02/10/2021 09:00:00 AM,02/10/2021 11:59:00 PM,02/04/2021 11:00:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between NORTH 5 STREET and NORTH 7 STREET, NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 6 STREET and NORTH 7 STREET, NORTH 7 STREET between KENT AVENUE and WYTHE AVENUE",Brooklyn,1,94,Television,Cable-episodic,United States of America,11249
+560511,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 09:00:00 PM,02/04/2021 11:00:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between NORTH 5 STREET and NORTH 7 STREET, NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 6 STREET and NORTH 7 STREET, NORTH 7 STREET between KENT AVENUE and WYTHE AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+560510,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 10:00:00 PM,02/04/2021 10:54:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560495,Shooting Permit,02/11/2021 08:00:00 AM,02/11/2021 11:00:00 PM,02/04/2021 09:36:22 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560494,Shooting Permit,02/10/2021 08:00:00 AM,02/10/2021 11:00:00 PM,02/04/2021 09:30:45 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560462,Shooting Permit,02/09/2021 08:00:00 AM,02/10/2021 12:00:00 AM,02/03/2021 04:22:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between KENT AVENUE and DRIGGS AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, NORTH 13 STREET between KENT AVENUE and BERRY STREET, BERRY STREET between NORTH 12 STREET and NORTH 14 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET, QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 13 STREET and 21 STREET, 43 AVENUE between 11 STREET and 13 STREET, 13 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between 13 STREET and 21 STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11211, 11222, 11249"
+560461,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 10:00:00 PM,02/03/2021 04:01:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between GLENWOOD ROAD and FOSTER AVENUE,Brooklyn,14,70,Television,Cable-episodic,United States of America,11230
+560459,Shooting Permit,02/05/2021 07:00:00 PM,02/06/2021 07:00:00 AM,02/03/2021 03:48:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","LINCOLN PLACE between UTICA AVENUE and ROCHESTER AVENUE, LINCOLN PLACE between UTICA AVENUE and ROCHESTER AVENUE, ST JOHNS PLACE between UTICA AVENUE and ROCHESTER AVENUE, CLINTON AVENUE between FLUSHING AVENUE and PARK AVENUE, CLINTON AVENUE between FLUSHING AVENUE and PARK AVENUE, WAVERLY AVENUE between FLUSHING AVENUE and PARK AVENUE",Brooklyn,"2, 8","77, 88",Film,Short,United States of America,"11205, 11213"
+560454,Shooting Permit,02/08/2021 06:30:00 AM,02/08/2021 10:00:00 PM,02/03/2021 02:44:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560445,Shooting Permit,02/11/2021 07:00:00 AM,02/12/2021 12:00:00 AM,02/03/2021 01:53:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, CEDAR STREET between PEARL STREET and WILLIAM STREET",Manhattan,1,1,Film,Feature,United States of America,"10005, 10038"
+560442,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 10:00:00 PM,02/03/2021 01:28:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 44 STREET between 8 AVENUE and 9 AVENUE, WEST 44 STREET between 9 AVENUE and 10 AVENUE, WEST 45 STREET between 10 AVENUE and 11 AVENUE, WEST 45 STREET between 11 AVENUE and 12 AVENUE, WEST 46 STREET between 10 AVENUE and 11 AVENUE, 11 AVENUE between WEST 45 STREET and WEST 47 STREET, 11 AVENUE between WEST 48 STREET and WEST 49 STREET, WEST 49 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,"14, 18",Television,Cable-episodic,United States of America,"10019, 10036"
+560441,Shooting Permit,02/14/2021 08:00:00 AM,02/14/2021 11:00:00 PM,02/03/2021 01:12:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 126 STREET between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD,Manhattan,10,28,WEB,Not Applicable,United States of America,10027
+560440,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 10:00:00 PM,02/03/2021 01:05:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560438,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 10:00:00 PM,02/03/2021 12:52:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 62 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, BROADWAY between WEST 63 STREET and WEST 62 STREET, WEST 65 STREET between CENTRAL PARK WEST and COLUMBUS AVENUE, WEST 65 STREET between COLUMBUS AVENUE and CENTRAL PARK WEST, BROADWAY between WEST 66 STREET and WEST 70 STREET, WEST 64 STREET between BROADWAY and CENTRAL PARK WEST",Manhattan,7,20,Television,Episodic series,United States of America,10023
+560437,Shooting Permit,02/06/2021 09:00:00 AM,02/06/2021 11:00:00 PM,02/03/2021 12:51:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+560434,Shooting Permit,02/05/2021 06:00:00 AM,02/05/2021 10:00:00 PM,02/03/2021 12:45:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560425,Shooting Permit,02/09/2021 09:30:00 AM,02/09/2021 11:30:00 PM,02/03/2021 11:57:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","WALL STREET between WILLIAM STREET and PEARL STREET, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, BEAVER STREET between PEARL STREET and HANOVER STREET, WATER STREET between MAIDEN LANE and PINE STREET, WATER STREET between WALL STREET and OLD SLIP, BROAD STREET between WATER STREET and SOUTH STREET, SOUTH STREET between BROAD STREET and OLD SLIP",Manhattan,1,1,Television,Cable-episodic,United States of America,"10004, 10005"
+560421,Shooting Permit,02/06/2021 09:00:00 AM,02/06/2021 11:00:00 PM,02/03/2021 11:34:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+560420,Shooting Permit,02/04/2021 10:00:00 AM,02/05/2021 03:00:00 AM,02/03/2021 11:34:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 101 STREET and MARINE AVENUE, WEST 12 STREET between SURF AVENUE and DEAD END, STILLWELL AVENUE between SURF AVENUE and BOARDWALK",Brooklyn,"10, 13","60, 68",Television,Episodic series,United States of America,"11209, 11224"
+560417,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 10:00:00 PM,02/03/2021 11:22:28 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560416,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 10:00:00 PM,02/03/2021 11:18:53 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560415,Shooting Permit,02/06/2021 12:00:00 PM,02/07/2021 02:00:00 AM,02/03/2021 11:15:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 23 AVENUE and 22 ROAD, 22 DRIVE between 19 STREET and 21 STREET, 22 ROAD between 19 STREET and 21 STREET, 19 STREET between 23 AVENUE and 22 ROAD",Queens,1,114,Television,Episodic series,United States of America,11105
+560407,Shooting Permit,02/05/2021 05:00:00 PM,02/06/2021 06:00:00 AM,02/03/2021 10:38:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","ALMEDA AVENUE between BEACH 58 STREET and BEACH 51 STREET, Edgemere Park Rd between Conch Place and Dead End",Queens,14,"100, 101",Television,Episodic series,United States of America,"11691, 11692"
+560405,Shooting Permit,02/05/2021 08:00:00 AM,02/05/2021 11:00:00 PM,02/03/2021 10:29:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between N Henry St and Greenpoint Ave, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560400,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 11:00:00 PM,02/03/2021 09:52:48 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560397,Shooting Permit,02/06/2021 09:00:00 AM,02/06/2021 11:59:00 PM,02/03/2021 09:29:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 30 STREET and WEST 33 STREET, 11 AVENUE between WEST 29 STREET and WEST 27 STREET, W 30 ST between 11 AVE and 10 AVE, WEST 27 STREET between 11 AVENUE and 12 AVENUE, 12 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,4,10,Television,Cable-episodic,United States of America,"10001, 10018"
+560390,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 10:00:00 PM,02/03/2021 07:19:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE, STEINWAY STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+560389,Shooting Permit,02/08/2021 06:00:00 AM,02/08/2021 10:00:00 PM,02/03/2021 07:06:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE, STEINWAY STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+560388,Shooting Permit,02/07/2021 06:00:00 AM,02/07/2021 10:00:00 PM,02/03/2021 07:06:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","19 AVENUE between STEINWAY STREET and 38 STREET, 38 STREET between 19 AVENUE and 20 AVENUE, STEINWAY STREET between 19 AVENUE and 20 AVENUE",Queens,1,114,Commercial,Commercial,United States of America,11105
+560383,Shooting Permit,02/05/2021 11:00:00 AM,02/05/2021 11:30:00 PM,02/02/2021 10:10:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","48 AVENUE between 5 STREET and VERNON BOULEVARD, 48 AVENUE between CENTER BOULEVARD and 5 STREET, VERNON BOULEVARD between 46 AVENUE and 45th AVENUE, 46 AVENUE between VERNON BOULEVARD and 11 STREET, 46 AVENUE between 5 STREET and VERNON BOULEVARD, VERNON BOULEVARD between 46 ROAD and 46 AVENUE, CENTER BOULEVARD between 47 AVENUE and 46 AVENUE",Queens,2,108,Television,Episodic series,United States of America,"11101, 11109"
+560382,Shooting Permit,02/06/2021 06:00:00 AM,02/06/2021 06:00:00 PM,02/02/2021 09:32:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",BARCLAY STREET between CHURCH STREET and BROADWAY,Manhattan,1,1,Television,Game show,United States of America,10007
+560372,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 09:00:00 PM,02/02/2021 04:53:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENT AVENUE between NORTH 5 STREET and NORTH 7 STREET, NORTH 6 STREET between KENT AVENUE and WYTHE AVENUE, WYTHE AVENUE between NORTH 6 STREET and NORTH 7 STREET, NORTH 7 STREET between KENT AVENUE and WYTHE AVENUE, LORIMER STREET between DRIGGS AVENUE and BAYARD STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+560364,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 11:00:00 PM,02/02/2021 03:23:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+560363,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 09:00:00 PM,02/02/2021 03:15:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+560362,Shooting Permit,02/06/2021 07:00:00 AM,02/06/2021 10:00:00 PM,02/02/2021 03:10:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560359,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 10:00:00 PM,02/02/2021 03:06:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560358,Shooting Permit,02/04/2021 10:00:00 AM,02/04/2021 10:00:00 PM,02/02/2021 03:04:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","NORMAN STREET between CYPRESS AVENUE and WYCKOFF AVENUE, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560357,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 10:00:00 PM,02/02/2021 02:58:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560354,Shooting Permit,02/03/2021 08:00:00 AM,02/03/2021 10:00:00 PM,02/02/2021 02:30:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+560352,Shooting Permit,02/05/2021 09:00:00 AM,02/05/2021 11:00:00 PM,02/02/2021 01:59:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 6 STREET between BERRY STREET and BEDFORD AVENUE, BEDFORD AVENUE between SOUTH 6 STREET and SOUTH 5 STREET, SOUTH 5 STREET between KENT AVENUE and WYTHE AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between BEDFORD AVENUE and DRIGGS AVENUE",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+560348,Shooting Permit,02/05/2021 10:00:00 AM,02/06/2021 02:00:00 AM,02/02/2021 01:41:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+560323,Shooting Permit,02/09/2021 07:30:00 AM,02/09/2021 09:30:00 PM,02/02/2021 01:04:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","KING STREET between VAN BRUNT STREET and RICHARDS STREET, PIONEER STREET between IMLAY STREET and VAN BRUNT STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between KING STREET and VERONA STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+560320,Shooting Permit,02/08/2021 07:30:00 AM,02/08/2021 09:00:00 PM,02/02/2021 12:53:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","COFFEY STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between VAN DYKE STREET and COFFEY STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, PIONEER STREET between VAN BRUNT STREET and IMLAY STREET, KING STREET between VAN BRUNT STREET and RICHARDS STREET, VAN BRUNT STREET between KING STREET and VISITATION PLACE",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+560319,Shooting Permit,02/03/2021 06:00:00 AM,02/03/2021 10:00:00 PM,02/02/2021 12:51:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+560318,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 11:00:00 PM,02/02/2021 12:43:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560316,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 11:00:00 PM,02/02/2021 12:41:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560315,Shooting Permit,02/10/2021 07:00:00 AM,02/10/2021 10:00:00 PM,02/02/2021 12:38:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 181 STREET, BROADWAY between WEST 174 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET",Manhattan,12,"33, 34",Television,Episodic series,United States of America,10033
+560314,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 10:00:00 PM,02/02/2021 12:36:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between BEACH STREET and LAIGHT STREET, BEACH STREET between VARICK STREET and WEST BROADWAY, Beach St between VARICK STREET and 6th Ave, WEST BROADWAY between BEACH STREET and NORTH MOORE STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, CHURCH STREET between WALKER STREET and FRANKLIN STREET, WHITE between CHURCH ST and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY, YORK STREET between ST JOHNS LANE and 6 AVENUE, 6 AVENUE between LAIGHT STREET and LISPENARD STREET, WALKER STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10013
+560313,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 11:00:00 PM,02/02/2021 12:18:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560311,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 09:00:00 PM,02/02/2021 12:03:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+560309,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 09:00:00 PM,02/02/2021 11:40:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","W 116TH ST between FREDRICK DOUGLAS BOULEVARD and ADAM CLAYTON POWELL BOULEVARD, W 116TH ST between ADAM CLAYTON POWELL BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 116 STREET and WEST 118 STREET, WEST 116 STREET between 5 AVENUE and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 120 STREET and WEST 121 STREET, WEST 120 STREET between 5 AVENUE and MT MORRIS PARK WEST, MALCOLM X BOULEVARD between WEST 121 STREET and WEST 120 STREET, WEST 118 STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL BOULEVARD",Manhattan,"10, 11","25, 28",Television,Episodic series,United States of America,"10026, 10027"
+560308,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 09:00:00 PM,02/02/2021 11:28:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560307,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 09:00:00 PM,02/02/2021 11:23:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREEENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560304,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 09:00:00 PM,02/02/2021 10:58:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560302,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 09:00:00 PM,02/02/2021 10:18:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560300,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 09:00:00 PM,02/02/2021 09:53:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560299,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 10:00:00 PM,02/02/2021 09:17:31 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560293,Shooting Permit,02/04/2021 09:00:00 PM,02/05/2021 10:00:00 AM,02/02/2021 12:20:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","ELIZABETH STREET between PRINCE STREET and SPRING STREET, KENMARE STREET between ELIZABETH STREET and BOWERY",Manhattan,2,5,Film,Short,United States of America,10012
+560287,Shooting Permit,02/03/2021 06:00:00 AM,02/03/2021 11:00:00 PM,02/01/2021 10:06:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560276,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 11:00:00 PM,02/01/2021 05:15:18 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+560275,Shooting Permit,02/04/2021 11:00:00 AM,02/05/2021 01:00:00 AM,02/01/2021 05:13:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 54 STREET, EAST 51 STREET between MADISON AVENUE and PARK AVENUE, EAST 51 STREET between 5 AVENUE and MADISON AVENUE, EAST 52 STREET between MADISON AVENUE and PARK AVENUE, EAST 50 STREET between MADISON AVENUE and PARK AVENUE, WHITE STREET between CHURCH STREET and BROADWAY, WEST STREET between CHAMBERS STREET and HUBERT STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, WALKER STREET between CHURCH STREET and BROADWAY, 6 AVENUE between WHITE STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and WHITE STREET, CHURCH STREET between WHITE STREET and WALKER STREET",Manhattan,"1, 5","1, 18",Television,Episodic series,United States of America,"10013, 10022, 10152, 10282"
+560272,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 10:00:00 PM,02/01/2021 04:42:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560268,Shooting Permit,02/05/2021 09:00:00 AM,02/05/2021 11:00:00 PM,02/01/2021 03:44:02 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 46 STREET between 12 AVENUE and 10 AVENUE,Manhattan,4,18,Television,Episodic series,United States of America,10036
+560261,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 10:00:00 PM,02/01/2021 01:37:23 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+560256,Shooting Permit,02/06/2021 07:00:00 AM,02/06/2021 11:00:00 PM,02/01/2021 01:16:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST. between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+560241,Shooting Permit,02/04/2021 09:00:00 AM,02/04/2021 11:00:00 PM,02/01/2021 10:42:28 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 35 STREET between 7 AVENUE and 8 AVENUE, 8 AVENUE between WEST 35 STREET and WEST 36 STREET, 8 AVENUE between WEST 37 STREET and WEST 36 STREET, WEST 35 STREET between 9 AVENUE and 8 AVENUE, WEST 37 STREET between 8 AVENUE and 7 AVENUE",Manhattan,"4, 5",14,Television,Cable-episodic,United States of America,"10001, 10018"
+560240,Shooting Permit,02/04/2021 08:00:00 AM,02/05/2021 01:00:00 AM,02/01/2021 10:39:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","TILDEN AVENUE between FLATBUSH AVENUE and BEDFORD AVENUE, E 22 STREET between DEAD END and DURYEA PLACE, DURYEA PLACE between EAST 22 STREET and FLATBUSH AVENUE, FLATBUSH AVENUE between TILDEN AVENUE and DURYEA PLACE, BEDFORD AVENUE between TILDEN AVENUE and BEVERLY ROAD, BEVERLEY ROAD between FLATBUSH AVENUE and EAST 22 STREET",Brooklyn,"14, 17","67, 70",Television,Episodic series,United States of America,11226
+560237,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 11:00:00 PM,02/01/2021 10:12:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","11 AVENUE between WEST 59 STREET and WEST 57 STREET, WEST 52 STREET between 11 AVENUE and 12 AVENUE, 11 AVENUE between WEST 52 STREET and WEST 51 STREET, WEST 51 STREET between 12 AVENUE and 11 AVENUE, 11 AVENUE between WEST 50 STREET and WEST 48 STREET, WEST 49 STREET between 11 AVENUE and 10 AVENUE",Manhattan,4,18,Television,Episodic series,United States of America,"10019, 10036"
+560182,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 11:00:00 PM,01/29/2021 05:00:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","CLAY AVENUE between EAST 170 STREET and EAST 171 STREET, EAST 170 STREET between TELLER AVENUE and CLAY AVENUE, FINDLAY AVENUE between EAST 167 STREET and EAST 168 STREET, FINDLAY AVENUE between EAST 168 STREET and EAST 169 STREET, EAST 168 STREET between COLLEGE AVENUE and TELLER AVENUE, TELLER AVENUE between EAST 168 STREET and EAST 169 STREET, WEBSTER AVENUE between EAST 168 STREET and EAST 170 STREET",Bronx,"3, 4","42, 44",Television,Cable-episodic,United States of America,"10456, 10457"
+560174,Shooting Permit,02/09/2021 07:00:00 AM,02/09/2021 10:00:00 PM,01/29/2021 04:05:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between CHARLES STREET and PERRY STREET, GREENWICH STREET between WEST 10 STREET and CHARLES STREET, GREENWICH STREET between WEST HOUSTON STREET and MORTON STREET, CLARKSON STREET between GREENWICH STREET and HUDSON STREET, BARROW STREET between WASHINGTON STREET and GREENWICH STREET, GREENWICH STREET between BARROW STREET and CHRISTOPHER STREET, GREENWICH STREET between CHRISTOPHER STREET and WEST 10 STREET, GREENWICH STREET between PERRY STREET and WEST 11 STREET, GREENWICH STREET between WEST 11 STREET and BANK STREET, CHARLES STREET between WASHINGTON STREET and GREENWICH STREET, WEST STREET between BANK STREET and BETHUNE STREET, HUDSON STREET between WEST 10 STREET and CHARLES STREET, WASHINGTON STREET between CHRISTOPHER STREET and BARROW STREET",Manhattan,2,6,Television,Episodic series,United States of America,10014
+560166,Shooting Permit,02/05/2021 07:00:00 AM,02/05/2021 09:00:00 PM,01/29/2021 03:18:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","Schley Ave between EAST TREMONT AVENUE and Cross Bronx Expressway, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, E Tremont Ave between Cross Bronx Expressway and Roosevelt Ave, Cross Bronx Expressway between Revere Ave and E Tremont Ave, COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10465, 10473"
+560141,Shooting Permit,02/03/2021 06:00:00 AM,02/03/2021 10:00:00 PM,01/29/2021 01:20:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+560129,Shooting Permit,02/04/2021 08:00:00 AM,02/04/2021 11:00:00 PM,01/29/2021 11:47:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+560120,Shooting Permit,02/08/2021 07:00:00 AM,02/08/2021 11:00:00 PM,01/29/2021 10:51:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 5 AVENUE and 6 AVENUE, EAST 43 STREET between 5 AVENUE and MADISON AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 44 STREET between 6 AVENUE and BROADWAY",Manhattan,5,14,Television,Episodic series,United States of America,"10017, 10036"
+560117,Shooting Permit,02/02/2021 06:00:00 AM,02/02/2021 08:00:00 PM,01/29/2021 10:37:09 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 18TH STREET between BROADWAY and PARK AVENUE SOUTH,Manhattan,5,13,Commercial,Commercial,United States of America,10003
+560116,Shooting Permit,02/09/2021 06:00:00 AM,02/09/2021 10:00:00 PM,01/29/2021 10:35:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 138 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560109,Shooting Permit,02/05/2021 06:00:00 AM,02/05/2021 10:00:00 PM,01/29/2021 09:37:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+560106,Shooting Permit,01/31/2021 11:00:00 AM,02/01/2021 12:00:00 AM,01/29/2021 08:51:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","FRANKLIN AVENUE between JEFFERSON AVENUE and HANCOCK STREET, FRANKLIN AVENUE between HANCOCK STREET and FULTON STREET, CLAVER PLACE between PUTNAM AVENUE and JEFFERSON AVENUE, ATLANTIC AVENUE between BEDFORD AVENUE and NOSTRAND AVENUE",Brooklyn,"3, 8","77, 79",Music Video,Signed Artist,United States of America,"11216, 11238"
+560105,Shooting Permit,01/30/2021 08:30:00 AM,01/31/2021 12:00:00 AM,01/29/2021 08:02:50 AM,"Mayor's Office of Film, Theatre & Broadcasting",FLATBUSH AVENUE between CHESTER COURT and HAWTHORNE STREET,Brooklyn,"14, 9","70, 71",Music Video,Signed Artist,United States of America,"11225, 11226"
+560068,Shooting Permit,02/05/2021 09:00:00 AM,02/05/2021 11:00:00 PM,01/28/2021 04:16:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+560039,Shooting Permit,02/05/2021 06:00:00 AM,02/06/2021 02:00:00 AM,01/28/2021 02:41:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 49 STREET and EAST 45 STREET, EAST 46 STREET between 2 AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,10017
+560027,Shooting Permit,02/09/2021 08:00:00 AM,02/09/2021 09:00:00 PM,01/28/2021 01:37:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","ADAM CLAYTON POWELL JR BOULEVARD between WEST 117 STREET and WEST 119 STREET, WEST 119 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, WEST 118 STREET between ST NICHOLAS AVENUE and ADAM CLAYTON POWELL JR BOULEVARD, WEST 118 STREET between ADAM CLAYTON POWELL JR BOULEVARD and LENOX AVENUE, ST NICHOLAS AVENUE between WEST 118 STREET and WEST 119 STREET, LENOX AVENUE between WEST 120 STREET and WEST 121 STREET, EAST 105 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 106 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 105 STREET and EAST 106 STREET, 3 AVENUE between EAST 103 STREET and EAST 105 STREET, 3 AVENUE between EAST 105 STREET and EAST 108 STREET, EAST 103 STREET between LEXINGTON AVENUE and PARK AVENUE",Manhattan,"10, 11","23, 28",Television,Episodic series,United States of America,"10026, 10027, 10029"
+560022,Shooting Permit,01/29/2021 07:00:00 AM,01/30/2021 12:00:00 AM,01/28/2021 12:53:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","MOULTRIE STREET between NORMAN AVENUE and MESEROLE AVENUE, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and JEWEL STREET, CALYER STREET between DIAMOND STREET and JEWEL STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559984,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 08:00:00 PM,01/28/2021 09:48:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","DYCKMAN STREET between HENRY HUDSON PARKWAY and PAYSON AVENUE, PAYSON AVENUE between DYCKMAN STREET and RIVERSIDE DRIVE, RIVERSIDE DRIVE between HENSHAW STREET and SEAMAN AVENUE, SEAMAN AVENUE between RIVERSIDE DRIVE and DYCKMAN STREET, BROADWAY between DONGAN PLACE and THAYER STREET",Manhattan,12,34,Television,Episodic series,United States of America,"10034, 10040"
+559982,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 09:00:00 PM,01/28/2021 08:37:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, FULTON STREET between BROADWAY and CHURCH STREET, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+559976,Shooting Permit,01/31/2021 06:00:00 AM,02/01/2021 12:00:00 AM,01/28/2021 02:53:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 58 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 58 STREET between LEX AVENUE and PARK AVENUE, EAST 59 STREET between 3 AVENUE and LEX AVENUE, EAST 59 STREET between LEX AVENUE and PARK AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 6, 8","17, 18, 19",Commercial,Commercial,United States of America,"10022, 10155"
+559975,Shooting Permit,01/30/2021 06:00:00 AM,01/31/2021 12:00:00 AM,01/28/2021 01:37:31 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 58 STREET between LEX AVENUE and 3 AVENUE, EAST 58 STREET between LEX AVENUE and PARK AVENUE, EAST 59 STREET between 3 AVENUE and LEX AVENUE, EAST 59 STREET between LEX AVENUE and PARK AVENUE, MADISON AVENUE between EAST 58 STREET and EAST 59 STREET",Manhattan,"5, 6, 8","17, 18, 19",Commercial,Commercial,United States of America,"10022, 10155"
+559948,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 09:00:00 PM,01/27/2021 03:51:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559945,Shooting Permit,02/02/2021 07:00:00 AM,02/02/2021 09:00:00 PM,01/27/2021 03:45:53 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559932,Shooting Permit,01/30/2021 07:00:00 AM,01/30/2021 11:00:00 PM,01/27/2021 02:30:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559924,Shooting Permit,01/30/2021 06:00:00 AM,01/30/2021 09:00:00 PM,01/27/2021 01:30:52 PM,"Mayor's Office of Film, Theatre & Broadcasting",NORTH DRIVE between PARSONS BOULEVARD and MALBA DRIVE,Queens,7,109,Commercial,Commercial,United States of America,11357
+559918,Shooting Permit,02/05/2021 06:00:00 AM,02/05/2021 11:00:00 PM,01/27/2021 01:20:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559916,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 11:00:00 PM,01/27/2021 01:13:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559915,Shooting Permit,01/29/2021 07:00:00 AM,01/29/2021 11:00:00 PM,01/27/2021 01:04:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVE between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559909,Shooting Permit,01/29/2021 07:00:00 AM,01/29/2021 09:00:00 PM,01/27/2021 12:09:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559907,Shooting Permit,01/29/2021 02:00:00 PM,01/30/2021 03:00:00 AM,01/27/2021 12:06:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between MCGUINNESS BOULEVARD and DIAMOND STREET, NEWEL STREET between CALYER STREET and GREENPOINT AVENUE, NEWEL STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and GREENPOINT AVENUE, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559905,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 11:00:00 PM,01/27/2021 11:59:44 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+559899,Shooting Permit,02/03/2021 06:00:00 AM,02/03/2021 11:00:00 PM,01/27/2021 10:49:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559898,Shooting Permit,01/29/2021 07:00:00 AM,01/29/2021 09:00:00 PM,01/27/2021 10:38:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDS STREET between PIONEER STREET and KING STREET, VAN BRUNT STREET between KING STREET and VERONA STREET, KING STREET between VAN BRUNT STREET and RICHARDS STREET, PIONEER STREET between VAN BRUNT STREET and RICHARDS STREET, VISITATION PLACE between VAN BRUNT STREET and RICHARDS STREET",Brooklyn,6,76,Television,Episodic series,United States of America,11231
+559897,Shooting Permit,01/30/2021 02:00:00 PM,01/31/2021 04:30:00 AM,01/27/2021 10:35:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, NORTH 13 STREET between BERRY STREET and WYTHE AVENUE, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+559861,Shooting Permit,01/29/2021 10:00:00 AM,01/30/2021 01:00:00 AM,01/26/2021 04:46:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, ZULETTE AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and MAITLAND AVENUE, ERICSON PLACE between MAITLAND AVENUE and ROEBLING AVENUE, Hutchinson River Parkway East between Roebling Ave and E Tremont Ave, PATTERSON AVENUE between BEACH AVENUE and TAYLOR AVENUE, PATTERSON AVENUE between TAYLOR AVENUE and THERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, TAYLOR AVENUE between LACOMBE AVENUE and PATTERSON AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, SOUNDVIEW AVENUE between RANDALL AVENUE and PATTERSON AVENUE, COMMONWEALTH AVENUE between LACOMBE AVENUE and RANDALL AVENUE, PATTERSON AVENUE between BEACH AVENUE and ST LAWRENCE AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10461, 10473"
+559845,Shooting Permit,01/29/2021 08:00:00 AM,01/29/2021 11:30:00 PM,01/26/2021 03:43:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+559841,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 09:00:00 PM,01/26/2021 03:33:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","82 STREET between RIDGE BOULEVARD and COLONIAL ROAD, 83 STREET between COLONIAL ROAD and NARROWS AVENUE",Brooklyn,10,68,Commercial,Commercial,United States of America,11209
+559839,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 10:00:00 PM,01/26/2021 03:19:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 176 STREET between BROADWAY and WADSWORTH AVENUE, ST NICHOLAS AVENUE between WEST 175 STREET and WEST 181 STREET, BROADWAY between WEST 174 STREET and WEST 176 STREET, WADSWORTH AVENUE between WEST 176 STREET and WEST 175 STREET",Manhattan,12,"33, 34",Television,Episodic series,United States of America,10033
+559838,Shooting Permit,02/02/2021 07:00:00 AM,02/02/2021 10:00:00 PM,01/26/2021 03:19:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","VARICK STREET between BEACH STREET and LAIGHT STREET, BEACH STREET between VARICK STREET and WEST BROADWAY, BEACH ST between VARICK STREET and 6TH AVE, WEST BROADWAY between BEACH STREET and NORTH MOORE STREET, 6 AVENUE between LISPENARD STREET and WALKER STREET, CHURCH STREET between WALKER STREET and FRANKLIN STREET, WHITE STREET between CHURCH STREET and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY, YORK STREET between ST JOHNS LANE and 6 AVENUE, 6 AVENUE between LAIGHT STREET and LISPENARD STREET",Manhattan,1,1,Television,Episodic series,United States of America,10013
+559833,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 09:00:00 PM,01/26/2021 02:55:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","67 STREET between 5 AVENUE and 6 AVENUE, 6 AVENUE between SENATOR STREET and 68 STREET",Brooklyn,10,68,Commercial,Commercial,United States of America,11220
+559831,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 09:00:00 PM,01/26/2021 02:32:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","67 STREET between 6 AVENUE and 7 AVE, 6 AVENUE between 68 STREET and SENATOR STREET",Brooklyn,10,68,Commercial,Commercial,United States of America,11220
+559826,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 09:00:00 PM,01/26/2021 02:02:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","83 STREET between NARROWS AVENUE and COLONIAL ROAD, 82 STREET between RIDGE BOULEVARD and COLONIAL ROAD",Brooklyn,10,68,Commercial,Commercial,United States of America,11209
+559819,Shooting Permit,01/29/2021 12:00:00 PM,01/30/2021 03:00:00 AM,01/26/2021 01:47:54 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22nd St. between queens plaza s and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 44 ROAD between 21 STREET and 23 STREET, 21 STREET between 44 ROAD and 44 DRIVE, 21 STREET between 43 AVENUE and 44 ROAD, 44 AVENUE between 21 STREET and 23 STREET, 23 STREET between 44 AVENUE and 44 ROAD, 43 AVENUE between 22 STREET and 23 STREET, 22 STREET between 43 AVENUE and 44 AVENUE, 44 DRIVE between 21 STREET and 23 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+559796,Shooting Permit,01/29/2021 10:00:00 AM,01/30/2021 02:00:00 AM,01/26/2021 01:04:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559791,Shooting Permit,02/06/2021 07:00:00 AM,02/06/2021 08:00:00 PM,01/26/2021 12:44:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559789,Shooting Permit,01/28/2021 03:30:00 PM,01/29/2021 05:00:00 AM,01/26/2021 12:28:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEEKMAN STREET between NASSAU STREET and WILLIAM STREET, NASSAU STREET between BEEKMAN STREET and SPRUCE STREET, NASSAU STREET between ANN STREET and BEEKMAN STREET, BEEKMAN STREET between PARK ROW and NASSAU STREET, CATHERINE SLIP between CHERRY STREET and SOUTH STREET, SOUTH ST between ROBERT F WAGNER SR PLACE and CATHERINE SLIP, ROBERT F WAGNER SR PLACE between PEARL STREET and SOUTH STREET, FULTON STREET between GOLD STREET and PEARL STREET, GOLD STREET between FULTON STREET and SPRUCE STREET, SPRUCE STREET between GOLD STREET and NASSAU STREET, PARK ROW between ANN STREET and BEEKMAN STREET, WILLIAM STREET between ANN STREET and BEEKMAN STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10002, 10038"
+559781,Shooting Permit,01/31/2021 06:00:00 AM,01/31/2021 06:00:00 PM,01/26/2021 11:33:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between BROADWAY and CHURCH STREET, LIBERTY STREET between CHURCH STREET and BROADWAY",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10048"
+559777,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 10:00:00 PM,01/26/2021 11:16:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559773,Shooting Permit,02/03/2021 07:00:00 AM,02/03/2021 11:00:00 PM,01/26/2021 11:00:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","PEARL STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between PEARL STREET and WATER STREET, WATER STREET between PINE STREET and MAIDEN LANE, MAIDEN LANE between WATER STREET and FRONT STREET, MAIDEN LANE between FRONT STREET and SOUTH STREET, WATER STREET between JOHN STREET and FLETCHER STREET, CEDAR STREET between PEARL STREET and WILLIAM STREET",Manhattan,1,1,Film,Feature,United States of America,"10005, 10038"
+559767,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 10:00:00 PM,01/26/2021 10:27:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 53 STREET between LEXINGTON AVENUE and PARK AVENUE, EAST 52 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 52 STREET and EAST 53 STREET, LEXINGTON AVENUE between EAST 52 STREET and EAST 53 STREET, EAST 52 STREET between LEXINGTON AVENUE and 3 AVENUE",Manhattan,"5, 6","17, 18",Commercial,Commercial,United States of America,"10022, 10152"
+559766,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 11:00:00 PM,01/26/2021 09:47:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE, Kingsland Ave between NORTH HENRY STREET and GREENPOINT AVE, KINGSLAND AVE between NORTH HENRY STREET and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559765,Shooting Permit,01/28/2021 12:00:00 PM,01/29/2021 01:00:00 AM,01/26/2021 09:04:43 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 4 STREET between COOPER SQUARE and LAFAYETTE STREET, COOPER SQUARE between EAST 5 STREET and EAST 4 STREET, BOWERY between EAST 4 STREET and EAST 3 STREET, E 4TH ST between COOPER SQ and LAFAYETTE ST, EAST 4 STREET between LAFAYETTE STREET and BROADWAY, LAFAYETTE STREET between EAST 4 STREET and ASTOR PLACE, LAFAYETTE STREET between EAST 4 STREET and GREAT JONES STREET, LAFAYETTE STREET between GREAT JONES STREET and BOND STREET, LAFAYETTE STREET between BOND STREET and BLEEKER STREET, BOND STREET between LAFAYETTE STREET and BROADWAY",Manhattan,"2, 3",9,Television,Cable-episodic,United States of America,"10003, 10012"
+559752,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 11:00:00 PM,01/26/2021 06:56:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 48 STREET and EAST 49 STREET, 3 AVENUE between EAST 45 STREET and EAST 49 STREET, EAST 46 STREET between 2 AVENUE and 3 AVENUE, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 46 STREET and EAST 47 STREET, EAST 49 STREET between PARK AVENUE and MADISON AVENUE",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10167, 10171, 10177"
+559741,Shooting Permit,02/04/2021 06:00:00 AM,02/04/2021 09:00:00 PM,01/25/2021 07:13:37 PM,"Mayor's Office of Film, Theatre & Broadcasting",29 STREET between 47 AVENUE and 49 AVENUE,Queens,2,108,Television,Episodic series,United States of America,11101
+559736,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 11:00:00 PM,01/25/2021 06:01:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559724,Shooting Permit,01/29/2021 10:00:00 AM,01/30/2021 01:00:00 AM,01/25/2021 04:10:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+559704,Shooting Permit,01/29/2021 04:00:00 PM,01/30/2021 01:00:00 AM,01/25/2021 02:53:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEEPSHEAD BAY ROAD between VOORHIES AVENUE and JEROME AVENUE, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and SHORE PARKWAY, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and EAST 18 STREET, EAST 17 STREET between AVENUE Z and JEROME AVENUE, EAST 17 STREET between AVENUE Z and AVENUE Y, AVENUE Z between EAST 16 STREET and EAST 17 STREET, AVENUE Z between EAST 17 STREET and EAST 18 STREET, AVENUE Y between EAST 17 STREET and EAST 18 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11235
+559695,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 11:00:00 PM,01/25/2021 02:17:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 49 STREET and EAST 45 STREET, EAST 46 STREET between 2 AVENUE and 3 AVENUE, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 48 STREET between LEXINGTON AVENUE and 3 AVENUE, EAST 49 STREET between LEXINGTON AVENUE and 3 AVENUE, PARK AVENUE between EAST 46 STREET and EAST 47 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10167, 10171, 10177"
+559687,Shooting Permit,01/27/2021 08:00:00 AM,01/27/2021 11:00:00 PM,01/25/2021 01:55:28 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559681,Shooting Permit,01/27/2021 07:00:00 AM,01/27/2021 09:00:00 PM,01/25/2021 01:26:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559679,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 09:00:00 PM,01/25/2021 01:18:36 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559676,Shooting Permit,01/29/2021 09:00:00 AM,01/30/2021 01:00:00 AM,01/25/2021 01:10:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","ALABAMA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between WILLIAMS AVENUE and ALABAMA AVENUE, GEORGIA AVENUE between PITKIN AVENUE and BELMONT AVENUE, BELMONT AVENUE between ALABAMA AVENUE and SHEFFIELD AVENUE, ALABAMA AVENUE between BELMONT AVENUE and SUTTER AVENUE, GEORGIA AVENUE between BELMONT AVENUE and SUTTER AVENUE",Brooklyn,5,75,Television,Cable-episodic,United States of America,11207
+559663,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 11:00:00 PM,01/25/2021 12:19:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559662,Shooting Permit,01/29/2021 09:00:00 AM,01/30/2021 01:00:00 AM,01/25/2021 12:19:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+559658,Shooting Permit,01/28/2021 10:00:00 AM,01/29/2021 01:00:00 AM,01/25/2021 12:02:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and HUBERT STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, WHITE STREET between CHURCH STREET and BROADWAY, WALKER STREET between CHURCH STREET and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY, 6 AVENUE between WHITE STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and WHITE STREET, CHURCH STREET between WHITE STREET and WALKER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10013, 10282"
+559656,Shooting Permit,01/28/2021 07:00:00 AM,01/28/2021 01:00:00 PM,01/25/2021 11:58:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 149 STREET between NEPONSIT AVENUE and NEWPORT AVENUE, NEPONSIT AVENUE between DEAD END and BEACH 149 STREET, NEPONSIT AVENUE between BEACH 149 STREET and BEACH 146 STREET",Queens,14,100,Television,Episodic series,United States of America,11694
+559651,Shooting Permit,01/28/2021 08:00:00 AM,01/28/2021 11:00:00 PM,01/25/2021 11:38:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+559643,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 11:00:00 PM,01/25/2021 11:07:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559641,Shooting Permit,01/28/2021 07:00:00 AM,01/28/2021 10:00:00 PM,01/25/2021 11:02:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+559636,Shooting Permit,01/29/2021 11:00:00 AM,01/30/2021 02:00:00 AM,01/25/2021 10:39:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","METROPOLITAN AVENUE between 71 ROAD and 71 DRIVE, 71 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, METROPOLITAN AVENUE between 71 DRIVE and 72 AVENUE, 72 AVENUE between NANSEN STREET and METROPOLITAN AVENUE, METROPOLITAN AVENUE between 72 AVENUE and 72 ROAD, METROPOLITAN AVENUE between 72 ROAD and 72 DRIVE, 72 DRIVE between METROPOLITAN AVENUE and UNION TURNPIKE, METROPOLITAN AVENUE between 72 DRIVE and 74 AVENUE, 72 ROAD between MANSE STREET and METROPOLITAN AVENUE, 72 ROAD between MANSE STREET and METROPOLITAN AVENUE",Queens,6,112,Television,Cable-episodic,United States of America,11375
+559624,Shooting Permit,01/27/2021 07:00:00 AM,01/27/2021 09:00:00 PM,01/25/2021 10:00:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+559622,Shooting Permit,01/27/2021 01:00:00 PM,01/28/2021 02:00:00 AM,01/25/2021 09:46:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","CATHERINE SLIP between CHERRY STREET and SOUTH STREET, SOUTH ST between CATHERINE SLIP and ROBERT F WAGNER SR PLACE, ROBERT F WAGNER SR PLACE between PEARL STREET and SOUTH STREET, FULTON STREET between GOLD STREET and PEARL STREET, GOLD STREET between FULTON STREET and SPRUCE STREET, SPRUCE STREET between GOLD STREET and NASSAU STREET, PARK ROW between ANN STREET and BEEKMAN STREET, WILLIAM STREET between ANN STREET and BEEKMAN STREET",Manhattan,"1, 3","1, 5",Television,Episodic series,United States of America,"10002, 10007, 10038"
+559614,Rigging Permit,01/27/2021 05:00:00 PM,01/28/2021 01:00:00 PM,01/25/2021 08:35:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 13 STREET between 6 AVENUE and 7 AVENUE,Manhattan,2,6,Television,Episodic series,United States of America,10011
+559613,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 10:00:00 PM,01/25/2021 08:34:02 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 13 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 12 STREET and WEST 14 STREET, WEST 12 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 13 STREET and WEST 14 STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,10011
+559611,Shooting Permit,01/27/2021 07:00:00 AM,01/27/2021 10:00:00 PM,01/25/2021 08:26:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST STREET between CHAMBERS STREET and HUBERT STREET, WHITE STREET between WEST BROADWAY and 6 AVENUE, WHITE STREET between CHURCH STREET and BROADWAY, WALKER STREET between CHURCH STREET and BROADWAY, LISPENARD STREET between CHURCH STREET and BROADWAY, 6 AVENUE between WHITE STREET and FRANKLIN STREET, CHURCH STREET between FRANKLIN STREET and WHITE STREET, CHURCH STREET between LEONARD STREET and FRANKLIN STREET, 6 AVENUE between WALKER STREET and WHITE STREET, CHURCH STREET between WHITE STREET and WALKER STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10013, 10282"
+559605,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 11:00:00 PM,01/24/2021 11:35:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559604,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 11:00:00 PM,01/24/2021 11:30:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559603,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 11:00:00 PM,01/24/2021 11:24:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559545,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 08:00:00 PM,01/22/2021 05:11:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",82 STREET between RIDGE BOULEVARD and COLONIAL ROAD,Brooklyn,10,68,Commercial,Commercial,United States of America,11209
+559534,Shooting Permit,01/28/2021 07:00:00 AM,01/28/2021 10:00:00 PM,01/22/2021 04:16:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE OF AMERICAS between WEST 27 STREET and WEST 26 STREET, AVENUE OF AMERICAS between WEST 26 STREET and WEST 25 STREET, WEST 25 STREET between AVENUE OF AMERICAS and 5 AVENUE, WEST 26 STREET between BROADWAY and 5 AVENUE, 5 AVENUE between WEST 26 STREET and WEST 25 STREET",Manhattan,"4, 5",13,Television,Cable-episodic,United States of America,"10001, 10010, 10016"
+559517,Shooting Permit,01/28/2021 07:00:00 AM,01/28/2021 10:00:00 PM,01/22/2021 03:04:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559513,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 10:00:00 PM,01/22/2021 02:40:19 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559511,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 11:00:00 PM,01/22/2021 02:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","7 AVENUE between WEST 49 STREET and WEST 52 STREET, WEST 52 STREET between 6 AVENUE and 7 AVENUE, WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 56 STREET between 8 AVENUE and 10 AVENUE, WEST 52 STREET between BROADWAY and 7 AVENUE, WEST 52 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 56 STREET and CENTRAL PARK SOUTH, WEST 58 STREET between BROADWAY and 7 AVENUE, 7 AVENUE between WEST 52 STREET and WEST 53 STREET",Manhattan,"4, 5",18,Television,Episodic series,United States of America,"10019, 10106"
+559508,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 09:00:00 PM,01/22/2021 01:40:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+559507,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 09:00:00 PM,01/22/2021 01:35:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+559504,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 10:00:00 PM,01/22/2021 01:18:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559500,Shooting Permit,02/04/2021 07:00:00 AM,02/04/2021 09:00:00 PM,01/22/2021 01:10:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559493,Shooting Permit,01/29/2021 07:00:00 AM,01/29/2021 09:00:00 PM,01/22/2021 12:54:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559492,Shooting Permit,01/28/2021 07:00:00 AM,01/28/2021 09:00:00 PM,01/22/2021 12:51:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559489,Shooting Permit,01/27/2021 07:00:00 AM,01/27/2021 09:00:00 PM,01/22/2021 12:47:08 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559485,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 09:00:00 PM,01/22/2021 12:44:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559482,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 06:00:00 PM,01/22/2021 12:32:41 PM,"Mayor's Office of Film, Theatre & Broadcasting",STORY AVENUE between TAYLOR AVENUE and THIERIOT AVENUE,Bronx,9,43,Still Photography,Not Applicable,United States of America,10473
+559457,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 11:59:00 PM,01/22/2021 08:38:54 AM,"Mayor's Office of Film, Theatre & Broadcasting","44 DRIVE between 23 STREET and HUNTER STREET, 44 DRIVE between HUNTER STREET and JACKSON AVENUE, HUNTER STREET between 44 DRIVE and 43 AVENUE, SKILLMAN AVENUE between AUSTELL PLACE and THOMSON AVENUE, 44 ROAD between 23 STREET and CRESCENT STREET",Brooklyn,2,"108, 84",Television,Episodic series,United States of America,"11101, 11201"
+559456,Shooting Permit,01/26/2021 04:00:00 PM,01/27/2021 04:00:00 AM,01/22/2021 08:30:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between PIKE STREET and MARKET STREET, WASHINGTON STREET between SPRING STREET and WEST HOUSTON STREET",Manhattan,"2, 3, 5","1, 13, 5, 7",Commercial,Commercial,United States of America,"10002, 10010, 10013, 10014"
+559439,Shooting Permit,01/28/2021 09:00:00 AM,01/28/2021 11:00:00 PM,01/21/2021 04:53:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+559438,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 10:00:00 PM,01/21/2021 04:51:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559437,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 10:00:00 PM,01/21/2021 04:50:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559436,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 10:00:00 PM,01/21/2021 04:50:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559435,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 10:00:00 PM,01/21/2021 04:50:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559434,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 10:00:00 PM,01/21/2021 04:50:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559430,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 09:00:00 PM,01/21/2021 04:30:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559424,Shooting Permit,01/27/2021 09:00:00 AM,01/27/2021 11:00:00 PM,01/21/2021 03:55:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+559423,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 10:00:00 PM,01/21/2021 03:47:01 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559419,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 10:00:00 PM,01/21/2021 02:55:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559418,Shooting Permit,01/22/2021 07:00:00 AM,01/22/2021 10:00:00 PM,01/21/2021 02:54:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET, GRAND AVENUE between 65 STREET and 66 STREET, GRAND AVE between 66 STREET and BORDEN AVENUE, 66 STREET between GRAND AVENUE and 58 AVENUE",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11378, 11385"
+559409,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 11:00:00 PM,01/21/2021 01:44:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559407,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 10:00:00 PM,01/21/2021 01:32:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between LOCUST AVENUE and WALNUT AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+559404,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 11:00:00 PM,01/21/2021 01:09:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between GREENPOINT AVENUE and CALYER STREET, GREENPOINT AVENUE between NEWEL STREET and JEWEL STREET, PROVOST STREET between GREENPOINT AVENUE and KENT STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, CALYER STREET between JEWEL STREET and DIAMOND STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559403,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 09:00:00 PM,01/21/2021 01:03:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 19 STREET",Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+559402,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 09:00:00 PM,01/21/2021 01:03:27 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 18 STREET between BROADWAY and 5 AVENUE, BROADWAY between EAST 18 STREET and EAST 19 STREET",Manhattan,5,13,WEB,Not Applicable,United States of America,10003
+559401,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 09:00:00 PM,01/21/2021 12:39:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559400,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 09:00:00 PM,01/21/2021 12:35:03 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559385,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 11:00:00 PM,01/21/2021 11:26:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559379,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 09:00:00 PM,01/21/2021 11:21:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between SENATOR STREET and 68 STREET,Brooklyn,10,68,Commercial,Commercial,United States of America,11220
+559380,Shooting Permit,01/27/2021 05:00:00 AM,01/27/2021 09:00:00 PM,01/21/2021 11:21:12 AM,"Mayor's Office of Film, Theatre & Broadcasting",6 AVENUE between SENATOR STREET and 68 STREET,Brooklyn,10,68,Commercial,Commercial,United States of America,11220
+559374,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 10:00:00 PM,01/21/2021 10:28:14 AM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH. ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559366,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 09:00:00 PM,01/21/2021 09:49:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between Greenpoint Ave and N Henry St, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559363,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 10:00:00 PM,01/21/2021 09:23:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","21 STREET between 33 ROAD and 34 AVENUE, 34 AVENUE between 12 STREET and 21 STREET, 34 AVENUE between 21 STREET and 24 STREET, 34 AVENUE between 24 STREET and CRESCENT STREET, 34 AVENUE between CRESCENT STREET and 28 STREET",Queens,1,114,Television,Cable-episodic,United States of America,11106
+559340,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 11:30:00 PM,01/20/2021 04:25:01 PM,"Mayor's Office of Film, Theatre & Broadcasting","10 STREET between 40 AVENUE and 41 AVENUE, 41 AVENUE between VERNON BOULEVARD and 10 STREET, VERNON BOULEVARD between 40 AVENUE and QUEENS PLAZA SOUTH, 41 AVENUE between 10 STREET and 12 STREET",Queens,1,114,Television,Episodic series,United States of America,11101
+559339,Shooting Permit,01/23/2021 11:00:00 AM,01/24/2021 03:00:00 AM,01/20/2021 04:21:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559338,Shooting Permit,01/22/2021 08:00:00 AM,01/22/2021 11:00:00 PM,01/20/2021 04:21:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between RANDOLPH STREET and DEAD END, RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, RANDOLPH STREET between SCOTT AVENUE and GARDNER AVENUE, FLUSHING AVENUE between SCOTT AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and SCOTT AVENUE, SCOTT AVENUE between FLUSHING AVENUE and TROUTMAN STREET, JEFFERSON STREET between CYPRESS AVENUE and SCOTT AVENUE, CYPRESS AVENUE between TROUTMAN STREET and FLUSHING AVENUE, TROUTMAN STREET between CYPRESS AVENUE and SCOTT AVENUE, SCOTT AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, 35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Brooklyn,"1, 4, 5","104, 114, 83, 90, 94",Television,Episodic series,United States of America,"11106, 11222, 11237, 11385"
+559336,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 10:00:00 PM,01/20/2021 04:15:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, BEDFORD AVENUE between LORIMER STREET and NORTH 12 STREET, NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, NORTH 12 STREET between WYTHE AVENUE and KENT AVENUE, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+559314,Shooting Permit,01/26/2021 10:30:00 AM,01/26/2021 08:30:00 PM,01/20/2021 02:07:51 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between BROADWAY and CHURCH STREET, DUANE STREET between BROADWAY and CHURCH STREET, CHURCH STREET between WARREN STREET and READE STREET, WARREN STREET between CHURCH STREET and WEST BROADWAY",Manhattan,1,1,Television,Episodic series,United States of America,10007
+559313,DCAS Prep/Shoot/Wrap Permit,01/26/2021 07:30:00 AM,01/26/2021 11:30:00 AM,01/20/2021 02:07:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","READE STREET between CENTRE STREET and ELK STREET, READE STREET between ELK STREET and BROADWAY, BROADWAY between CHAMBERS STREET and DUANE STREET, CHAMBERS STREET between CENTRE STREET and BROADWAY, LAFAYETTE STREET between DUANE STREET and READE STREET",Manhattan,1,"1, 5",Television,Episodic series,United States of America,10007
+559312,Shooting Permit,01/27/2021 07:00:00 AM,01/27/2021 10:00:00 PM,01/20/2021 01:39:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE, 135 AVENUE between 143 STREET and INWOOD STREET",Queens,12,113,Television,Episodic series,United States of America,11436
+559309,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 10:00:00 PM,01/20/2021 01:25:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","PROVOST STREET between PAIDGE AVENUE and GREEN STREET, DUPONT STREET between PROVOST STREET and MCGUINNESS BLVD, EAGLE STREET between PROVOST STREET and MCGUINNESS BLVD",Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+559308,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 10:00:00 PM,01/20/2021 01:24:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE, 135 AVENUE between 143 STREET and INWOOD STREET",Queens,12,113,Television,Episodic series,United States of America,11436
+559305,Shooting Permit,01/22/2021 05:00:00 AM,01/22/2021 11:59:00 PM,01/20/2021 12:45:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","36 AVENUE between 37 STREET and 38 STREET, 38 STREET between 35 AVENUE and 36 AVENUE, 37 STREET between 36 AVENUE and 35 AVENUE",Queens,1,114,WEB,Not Applicable,United States of America,11101
+559299,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 11:00:00 PM,01/20/2021 12:11:05 PM,"Mayor's Office of Film, Theatre & Broadcasting",GRAND AVENUE between REMSEN PLACE and 65 STREET,Queens,5,104,Television,Episodic series,United States of America,"11378, 11385"
+559297,Shooting Permit,01/22/2021 02:00:00 PM,01/23/2021 04:00:00 AM,01/20/2021 11:42:12 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 10 AVENUE and 9 AVENUE, 10 AVENUE between WEST 37 STREET and WEST 38 STREET, WEST 37 STREET between 10 AVENUE and 11 AVENUE, 10 AVENUE between WEST 37 STREET and WEST 36 STREET, WEST 36 STREET between 11 AVENUE and 10 AVENUE, WEST 36 STREET between 10 AVENUE and 9 AVENUE, WEST 37 STREET between 9 AVENUE and 8 AVENUE, WEST 37 STREET between 8 AVENUE and 7 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,10018
+559290,Shooting Permit,01/22/2021 09:00:00 AM,01/22/2021 11:59:00 PM,01/20/2021 10:39:44 AM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 51 STREET between 9 AVENUE and 10 AVENUE,Manhattan,4,18,Television,Episodic series,United States of America,10019
+559289,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 10:00:00 PM,01/20/2021 10:37:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","THOMPSON STREET between BAY STREET and WRIGHT STREET, THOMPSON STREET between BAY STREET and FRONT STREET, BAY STREET between THOMPSON STREET and CANAL STREET, CANAL STREET between BAY STREET and WRIGHT STREET, WRIGHT STREET between THOMPSON STREET and CANAL STREET, HARBOR ROAD between RICHMOND TERRACE and DEAD END, RICHMOND TERRACE between HARBOR ROAD and POST LANE, BAY STREET between DOCK STREET and VANDERBILT AVENUE",Staten Island,1,"120, 121",Television,Cable-episodic,United States of America,"10303, 10304"
+559287,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 10:00:00 PM,01/20/2021 10:24:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+559283,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 11:00:00 PM,01/20/2021 08:34:34 AM,"Mayor's Office of Film, Theatre & Broadcasting","MCDONALD AVENUE between 20 STREET and FT HAMILTON PARKWAY, WASHINGTON AVENUE between EASTERN PARKWAY and MONTGOMERY STREET",Brooklyn,"55, 7, 9","71, 72, 78",Television,Episodic series,United States of America,"11218, 11225, 11232, 11238"
+559281,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 09:00:00 PM,01/20/2021 07:43:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+559280,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 09:00:00 PM,01/20/2021 07:40:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+559279,Shooting Permit,01/22/2021 07:00:00 AM,01/22/2021 08:00:00 PM,01/20/2021 07:17:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET, WEST 55 STREET between 6 AVENUE and 7 AVENUE, WEST 55 STREET between 5 AVENUE and 6 AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 52 STREET and WEST 53 STREET",Manhattan,"2, 5","108, 18",Television,Cable-episodic,United States of America,"10019, 11101"
+559272,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 10:00:00 PM,01/19/2021 08:21:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+559259,Shooting Permit,01/23/2021 09:00:00 AM,01/23/2021 11:00:00 PM,01/19/2021 04:36:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LEFFERTS AVENUE and LINCOLN ROAD, LINCOLN ROAD between FLATBUSH AVENUE and BEDFORD AVENUE, FLATBUSH AVENUE between OCEAN AVENUE and HAWTHORNE STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORTH HENRY STREET, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, OCEAN AVENUE between LINCOLN ROAD and PARKSIDE AVENUE",Brooklyn,"1, 55, 9","71, 78, 94",Television,Episodic series,United States of America,"11222, 11225"
+559258,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 10:00:00 PM,01/19/2021 04:33:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","MAYFLOWER AVENUE between WELLMAN AVENUE and ZULETTE AVENUE, ZULETTE AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, ZULETTE AVENUE between MAYFLOWER AVENUE and EDISON AVENUE, MAYFLOWER AVENUE between WELLMAN AVENUE and MAITLAND AVENUE, ERICSON PLACE between MAITLAND AVENUE and ROEBLING AVENUE, Hutchinson River Parkway East between Roebling Ave and E Tremont Ave, WELLMAN AVENUE between MAYFLOWER AVENUE and ERICSON PLACE, WELLMAN AVENUE between MAYFLOWER AVENUE and EDISON AVENUE",Bronx,10,45,Television,Cable-episodic,United States of America,10461
+559256,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 10:00:00 PM,01/19/2021 03:44:55 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559252,Shooting Permit,01/26/2021 07:00:00 AM,01/26/2021 09:00:00 PM,01/19/2021 03:00:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559251,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 08:30:00 PM,01/19/2021 02:44:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559249,Shooting Permit,01/27/2021 09:00:00 AM,01/28/2021 01:00:00 AM,01/19/2021 02:36:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 7 AVENUE and 5 AVENUE, WEST 44 STREET between 5 AVENUE and 6 AVENUE, WEST 43 STREET between BROADWAY and 6 AVENUE, WEST 45 STREET between 8 AVENUE and 10 AVENUE, 9 AVENUE between WEST 44 STREET and WEST 45 STREET",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+559248,Shooting Permit,01/22/2021 10:00:00 AM,01/23/2021 02:00:00 AM,01/19/2021 02:33:31 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 st between QUEENS PLAZA SOUTH and 43rd ave, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559245,Shooting Permit,01/29/2021 06:00:00 AM,01/29/2021 09:00:00 PM,01/19/2021 02:16:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+559232,Shooting Permit,01/22/2021 07:00:00 AM,01/22/2021 11:00:00 PM,01/19/2021 01:33:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","DORAN AVENUE between 84 STREET and 83 STREET, 83 STREET between DORAN AVENUE and COOPER AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+559229,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 07:00:00 PM,01/19/2021 01:24:57 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 55 STREET between 6 AVENUE and 7 AVENUE,Manhattan,5,18,Television,Cable-episodic,United States of America,10019
+559228,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 10:00:00 PM,01/19/2021 01:24:34 PM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between EAST 11 STREET and EAST 12 STREET, EAST 12 STREET between 2 AVENUE and 3 AVENUE, 2 AVENUE between EAST 12 STREET and EAST 13 STREET",Manhattan,"3, 4","10, 9",Television,Episodic series,United States of America,"10003, 10011"
+559223,Shooting Permit,01/22/2021 10:00:00 AM,01/23/2021 01:00:00 AM,01/19/2021 01:13:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","SHEEPSHEAD BAY ROAD between VOORHIES AVENUE and JEROME AVENUE, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and SHORE PARKWAY, VOORHIES AVENUE between SHEEPSHEAD BAY ROAD and EAST 18 STREET, EAST 17 STREET between AVENUE Z and JEROME AVENUE, EAST 17 STREET between AVENUE Z and AVENUE Y, AVENUE Z between EAST 16 STREET and EAST 17 STREET, AVENUE Z between EAST 17 STREET and EAST 18 STREET, AVENUE Y between EAST 17 STREET and EAST 18 STREET, EMMONS AVENUE between OCEAN AVENUE and EAST 21 STREET",Brooklyn,15,61,Television,Episodic series,United States of America,11235
+559222,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 11:00:00 PM,01/19/2021 12:38:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEACH 87 STREET between ROCKAWAY FWY and ROCKAWAY BEACH BOULEVARD, BEACH 132 STREET between ROCKAWAY BEACH BOULEVARD and NEWPORT AVENUE, NEWPORT AVENUE between BEACH 130 STREET and BEACH 134 STREET",Queens,14,100,Commercial,Commercial,United States of America,"11692, 11693, 11694"
+559215,Shooting Permit,01/28/2021 06:00:00 AM,01/28/2021 09:00:00 PM,01/19/2021 12:11:35 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DITMAS AVENUE and DORCHESTER ROAD,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+559211,Shooting Permit,01/21/2021 10:00:00 AM,01/22/2021 02:00:00 AM,01/19/2021 11:49:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+559210,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 09:00:00 PM,01/19/2021 11:43:20 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAST 19 STREET between DORCHESTER ROAD and DITMAS AVENUE,Brooklyn,14,70,WEB,Not Applicable,United States of America,11226
+559200,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 10:00:00 PM,01/19/2021 10:57:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, WEST 44 STREET between AVENUE OF AMERICAS and 5 AVENUE",Manhattan,5,14,Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+559194,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 11:00:00 PM,01/19/2021 10:46:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","150 STREET between ROCKAWAY BOULEVARD and NORTH CONDUIT AVENUE, 135 AVENUE between 143 STREET and INWOOD STREET",Queens,12,113,Television,Episodic series,United States of America,11436
+559193,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 09:00:00 PM,01/19/2021 10:30:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 116TH STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, WEST 116TH STREET between MALCOLM X BOULEVARD and ADAM CLAYTON POWELL JR BOULEVARD, MALCOLM X BOULEVARD between WEST 115 STREET and WEST 116 STREET, WEST 116 STREET between MALCOLM X BOULEVARD and 5 AVENUE",Manhattan,10,28,Television,Cable-episodic,United States of America,10026
+559192,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 09:00:00 PM,01/19/2021 10:26:52 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between NEWEL STREET and MCGUINNESS BOULEVARD, CALYER STREET between NEWEL STREET and DIAMOND STREET, MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+559184,Shooting Permit,01/25/2021 07:00:00 AM,01/26/2021 12:00:00 AM,01/19/2021 09:31:32 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+559183,Shooting Permit,01/28/2021 11:00:00 AM,01/29/2021 03:00:00 AM,01/19/2021 09:30:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22ND ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, WEST 51 STREET between BROADWAY and 6 AVENUE, WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between BROADWAY and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 52 STREET",Queens,"2, 5","108, 18",Television,Episodic series,United States of America,"10019, 10020, 11101"
+559182,Shooting Permit,01/22/2021 06:00:00 PM,01/23/2021 03:00:00 AM,01/19/2021 09:27:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","5 AVENUE between EAST 88 STREET and EAST 89 STREET, EAST 89 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,"64, 8","19, 22",Television,Episodic series,United States of America,10128
+559154,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 09:00:00 PM,01/18/2021 02:04:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","BUFFALO AVENUE between EASTERN PARKWAY and EAST NEW YORK AVENUE, ROCKAWAY PARKWAY between EAST NEW YORK AVENUE and RUTLAND ROAD, EAST NEW YORK AVENUE between BUFFALO AVENUE and RALPH AVENUE, PORTAL STREET between EAST NEW YORK AVENUE and UNION STREET, UNION STREET between PORTAL STREET and RALPH AVENUE, PORTAL STREET between EASTERN PARKWAY and UNION STREET",Brooklyn,"16, 17, 8","67, 73, 77",Television,Cable-episodic,United States of America,"11212, 11213, 11233"
+559138,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 08:00:00 PM,01/18/2021 08:50:11 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+559120,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 09:00:00 PM,01/17/2021 04:58:55 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 45 STREET and 47 STREET,Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+559119,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 09:00:00 PM,01/17/2021 04:58:54 PM,"Mayor's Office of Film, Theatre & Broadcasting",2 AVENUE between 45 STREET and 47 STREET,Brooklyn,7,72,Commercial,Commercial,United States of America,11232
+558774,Shooting Permit,01/21/2021 08:00:00 AM,01/21/2021 11:00:00 PM,01/15/2021 03:40:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 49 STREET and EAST 55 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between MADISON AVENUE and LEXINGTON AVENUE",Manhattan,5,18,Television,Episodic series,United States of America,"10017, 10022, 10152, 10171"
+558772,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 11:00:00 PM,01/15/2021 03:33:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",QUEENS PLAZA SOUTH between 21 STREET and 22 STREET,Queens,2,108,Television,Episodic series,United States of America,11101
+558771,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 11:00:00 PM,01/15/2021 03:30:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+558763,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 11:00:00 PM,01/15/2021 03:25:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+558745,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 09:00:00 PM,01/15/2021 03:11:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","DECATUR STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVE between SCHAEFER ST and DECATUR ST, COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+558719,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 09:00:00 PM,01/15/2021 02:30:38 PM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+558717,Shooting Permit,01/20/2021 09:00:00 AM,01/20/2021 11:59:00 PM,01/15/2021 02:27:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 14 STREET between 9 AVENUE and 10 AVENUE, WEST 14 STREET between 8 AVENUE and HUDSON STREET, WEST 16 STREET between 10 AVENUE and 9 AVENUE, 9 AVENUE between WEST 16 STREET and WEST 18 STREET, WEST 16 STREET between 8 AVENUE and 9 AVENUE, WEST 16 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10011, 10014"
+558709,Shooting Permit,01/27/2021 06:00:00 AM,01/27/2021 09:00:00 PM,01/15/2021 02:19:28 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+558697,Theater Load in and Load Outs,01/18/2021 05:00:00 AM,01/19/2021 11:59:00 PM,01/15/2021 02:08:33 PM,"Mayor's Office of Film, Theatre & Broadcasting",ATLANTIC AVENUE between FORT GREENE PLACE and 6 AVENUE,Brooklyn,2,78,Theater,Theater,United States of America,11217
+558685,Shooting Permit,01/24/2021 06:00:00 AM,01/24/2021 08:00:00 PM,01/15/2021 01:50:40 PM,"Mayor's Office of Film, Theatre & Broadcasting","WESTMINSTER ROAD between CHURCH AVENUE and ALBERMARLE ROAD, CHURCH AVENUE between STRATFORD ROAD and WESTMINSTER ROAD",Brooklyn,14,70,WEB,Not Applicable,United States of America,11218
+558684,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 09:00:00 PM,01/15/2021 01:49:45 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, NEWEL STREET between CALYER STREET and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558676,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 08:30:00 PM,01/15/2021 01:33:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","4 AVENUE between 57 STREET and 58 STREET, 5 AVENUE between 58 STREET and 60 STREET, 57 STREET between 4 AVENUE and 5 AVENUE, 58 STREET between 4 AVENUE and 5 AVENUE, 59 STREET between 4 AVENUE and 5 AVENUE, 60 STREET between 3 AVENUE and 4 AVENUE",Brooklyn,7,72,Television,Episodic series,United States of America,11220
+558646,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 09:00:00 PM,01/15/2021 12:52:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+558641,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 10:00:00 PM,01/15/2021 12:40:04 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558610,Shooting Permit,01/22/2021 08:00:00 AM,01/23/2021 12:00:00 AM,01/15/2021 11:35:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 44 STREET and EAST 43 STREET, WEST 44 STREET between AVENUE OF AMERICAS and 5 AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE, EAST 45 STREET between 5 AVENUE and MADISON AVENUE",Manhattan,5,"14, 18",Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+558590,Shooting Permit,01/19/2021 09:00:00 AM,01/19/2021 11:00:00 PM,01/15/2021 11:10:58 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 37 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,"10001, 10018"
+558581,Shooting Permit,01/25/2021 06:00:00 AM,01/25/2021 09:00:00 PM,01/15/2021 10:57:41 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+558551,Shooting Permit,01/22/2021 08:00:00 AM,01/22/2021 10:00:00 PM,01/15/2021 10:21:26 AM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LEFFERTS AVENUE and LINCOLN ROAD, LINCOLN ROAD between FLATBUSH AVENUE and BEDFORD AVENUE, FLATBUSH AVENUE between OCEAN AVENUE and HAWTHORNE STREET",Brooklyn,9,71,Television,Episodic series,United States of America,11225
+558547,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 09:00:00 PM,01/15/2021 10:20:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+558530,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 09:00:00 PM,01/15/2021 09:54:37 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+558523,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 10:00:00 PM,01/15/2021 08:55:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 12 STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between BETHUNE STREET and BANK STREET, WASHINGTON STREET between LITTLE WEST 12 STREET and WEST 14 STREET, BETHUNE STREET between WEST STREET and WASHINGTON STREET, WASHINGTON STREET between WEST 12 STREET and BETHUNE STREET",Manhattan,"2, 4","10, 6",Television,Episodic series,United States of America,"10011, 10014"
+558520,Shooting Permit,01/21/2021 11:00:00 AM,01/22/2021 02:00:00 AM,01/15/2021 08:04:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","STARR AVENUE between BORDEN AVENUE and VAN DAM STREET, REVIEW AVENUE between 30 STREET and 35 STREET",Queens,2,108,Television,Cable-episodic,United States of America,11101
+558434,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 10:00:00 PM,01/14/2021 08:22:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 22 STREET between 2 AVENUE and 3 AVENUE, 3 AVENUE between EAST 21 STREET and EAST 23 STREET, EAST 23 STREET between 2 AVENUE and 3 AVENUE, EAST 21 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 22 STREET between 3 AVENUE and LEXINGTON AVENUE, EAST 17 STREET between RUTHERFORD PLACE and 3 AVENUE",Manhattan,6,13,Television,Cable-episodic,United States of America,"10003, 10010"
+558390,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 11:00:00 PM,01/14/2021 05:23:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",83 STREET between DORAN AVENUE and COOPER AVENUE,Queens,5,104,Television,Episodic series,United States of America,11385
+558382,Shooting Permit,01/21/2021 08:00:00 AM,01/21/2021 11:00:00 PM,01/14/2021 05:14:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between BEACH AVENUE and THIERIOT AVENUE, BEACH AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, PATTERSON AVENUE between BEACH AVENUE and ST LAWRENCE AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, LACOMBE AVENUE between BEACH AVENUE and SOUNDVIEW AVENUE, TAYLOR AVENUE between PATTERSON AVENUE and LACOMBE AVENUE, SOUNDVIEW AVE between RANDALL AVENUE and LACOMBE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+558351,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 06:00:00 PM,01/14/2021 03:48:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between 6 AVENUE and 7 AVENUE, 6 AVENUE between WEST 44 STREET and WEST 43 STREET, 6 AVENUE between WEST 43 STREET and WEST 42 STREET, WEST 43 STREET between 6 AVENUE and 5 AVENUE, WEST 37 STREET between 7 AVENUE and 8 AVENUE, WEST 37 STREET between 8 AVENUE and 9 AVENUE, 11 AVENUE between WEST 30 STREET and WEST 33 STREET, WEST 30 STREET between 10 AVENUE and 11 AVENUE",Manhattan,"4, 5","10, 14",Television,Cable-episodic,United States of America,"10001, 10018, 10036"
+558350,Shooting Permit,01/19/2021 07:30:00 AM,01/19/2021 08:30:00 PM,01/14/2021 03:47:33 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPOFFORD AVENUE between TIFFANY STREET and MANIDA STREET, BARRETTO STREET between SPOFFORD AVENUE and RANDALL AVENUE",Bronx,2,41,Television,Episodic series,United States of America,10474
+558339,Shooting Permit,01/19/2021 07:30:00 AM,01/19/2021 05:00:00 PM,01/14/2021 03:28:44 PM,"Mayor's Office of Film, Theatre & Broadcasting",OAK POINT AVENUE between BARRY STREET and TRUXTON STREET,Bronx,2,41,Television,Episodic series,United States of America,10474
+558328,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 09:00:00 PM,01/14/2021 03:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","BEDFORD AVENUE between LINCOLN ROAD and LEFFERTS AVENUE, LINCOLN ROAD between FLATBUSH AVENUE and BEDFORD AVENUE, FLATBUSH AVENUE between OCEAN AVENUE and HAWTHORNE STREET",Brooklyn,9,71,Television,Episodic series,United States of America,11225
+558324,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 11:00:00 PM,01/14/2021 03:05:22 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,"11101, 11105"
+558306,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 10:00:00 PM,01/14/2021 02:33:03 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between VERNON BOULEVARD and 12 STREET, 43 AVENUE between 13 STREET and 21 STREET, 43 AVENUE between 21 STREET and 22 STREET, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 13 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, 9 STREET between 43 AVENUE and 43 ROAD",Queens,"1, 2","108, 40",Television,Episodic series,United States of America,"10454, 11101"
+558295,Shooting Permit,01/23/2021 06:00:00 AM,01/23/2021 10:00:00 PM,01/14/2021 02:13:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+558292,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 10:00:00 PM,01/14/2021 02:09:11 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVENUE between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+558287,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 09:00:00 PM,01/14/2021 01:35:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558285,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 10:00:00 PM,01/14/2021 01:31:09 PM,"Mayor's Office of Film, Theatre & Broadcasting","JEWEL STREET between CALYER STREET and MESEROLE AVENUE, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558225,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 11:00:00 PM,01/14/2021 11:06:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 43 STREET between AVENUE OF THE AMERICAS and 5 AVENUE, EAST 44 STREET between 5 AVENUE and MADISON AVENUE, MADISON AVENUE between EAST 43 STREET and EAST 44 STREET, WEST 44 STREET between AVENUE OF AMERICAS and 5 AVENUE",Manhattan,5,14,Television,Cable-episodic,United States of America,"10017, 10036, 10173"
+558224,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 09:00:00 PM,01/14/2021 11:05:35 AM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between EAST 50 STREET and EAST 55 STREET, PARK AVENUE between EAST 49 STREET and EAST 50 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between MADISON AVENUE and LEXINGTON AVENUE, CHURCH STREET between WORTH STREET and FRANKLIN STREET, 6 AVENUE between FRANKLIN STREET and WHITE STREET, 6 AVENUE between WHITE STREET and LISPENARD STREET, WALKER STREET between 6 AVENUE and CHURCH STREET, WALKER STREET between BAXTER STREET and CORTLANDT ALLEY, LAFAYETTE STREET between WHITE STREET and WALKER STREET, LAFAYETTE STREET between WALKER STREET and CANAL STREET, CENTRE STREET between WHITE STREET and WALKER STREET, BAXTER STREET between BAYARD STREET and WHITE STREET, BAXTER STREET between WHITE STREET and WALKER STREET",Manhattan,"1, 3, 5","1, 18, 5",Television,Episodic series,United States of America,"10013, 10017, 10022, 10152, 10171"
+558217,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 10:00:00 PM,01/14/2021 10:39:50 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+558216,Shooting Permit,01/21/2021 06:00:00 AM,01/21/2021 10:00:00 PM,01/14/2021 10:39:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+558215,Shooting Permit,01/20/2021 06:00:00 AM,01/20/2021 10:00:00 PM,01/14/2021 10:39:19 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+558214,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 10:00:00 PM,01/14/2021 10:39:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND and 83RD, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+558209,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 08:00:00 PM,01/14/2021 10:11:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+558207,Shooting Permit,01/15/2021 11:00:00 AM,01/16/2021 01:00:00 AM,01/14/2021 10:06:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, Kingsland Ave between Greenpoint Ave and N Henry Street, Kingsland Ave between Greenpoint Ave and N Henry Street",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558205,Shooting Permit,01/19/2021 08:00:00 AM,01/20/2021 12:00:00 AM,01/14/2021 09:46:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 10 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 48 STREET, WEST 46 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+558203,Shooting Permit,01/16/2021 02:00:00 PM,01/17/2021 04:00:00 AM,01/14/2021 09:32:40 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+558197,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 10:00:00 PM,01/14/2021 08:44:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","MANHATTAN AVENUE between WEST 100 STREET and WEST 104 STREET, WEST 101 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST, CENTRAL PARK WEST between WEST 97 STREET and WEST 105 STREET, WEST 103 STREET between MANHATTAN AVENUE and CENTRAL PARK WEST",Manhattan,"4, 64, 7","10, 22, 24",Television,Episodic series,United States of America,"10011, 10025"
+558178,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 09:00:00 PM,01/13/2021 11:22:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+558177,Shooting Permit,01/26/2021 06:00:00 AM,01/26/2021 09:00:00 PM,01/13/2021 11:21:39 PM,"Mayor's Office of Film, Theatre & Broadcasting",WEST 28 STREET between 7 AVENUE and 6 AVENUE,Manhattan,5,13,Still Photography,Not Applicable,United States of America,10001
+558144,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 10:00:00 PM,01/13/2021 07:42:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","PARK AVENUE between CLINTON AVENUE and CARLTON AVENUE, CLERMONT AVENUE between FLUSHING AVENUE and PARK AVENUE, FLUSHING AVENUE between CLERMONT AVENUE and VANDERBILT AVENUE, CLINTON AVENUE between MYRTLE AVENUE and PARK AVENUE, ALBEE SQUARE WEST between WILLOUGHBY STREET and FULTON STREET, PARK AVENUE between WASHINGTON AVENUE and RYERSON STREET, VANDERBILT AVENUE between FLUSHING AVENUE and PARK AVENUE, WAVERLY AVENUE between MYRTLE AVENUE and FLUSHING AVENUE, RYERSON STREET between FLUSHING AVENUE and PARK AVENUE, WILLIAMSBURG PLACE between STEUBEN STREET and FLUSHING AVENUE, PARK AVENUE between GRAND AVENUE and STEUBEN STREET",Brooklyn,2,"84, 88",Television,Episodic series,United States of America,"11201, 11205"
+558143,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 10:00:00 PM,01/13/2021 07:12:15 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558120,Shooting Permit,01/18/2021 06:30:00 AM,01/18/2021 10:00:00 PM,01/13/2021 04:58:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+558105,Shooting Permit,01/18/2021 07:00:00 AM,01/18/2021 06:00:00 PM,01/13/2021 03:57:12 PM,"Mayor's Office of Film, Theatre & Broadcasting",OAK POINT AVENUE between BARRY STREET and TRUXTON STREET,Bronx,2,41,Television,Episodic series,United States of America,10474
+558093,Shooting Permit,01/22/2021 06:00:00 AM,01/22/2021 11:00:00 PM,01/13/2021 03:28:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","FOSTER AVE. between 101ST ST. and 105TH ST., EAST 95 STREET between AVENUE K and AVENUE L, AVENUE L between EAST 94 STREET and ROCKAWAY PARKWAY",Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+558081,Shooting Permit,01/15/2021 06:00:00 PM,01/15/2021 10:00:00 PM,01/13/2021 02:55:38 PM,"Mayor's Office of Film, Theatre & Broadcasting",BALTIC STREET between 3 AVENUE and 4 AVENUE,Brooklyn,6,78,Music Video,Signed Artist,United States of America,11217
+558057,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 03:00:00 PM,01/13/2021 01:48:39 PM,"Mayor's Office of Film, Theatre & Broadcasting","KENMARE STREET between BOWERY and ELIZABETH STREET, BOWERY between BROOME STREET and KENMARE STREET, BOWERY between BROOME STREET and GRAND STREET",Manhattan,"2, 3",5,Commercial,Commercial,United States of America,"10002, 10012, 10013"
+558053,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 08:00:00 PM,01/13/2021 01:46:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",CLIFTON PLACE between BEDFORD AVENUE and NOSTRAND AVENUE,Brooklyn,3,79,Commercial,Commercial,United States of America,11216
+558054,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 08:00:00 PM,01/13/2021 01:46:59 PM,"Mayor's Office of Film, Theatre & Broadcasting",PALMETTO STREET between EVERGREEN AVENUE and CENTRAL AVENUE,Brooklyn,4,83,Commercial,Commercial,United States of America,11221
+558037,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 06:00:00 PM,01/13/2021 01:16:06 PM,"Mayor's Office of Film, Theatre & Broadcasting","ARGYLE ROAD between AVENUE H and GLENWOOD ROAD, AVENUE H between ARGYLE ROAD and EAST 14 STREET, CLINTON STREET between CARROLL STREET and PRESIDENT STREET",Brooklyn,"14, 6","70, 76",Commercial,PSA,United States of America,"11230, 11231"
+558028,Shooting Permit,01/20/2021 09:00:00 AM,01/21/2021 12:00:00 AM,01/13/2021 12:59:19 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between BOWERY and ELIZABETH STREET, GRAND STREET between ELIZABETH STREET and MOTT STREET, BOWERY between GRAND STREET and HESTER STREET, ELIZABETH STREET between BROOME STREET and GRAND STREET, BROOME STREET between BOWERY and ELIZABETH STREET, ELIZABETH STREET between KENMARE STREET and BROOME STREET, BOWERY between DELANCEY STREET and BROOME STREET, DELANCEY STREET between BOWERY and CHRYSTIE STREET",Manhattan,"2, 3",5,Television,Cable-episodic,United States of America,"10002, 10012, 10013"
+558018,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 08:00:00 PM,01/13/2021 12:33:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",PROSPECT PARK SOUTHWEST between VANDERBILT STREET and GREENWOOD AVENUE,Brooklyn,"19, 55, 7","72, 78",Television,Episodic series,United States of America,"11215, 11218"
+558015,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 10:00:00 PM,01/13/2021 12:30:30 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+558013,Shooting Permit,01/18/2021 06:00:00 AM,01/18/2021 10:00:00 PM,01/13/2021 12:25:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+558003,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 11:00:00 PM,01/13/2021 12:03:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","69 AVENUE between MANSE STREET and OLCOTT STREET, NANSEN STREET between SELFRIDGE STREET and 69 AVENUE, MANSE STREET between 69 AVENUE and 70 AVENUE, MANSE STREET between 68 AVENUE and 69 AVENUE, OLCOTT STREET between SELFRIDGE STREET and 70 AVENUE, COOPER AVENUE between WOODHAVEN BOULEVARD and 88 STREET, 69 AVENUE between METROPOLITAN AVENUE and OLCOTT STREET",Queens,"5, 6","104, 112",Television,Episodic series,United States of America,"11374, 11375, 11385"
+557993,Shooting Permit,01/19/2021 10:00:00 AM,01/19/2021 11:59:00 PM,01/13/2021 11:45:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 25 STREET between 2 AVENUE and 3 AVENUE, EAST 25 STREET between 1 AVENUE and 2 AVENUE, EAST 26 STREET between 2 AVENUE and 1 AVENUE, EAST 27 STREET between 2 AVENUE and 3 AVENUE, EAST 28 STREET between 2 AVENUE and 3 AVENUE, 1 AVENUE between EAST 27 STREET and EAST 26 STREET, EAST 28 STREET between 1 AVENUE and MT CARMEL PLACE, MT CARMEL PLACE between EAST 28 STREET and EAST 27 STREET",Manhattan,6,13,Television,Episodic series,United States of America,"10010, 10016"
+557943,Shooting Permit,01/15/2021 09:00:00 AM,01/16/2021 12:00:00 AM,01/13/2021 08:21:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MESEROLE AVENUE between MOULTRIE STREET and HUMBOLDT STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557922,Shooting Permit,01/17/2021 07:00:00 AM,01/17/2021 10:00:00 PM,01/12/2021 05:47:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 87 STREET and WEST 88 STREET, WEST 87 STREET between BROADWAY and AMSTERDAM AVENUE, AMSTERDAM AVENUE between WEST 85 STREET and WEST 88 STREET, WEST 85 STREET between BROADWAY and AMSTERDAM AVENUE, WEST END AVENUE between WEST 87 STREET and WEST 86 STREET, WEST 86 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 89 STREET and WEST 91 STREET, BROADWAY between WEST 88 STREET and WEST 89 STREET, BROADWAY between WEST 93 STREET and WEST 92 STREET, WEST 93 STREET between WEST END AVENUE and BROADWAY, WEST 90 STREET between WEST END AVENUE and BROADWAY, BROADWAY between WEST 86 STREET and WEST 87 STREET, WEST 86 STREET between BROADWAY and AMSTERDAM AVENUE, BROADWAY between WEST 93 STREET and WEST 94 STREET, BROADWAY between WEST 94 STREET and WEST 95 STREET",Manhattan,7,"20, 24",Television,Episodic series,United States of America,"10024, 10025"
+557911,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 10:00:00 PM,01/12/2021 05:04:47 PM,"Mayor's Office of Film, Theatre & Broadcasting","PATTERSON AVENUE between WHITE PLAINS ROAD and COMPTON AVENUE, COMPTON AVENUE between PATTERSON AVENUE and NEWMAN AVENUE, NEWMAN AVENUE between COMPTON AVENUE and O'BRIEN AVENUE, WHITE PLAINS ROAD between PATTERSON AVENUE and O'BRIEN AVENUE, LACOMBE AVENUE between WHITE PLAINS ROAD and SCREVIN AVENUE, East Tremont Ave between ROOSEVELT AVENUE and Cross Bronx Expressway, Cross Bronx Expy between REVERE AVENUE and E Tremont Ave, SCHLEY AVENUE between CROSS BRONX EXPRESSWAY and EAST TREMONT AVENUE, SCHLEY AVENUE between EAST TREMONT AVENUE and EDISON AVENUE, COMPTON AVENUE between NEWMAN AVENUE and STEPHENS AVENUE",Bronx,"10, 9","43, 45",Television,Cable-episodic,United States of America,"10465, 10473"
+557908,Shooting Permit,01/20/2021 09:00:00 AM,01/20/2021 11:59:00 PM,01/12/2021 04:48:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 100 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 100 STREET and WEST 99 STREET, WEST 98 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, BROADWAY between WEST 97 STREET and WEST 96 STREET, BROADWAY between WEST 97 STREET and WEST 99 STREET, BROADWAY between WEST 100 STREET and WEST 101 STREET, BROADWAY between WEST 101 STREET and WEST 102 STREET, BROADWAY between WEST 103 STREET and WEST 102 STREET",Manhattan,7,24,Television,Episodic series,United States of America,10025
+557907,Shooting Permit,01/19/2021 06:00:00 AM,01/19/2021 10:00:00 PM,01/12/2021 04:48:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 100 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 100 STREET and WEST 99 STREET, WEST 98 STREET between RIVERSIDE DRIVE and BROADWAY, WEST 99 STREET between RIVERSIDE DRIVE and WEST END AVENUE, BROADWAY between WEST 97 STREET and WEST 96 STREET, BROADWAY between WEST 97 STREET and WEST 99 STREET, BROADWAY between WEST 100 STREET and WEST 101 STREET, BROADWAY between WEST 101 STREET and WEST 102 STREET, BROADWAY between WEST 103 STREET and WEST 102 STREET",Manhattan,7,24,Television,Episodic series,United States of America,10025
+557904,Shooting Permit,01/16/2021 06:00:00 AM,01/16/2021 08:00:00 PM,01/12/2021 04:18:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 72 STREET and WEST 74 STREET, EAST 49 STREET between PARK AVENUE and LEXINGTON AVENUE",Manhattan,"5, 7, 9","18, 20",Television,Episodic series,United States of America,"10017, 10023, 10024"
+557902,Shooting Permit,01/15/2021 07:00:00 AM,01/15/2021 08:00:00 PM,01/12/2021 04:07:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","SPOFFORD AVENUE between TIFFANY STREET and CASANOVA STREET, TIFFANY STREET between RANDALL AVENUE and SPOFFORD AVENUE, CASANOVA STREET between RANDALL AVENUE and SPOFFORD AVENUE, BARRETTO STREET between RANDALL AVENUE and SPOFFORD AVENUE, RANDALL AVENUE between BARRETTO STREET and MANIDA STREET, BARRETTO STREET between RANDALL AVENUE and OAK POINT AVENUE, OAK POINT AVENUE between BARRY STREET and TRUXTON STREET, SPOFFORD AVENUE between CASANOVA STREET and BARRETTO STREET, SPOFFORD AVENUE between BARRETTO STREET and MANIDA STREET",Bronx,2,41,Television,Episodic series,United States of America,10474
+557899,Shooting Permit,01/14/2021 01:00:00 PM,01/14/2021 06:00:00 PM,01/12/2021 03:56:09 PM,"Mayor's Office of Film, Theatre & Broadcasting",FERRIS STREET between COFFEY STREET and VAN DYKE STREET,Brooklyn,6,76,Music Video,Signed Artist,United States of America,11231
+557898,Shooting Permit,01/21/2021 09:00:00 AM,01/22/2021 01:00:00 AM,01/12/2021 03:46:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557897,Shooting Permit,01/20/2021 09:00:00 AM,01/21/2021 01:00:00 AM,01/12/2021 03:45:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557895,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 10:00:00 PM,01/12/2021 03:35:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 16 STREET between WEST SIDE HIGHWAY and 10 AVENUE, 10 AVENUE between WEST 15 STREET and WEST 16 STREET, WEST 15 STREET between WEST SIDE HIGHWAY and 10 AVENUE, WEST 14 STREET between 9 AVENUE and WASHINGTON STREET, WEST 14 STREET between WASHINGTON STREET and 10 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,"10011, 10014"
+557890,Shooting Permit,01/15/2021 10:00:00 AM,01/16/2021 01:00:00 AM,01/12/2021 03:06:05 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE, EAST 71 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 74 STREET and EAST 76 STREET, LEXINGTON AVENUE between EAST 76 STREET and EAST 77 STREET, EAST 76 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 72 STREET and EAST 73 STREET, THIRD AVENUE between EAST 72 STREET and EAST 75 STREET, LEXINGTON AVENUE between EAST 71 STREET and EAST 72 STREET, THIRD AVENUE between EAST 71 STREET and EAST 72 STREET",Bronx,"8, 9","19, 43",Television,Cable-episodic,United States of America,"10021, 10075, 10473"
+557879,Shooting Permit,01/16/2021 06:00:00 AM,01/16/2021 07:00:00 PM,01/12/2021 02:23:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between BOGART STREET and WATERBURY STREET,Brooklyn,1,90,WEB,Not Applicable,United States of America,11206
+557872,Shooting Permit,01/18/2021 07:00:00 AM,01/18/2021 11:00:00 PM,01/12/2021 02:05:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557835,Shooting Permit,01/15/2021 10:00:00 AM,01/16/2021 02:00:00 AM,01/12/2021 12:17:11 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 69 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 70 STREET between PARK AVENUE and LEXINGTON AVENUE, LEXINGTON AVENUE between EAST 69 STREET and EAST 70 STREET, EAST 69 STREET between LEXINGTON AVENUE and 3 AVENUE, LEXINGTON AVENUE between EAST 69 STREET and EAST 68 STREET, LEXINGTON AVENUE between EAST 68 STREET and EAST 67 STREET",Manhattan,8,19,Television,Cable-episodic,United States of America,"10021, 10065"
+557833,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 10:00:00 PM,01/12/2021 12:13:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CITY ISLAND AVENUE between HAWKINS STREET and CARROLL STREET, HAWKINS STREET between CITY ISLAND AVENUE and DEAD END, HAWKINS STREET between CITY ISLAND AVENUE and WILLIAM AVENUE, CITY ISLAND AVENUE between HAWKINS STREET and FORDHAM STREET, CITY ISLAND AVENUE between CARROLL STREET and SCHOFIELD STREET, FORDHAM STREET between CITY ISLAND AVENUE and MINNIEFORD AVENUE, CARROLL STREET between CITY ISLAND AVENUE and WILLIAM AVENUE, HAWKINS STREET between PAULIS PLACE and WILLIAM AVENUE, HAWKINS STREET between WILLIAM AVENUE and CITY ISLAND AVENUE, WILLIAM AVENUE between HAWKINS STREET and FORDHAM STREET, FORDHAM STREET between DEAD END and WILLIAM AVENUE",Bronx,10,45,Television,Cable-episodic,United States of America,10464
+557821,Shooting Permit,01/15/2021 02:00:00 PM,01/16/2021 04:00:00 AM,01/12/2021 11:24:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between BERRY STREET and WYTHE AVENUE, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, NORTH 13 STREET between WYTHE AVENUE and BERRY STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+557811,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 09:00:00 PM,01/12/2021 10:51:59 AM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between RANDOLPH STREET and DEAD END, RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, RANDOLPH STREET between SCOTT AVENUE and GARDNER AVENUE, FLUSHING AVENUE between SCOTT AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and SCOTT AVENUE, SCOTT AVENUE between FLUSHING AVENUE and TROUTMAN STREET, JEFFERSON STREET between CYPRESS AVENUE and SCOTT AVENUE, CYPRESS AVENUE between TROUTMAN STREET and FLUSHING AVENUE, TROUTMAN STREET between CYPRESS AVENUE and SCOTT AVENUE, SCOTT AVENUE between JOHNSON AVENUE and FLUSHING AVENUE",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+557804,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 10:00:00 PM,01/12/2021 10:26:59 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+557800,Shooting Permit,01/18/2021 07:00:00 AM,01/18/2021 10:00:00 PM,01/12/2021 10:23:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+557797,Shooting Permit,01/15/2021 07:00:00 AM,01/15/2021 10:00:00 PM,01/12/2021 10:18:21 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+557796,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 10:00:00 PM,01/12/2021 10:15:39 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+557795,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 10:00:00 PM,01/12/2021 10:12:13 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+557793,Shooting Permit,01/14/2021 09:00:00 AM,01/15/2021 12:00:00 AM,01/12/2021 10:03:55 AM,"Mayor's Office of Film, Theatre & Broadcasting","Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557789,Shooting Permit,01/15/2021 10:00:00 AM,01/16/2021 02:00:00 AM,01/12/2021 09:50:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 51 STREET between BROADWAY and 6 AVENUE, WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between BROADWAY and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 52 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+557788,Shooting Permit,01/16/2021 06:00:00 AM,01/16/2021 10:00:00 PM,01/12/2021 09:22:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+557787,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 10:00:00 PM,01/12/2021 09:17:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE between 82ND ST and 83RD ST, 83 STREET between COOPER AVENUE and DORAN AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+557784,Shooting Permit,01/15/2021 08:00:00 AM,01/15/2021 10:00:00 PM,01/12/2021 07:59:29 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 140 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET, EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE",Bronx,1,40,Television,Episodic series,United States of America,10454
+557783,Shooting Permit,01/14/2021 06:00:00 AM,01/14/2021 08:00:00 PM,01/12/2021 07:54:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","BARCLAY STREET between BROADWAY and CHURCH STREET, CHURCH STREET between BARCLAY STREET and PARK PLACE, PARK PLACE between BROADWAY and CHURCH STREET, WEST STREET between CHAMBERS STREET and HUBERT STREET, MURRAY STREET between CHURCH STREET and BROADWAY, MURRAY STREET between CHURCH STREET and WEST BROADWAY, CHURCH STREET between MURRAY STREET and CHAMBERS STREET",Manhattan,1,1,Television,Episodic series,United States of America,"10007, 10013, 10282"
+557743,Shooting Permit,01/14/2021 09:00:00 AM,01/15/2021 01:00:00 AM,01/11/2021 07:07:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","BROADWAY between WEST 54 STREET and WEST 55 STREET, WEST 51 STREET between BROADWAY and 6 AVENUE, WEST 53 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between BROADWAY and 6 AVENUE, WEST 55 STREET between 6 AVENUE and 7 AVENUE, 7 AVENUE between WEST 51 STREET and WEST 52 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10020"
+557732,Shooting Permit,01/14/2021 06:00:00 AM,01/14/2021 08:00:00 PM,01/11/2021 05:48:29 PM,"Mayor's Office of Film, Theatre & Broadcasting","DOBBIN STREET between MESEROLE AVENUE and NORMAN AVENUE, DOBBIN STREET between NORMAN AVENUE and NASSAU AVENUE, JEFFERSON STREET between BROADWAY and BUSHWICK AVENUE, MYRTLE AVENUE between BROADWAY and TROUTMAN STREET, THAMES STREET between PORTER AVENUE and VARICK AVENUE",Brooklyn,"1, 4","83, 90, 94",Commercial,Commercial,United States of America,"11206, 11221, 11222, 11237"
+557724,Shooting Permit,01/14/2021 09:00:00 AM,01/15/2021 12:30:00 AM,01/11/2021 04:44:08 PM,"Mayor's Office of Film, Theatre & Broadcasting","RAILROAD AVENUE between GREENPOINT AVENUE and DEAD END, GREENPOINT AVENUE between RAILROAD AVENUE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+557721,Shooting Permit,01/15/2021 08:00:00 AM,01/15/2021 11:00:00 PM,01/11/2021 04:26:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+557719,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 09:00:00 PM,01/11/2021 04:20:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+557712,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 09:00:00 PM,01/11/2021 03:42:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","JOHNSON AVENUE between SCOTT AVENUE and GARDNER AVENUE, SCOTT AVENUE between RANDOLPH STREET and JOHNSON AVENUE, SCOTT AVENUE between JOHNSON AVENUE and FLUSHING AVENUE, SCOTT AVENUE between RANDOLPH STREET and DEAD END, RANDOLPH STREET between SCOTT AVENUE and SENECA AVENUE, RANDOLPH STREET between SCOTT AVENUE and GARDNER AVENUE, FLUSHING AVENUE between SCOTT AVENUE and ST NICHOLAS AVENUE, FLUSHING AVENUE between CYPRESS AVENUE and SCOTT AVENUE, SCOTT AVENUE between FLUSHING AVENUE and TROUTMAN STREET, JEFFERSON STREET between CYPRESS AVENUE and SCOTT AVENUE, CYPRESS AVENUE between TROUTMAN STREET and FLUSHING AVENUE, TROUTMAN STREET between CYPRESS AVENUE and SCOTT AVENUE",Brooklyn,"1, 4, 5","104, 83, 90",Television,Episodic series,United States of America,"11237, 11385"
+557708,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 08:00:00 PM,01/11/2021 03:14:40 PM,"Mayor's Office of Film, Theatre & Broadcasting",MARLBOROUGH ROAD between CHURCH AVENUE and ALBEMARLE ROAD,Brooklyn,14,70,Television,Episodic series,United States of America,11226
+557703,Shooting Permit,01/15/2021 07:00:00 AM,01/15/2021 10:00:00 PM,01/11/2021 02:49:25 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557692,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 09:00:00 PM,01/11/2021 02:30:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557686,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 10:00:00 PM,01/11/2021 02:15:32 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+557646,Shooting Permit,01/13/2021 05:00:00 AM,01/13/2021 10:00:00 PM,01/11/2021 10:26:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557645,Shooting Permit,01/13/2021 09:00:00 AM,01/14/2021 01:00:00 AM,01/11/2021 10:24:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557642,Shooting Permit,01/19/2021 07:00:00 AM,01/19/2021 09:00:00 PM,01/11/2021 10:09:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557641,Shooting Permit,01/13/2021 09:00:00 AM,01/13/2021 11:30:00 PM,01/11/2021 10:01:57 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557453,Shooting Permit,01/12/2021 07:00:00 AM,01/12/2021 09:00:00 PM,01/08/2021 04:43:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557423,Shooting Permit,01/13/2021 06:00:00 AM,01/13/2021 08:00:00 PM,01/08/2021 02:51:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 58 STREET between GRAND ARMY PLAZA and 5 AVENUE, 6 AVENUE between WEST 58 STREET and WEST 59 STREET, PARK AVENUE between EAST 50 STREET and EAST 55 STREET, WEST 55 STREET between 6 AVENUE and 5 AVENUE, MADISON AVENUE between EAST 57 STREET and EAST 59 STREET, EAST 55 STREET between 5 AVENUE and MADISON AVENUE, WEST 54 STREET between 6 AVENUE and 7 AVENUE, WEST 54 STREET between 6 AVENUE and 5 AVENUE, 6 AVENUE between WEST 57 STREET and WEST 58 STREET",Manhattan,5,18,Television,Episodic series,United States of America,"10019, 10022, 10152"
+557419,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 09:00:00 PM,01/08/2021 02:30:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+557418,Shooting Permit,01/15/2021 01:00:00 PM,01/16/2021 02:30:00 AM,01/08/2021 02:28:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","AVENUE D between DEWITT AVENUE and EAST 105 STREET, BANK STREET between FOSTER AVENUE and DEWITT AVENUE, FOSTER AVENUE between EAST 105 STREET and BANK STREET, DEWITT AVENUE between VAN SINDEREN AVENUE and SNEDIKER AVENUE, DEWITT AVE. between AVENUE D and VAN SINDEREN AVENUE, VAN SINDEREN AVE. between LINDEN BLVD. and DEWITT AVE.",Brooklyn,"18, 5","69, 75",Television,Cable-episodic,United States of America,"11207, 11236"
+557412,Shooting Permit,01/13/2021 06:30:00 AM,01/13/2021 09:00:00 PM,01/08/2021 02:11:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557400,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 10:00:00 PM,01/08/2021 01:12:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Queens,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+557390,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 09:00:00 PM,01/08/2021 11:58:49 AM,"Mayor's Office of Film, Theatre & Broadcasting","GREENPOINT AVENUE between RAILROAD AVENUE and DEAD END, RAILROAD AVENUE between GREENPOINT AVENUE and DEAD END",Queens,2,108,Television,Episodic series,United States of America,11101
+557369,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 10:00:00 PM,01/08/2021 10:44:30 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557368,Shooting Permit,01/12/2021 09:00:00 AM,01/13/2021 12:00:00 AM,01/08/2021 10:26:33 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, Kingsland ave between Greenpoint Ave and N Henry St, Kingsland Ave between NORTH HENRY STREET and Greenpoint Ave",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557358,Shooting Permit,01/13/2021 06:00:00 AM,01/13/2021 08:00:00 PM,01/08/2021 02:35:53 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 24 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 9 AVENUE, WEST 25 STREET between 10 AVENUE and 9 AVENUE",Manhattan,4,10,Commercial,Commercial,United States of America,"10001, 10011"
+557335,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 09:00:00 PM,01/07/2021 05:30:07 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+557333,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 09:00:00 PM,01/07/2021 05:06:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COLGATE AVENUE between LAFAYETTE AVENUE and STORY AVENUE, COLGATE AVENUE between STORY AVENUE and BRUCKNER BOULEVARD, STORY AVENUE between BRONX RIVER AVENUE and COLGATE AVENUE",Bronx,9,43,Television,Cable-episodic,United States of America,10473
+557325,Shooting Permit,01/12/2021 08:00:00 AM,01/12/2021 08:00:00 PM,01/07/2021 04:37:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","84 STREET between DORAN AVENUE and COOPER AVENUE, 88 STREET between DORAN AVENUE and COOPER AVENUE, COOPER AVENUE between 88 STREET and 84 STREET",Queens,5,104,Television,Episodic series,United States of America,11385
+557313,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 10:00:00 PM,01/07/2021 02:49:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVE. between 88 STREET and 81ST ST., COOPER AVE. between 80TH ST. and 78TH ST., 71 AVENUE between 79 PLACE and 80 STREET",Queens,5,104,Television,Cable-episodic,United States of America,"11379, 11385"
+557311,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 10:00:00 PM,01/07/2021 02:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 120 STREET between ADAM CLAYTON POWELL JR BOULEVARD and MALCOLM X BOULEVARD, MALCOLM X BOULEVARD between WEST 121 STREET and WEST 119 STREET, WEST 121 STREET between MALCOLM X BOULEVARD and MOUNT MORRIS PARK WEST, WEST 122 STREET between MALCOLM X BOULEVARD and MOUNT MORRIS PARK WEST, EAST 120 STREET between 5 AVENUE and MADISON AVENUE, WEST 120 STREET between MOUNT MORRIS PARK WEST and 5 AVENUE, 5 AVENUE between EAST 120 STREET and EAST 119 STREET",Manhattan,"10, 11","25, 28",Television,Cable-episodic,United States of America,"10026, 10027, 10035"
+557310,Shooting Permit,01/15/2021 07:00:00 AM,01/15/2021 11:00:00 PM,01/07/2021 02:24:17 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557284,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 11:00:00 PM,01/07/2021 12:37:43 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557275,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 11:00:00 PM,01/07/2021 12:15:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557255,Shooting Permit,01/08/2021 02:00:00 PM,01/09/2021 04:00:00 AM,01/07/2021 11:08:27 AM,"Mayor's Office of Film, Theatre & Broadcasting","CLAREMONT AVE between WEST 116 STREET and WEST 119 STREET, WEST 116 STREET between RIVERSIDE DRIVE and CLAREMONT AVENUE, RIVERSIDE DRIVE between WEST 116 STREET and WEST 119 STREET, RIVERSIDE DRIVE between WEST 115 STREET and WEST 116 STREET, RIVERSIDE DRIVE WEST between WEST 119 STREET and WEST 122 STREET, RIVERSIDE DRIVE between WEST 122 STREET and WEST 120 STREET",Manhattan,9,26,Television,Episodic series,United States of America,"10024, 10025, 10027"
+557251,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 11:00:00 PM,01/07/2021 11:01:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557228,Shooting Permit,01/09/2021 06:00:00 AM,01/09/2021 10:00:00 PM,01/07/2021 09:32:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE, KINGSLAND AVENUE between DEAD END and GREENPOINT AVENUE",Queens,1,94,Television,Episodic series,United States of America,11222
+557225,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 08:00:00 PM,01/07/2021 09:27:16 AM,"Mayor's Office of Film, Theatre & Broadcasting","E. 43RD ST between 2 AVENUE and 1 AVENUE, TUDOR CITY PLACE between EAST 43 STREET and DEAD END, EAST 41 STREET between 2 AVENUE and TUDOR CITY PLACE, EAST 49 STREET between MADISON AVENUE and LEXINGTON AVENUE, EAST 49 STREET between 5 AVENUE and MADISON AVENUE, 2 AVENUE between EAST 42 STREET and EAST 41 STREET, PARK AVENUE between EAST 50 STREET and EAST 54 STREET",Manhattan,"5, 6","17, 18",Television,Episodic series,United States of America,"10017, 10022, 10152"
+557218,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 07:00:00 PM,01/07/2021 08:02:23 AM,"Mayor's Office of Film, Theatre & Broadcasting","CHRISTOPHER AVENUE between EAST NEW YORK AVENUE and LIBERTY AVENUE, CHRYSTIE STREET between DELANCEY STREET and BROOME STREET, DELANCEY STREET between CHRYSTIE STREET and BOWERY",Brooklyn,"16, 3","5, 73",WEB,Not Applicable,United States of America,"10002, 11212"
+557205,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 07:00:00 PM,01/06/2021 09:34:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","GRAND STREET between CROSBY STREET and LAFAYETTE STREET, GRAND STREET between CROSBY STREET and BROADWAY, CROSBY STREET between GRAND STREET and HOWARD STREET",Manhattan,2,"1, 5",Commercial,Commercial,United States of America,10013
+557191,Shooting Permit,01/09/2021 06:00:00 AM,01/09/2021 07:00:00 PM,01/06/2021 06:05:46 PM,"Mayor's Office of Film, Theatre & Broadcasting",MESEROLE STREET between BOGART STREET and WATERBURY STREET,Brooklyn,1,90,WEB,Not Applicable,United States of America,11206
+557183,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 11:00:00 PM,01/06/2021 05:11:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 8 AVENUE and 10 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 48 STREET, WEST 46 STREET between 7 AVENUE and 8 AVENUE, WEST 47 STREET between 8 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+557182,Shooting Permit,01/11/2021 03:00:00 PM,01/11/2021 08:00:00 PM,01/06/2021 05:10:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 21 STREET between 10 AVENUE and 11 AVENUE, WEST 22 STREET between 10 AVENUE and 11 AVENUE",Manhattan,4,10,Television,Episodic series,United States of America,10011
+557181,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 10:00:00 PM,01/06/2021 05:04:24 PM,"Mayor's Office of Film, Theatre & Broadcasting",FOSTER AVE. between 101ST ST. and 105TH ST.,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+557180,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 09:00:00 PM,01/06/2021 04:58:37 PM,"Mayor's Office of Film, Theatre & Broadcasting","CORTLANDT STREET between CHURCH STREET and BROADWAY, LIBERTY STREET between CHURCH STREET and BROADWAY, WEST STREET between VESEY STREET and MURRAY STREET, MURRAY STREET between GREENWICH STREET and WEST STREET, GREENWICH STREET between BARCLAY STREET and MURRAY STREET",Manhattan,1,1,Television,Cable-episodic,United States of America,"10006, 10007, 10282"
+557178,Shooting Permit,01/12/2021 08:00:00 AM,01/13/2021 12:00:00 AM,01/06/2021 04:49:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+557169,Shooting Permit,01/09/2021 06:00:00 AM,01/09/2021 07:30:00 PM,01/06/2021 04:14:18 PM,"Mayor's Office of Film, Theatre & Broadcasting","CHERRY STREET between PIKE STREET and FRANK T MODICA WAY, PELL STREET between DOYER STREET and BOWERY",Manhattan,3,"5, 7",Music Video,Signed Artist,United States of America,"10002, 10013"
+557147,Shooting Permit,01/12/2021 07:00:00 AM,01/12/2021 11:00:00 PM,01/06/2021 01:52:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557146,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 11:00:00 PM,01/06/2021 01:51:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+557141,Shooting Permit,01/22/2021 07:00:00 AM,01/22/2021 09:00:00 PM,01/06/2021 01:26:27 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557138,Shooting Permit,01/21/2021 07:00:00 AM,01/21/2021 09:00:00 PM,01/06/2021 01:22:56 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557132,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 08:00:00 PM,01/06/2021 01:11:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET, MOULTRIE STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557126,Rigging Permit,01/11/2021 07:00:00 AM,01/11/2021 07:00:00 PM,01/06/2021 01:02:17 PM,"Mayor's Office of Film, Theatre & Broadcasting",VANDAM STREET between VARICK STREET and 6 AVENUE,Manhattan,2,1,Television,Made for TV/mini-series,United States of America,10013
+557117,Shooting Permit,01/15/2021 07:00:00 AM,01/15/2021 09:00:00 PM,01/06/2021 12:43:32 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557114,Shooting Permit,01/25/2021 07:00:00 AM,01/25/2021 09:00:00 PM,01/06/2021 12:34:26 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557112,Shooting Permit,01/20/2021 07:00:00 AM,01/20/2021 09:00:00 PM,01/06/2021 12:29:48 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557107,Shooting Permit,01/18/2021 07:00:00 AM,01/18/2021 09:00:00 PM,01/06/2021 12:14:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557102,Shooting Permit,01/14/2021 07:00:00 AM,01/14/2021 09:00:00 PM,01/06/2021 11:51:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557099,Shooting Permit,01/13/2021 07:00:00 AM,01/13/2021 09:00:00 PM,01/06/2021 11:45:10 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557076,Shooting Permit,01/11/2021 12:00:00 PM,01/11/2021 11:59:00 PM,01/06/2021 09:57:25 AM,"Mayor's Office of Film, Theatre & Broadcasting","3 AVENUE between 74 STREET and BAY RIDGE PARKWAY, 3 AVENUE between BAY RIDGE PARKWAY and 76 STREET, 3 AVENUE between 76 STREET and 77 STREET, 3 AVENUE between 77 STREET and 78 STREET, 3 AVENUE between 78 STREET and 79 STREET, 91 STREET between 3 AVENUE and 4 AVENUE, 3 AVENUE between 92 STREET and 90 STREET, 3 AVENUE between 89 STREET and 86 STREET, 3 AVENUE between 89 STREET and 90 STREET, 5 AVENUE between 87 STREET and 88 STREET, 5 AVENUE between 87 STREET and 86 STREET, 87 STREET between 5 AVENUE and 4 AVENUE, FLATBUSH AVENUE between 6 AVENUE and BERGEN STREET, FLATBUSH AVENUE between DEAN STREET and BERGEN STREET, 6 AVENUE between FLATBUSH AVENUE and ST MARKS AVENUE, PACIFIC STREET between FLATBUSH AVENUE and 4 AVENUE, BERGEN STREET between 5 AVENUE and 6 AVENUE",Brooklyn,"10, 2, 6, 8","68, 78",Commercial,Commercial,United States of America,"11209, 11217"
+557065,Shooting Permit,01/08/2021 01:00:00 PM,01/09/2021 03:00:00 AM,01/06/2021 09:32:18 AM,"Mayor's Office of Film, Theatre & Broadcasting","NORTH 12 STREET between WYTHE AVENUE and BERRY STREET, WYTHE AVENUE between NORTH 10 STREET and NORTH 11 STREET, WYTHE AVENUE between NORTH 11 STREET and NORTH 12 STREET, WYTHE AVENUE between NORTH 12 STREET and NORTH 13 STREET, WYTHE AVENUE between NORTH 13 STREET and NORTH 14 STREET, BEDFORD AVENUE between NORTH 12 STREET and LORIMER STREET",Brooklyn,1,94,Television,Cable-episodic,United States of America,"11222, 11249"
+557063,Shooting Permit,01/13/2021 06:00:00 AM,01/13/2021 08:00:00 PM,01/06/2021 09:21:23 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+557061,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 08:00:00 PM,01/06/2021 09:18:00 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+557059,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 08:00:00 PM,01/06/2021 09:14:35 AM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+557012,Shooting Permit,01/12/2021 07:00:00 AM,01/12/2021 09:00:00 PM,01/05/2021 04:47:30 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+557001,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 09:00:00 PM,01/05/2021 04:13:22 PM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+556949,Shooting Permit,01/07/2021 08:00:00 AM,01/07/2021 11:00:00 PM,01/05/2021 01:04:26 PM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+556882,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 10:00:00 PM,01/05/2021 10:35:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+556879,Shooting Permit,01/06/2021 07:00:00 AM,01/06/2021 10:00:00 PM,01/05/2021 10:30:24 AM,"Mayor's Office of Film, Theatre & Broadcasting","COVERT STREET between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Queens,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+556878,Shooting Permit,01/07/2021 12:00:00 AM,01/07/2021 09:00:00 PM,01/05/2021 10:29:42 AM,"Mayor's Office of Film, Theatre & Broadcasting","IRVING AVENUE between HALSEY STREET and ELDERT STREET, ELDERT STREET between IRVING AVENUE and KNICKERBOCKER AVENUE, COVERT ST between WYCKOFF AVENUE and IRVING AVENUE, IRVING AVENUE between ELDERT STREET and COVERT STREET",Brooklyn,"4, 5","104, 83",Television,Episodic series,United States of America,"11237, 11385"
+556870,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 08:00:00 PM,01/05/2021 09:40:09 AM,"Mayor's Office of Film, Theatre & Broadcasting","1 AVENUE between EAST 102 STREET and EAST 106 STREET, EAST 105 STREET between 1 AVENUE and FDR DRIVE, EAST 105 STREET between 1 AVENUE and 2 AVENUE, EAST 104 STREET between 1 AVENUE and 2 AVENUE, EAST 101 STREET between 1 AVENUE and 2 AVENUE",Manhattan,11,23,Television,Episodic series,United States of America,10029
+556862,Shooting Permit,01/08/2021 09:00:00 AM,01/08/2021 11:45:00 PM,01/05/2021 08:43:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","VERNON BOULEVARD between QUEENS PLAZA NORTH and 40 AVENUE, VERNON BOULEVARD between QUEENS PLAZA SOUTH and 43 AVENUE, QUEENS PLAZA SOUTH between VERNON BOULEVARD and 10 STREET, 43 AVENUE between 10 STREET and 11 STREET, 10 STREET between 43 AVENUE and 43 ROAD, 48 AVENUE between 5 STREET and VERNON BOULEVARD, 9 STREET between QUEENS PLAZA SOUTH and 43 ROAD, 43 AVENUE between VERNON BOULEVARD and 9 STREET, 43 AVENUE between 9 STREET and 10 STREET, QUEENS PLAZA SOUTH between 10 STREET and 12 STREET",Queens,"1, 2","108, 114",Television,Episodic series,United States of America,11101
+556827,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 09:00:00 PM,01/04/2021 08:57:41 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+556824,Shooting Permit,01/07/2021 06:00:00 AM,01/07/2021 09:00:00 PM,01/04/2021 08:52:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, MESEROLE AVENUE between HUMBOLDT STREET and MOULTRIE STREET, HUMBOLDT STREET between MESEROLE AVENUE and NORMAN AVENUE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+556787,Shooting Permit,01/08/2021 01:00:00 PM,01/09/2021 02:00:00 AM,01/04/2021 04:44:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","DORAN AVENUE between 84 STREET and 83 STREET, 83 STREET between DORAN AVENUE and COOPER AVENUE, 84 STREET between DORAN AVENUE and COOPER AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+556740,Shooting Permit,01/08/2021 08:00:00 AM,01/09/2021 12:00:00 AM,01/04/2021 02:31:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 45 STREET and EAST 47 STREET, EAST 47 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10171, 10172"
+556714,Shooting Permit,01/07/2021 08:00:00 AM,01/08/2021 12:00:00 AM,01/04/2021 01:19:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","LEXINGTON AVENUE between EAST 45 STREET and EAST 47 STREET, EAST 47 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 47 STREET and EAST 48 STREET, PARK AVENUE between EAST 48 STREET and EAST 49 STREET, EAST 48 STREET between PARK AVENUE and LEXINGTON AVENUE, EAST 49 STREET between LEXINGTON AVENUE and PARK AVENUE, PARK AVENUE between EAST 49 STREET and EAST 50 STREET",Manhattan,"5, 6","17, 18",Television,Cable-episodic,United States of America,"10017, 10022, 10171, 10172"
+556696,Shooting Permit,01/07/2021 08:00:00 AM,01/07/2021 10:00:00 PM,01/04/2021 12:42:49 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 25 STREET between 11 AVENUE and 10 AVENUE, WEST 25 STREET between 10 AVENUE and 9 AVENUE, WEST 26 STREET between 11 AVENUE and 10 AVENUE, WEST 27 STREET between 11 AVENUE and 10 AVENUE, WEST 28 STREET between 11 AVENUE and 10 AVENUE, 11 AVENUE between WEST 27 STREET and WEST 28 STREET",Manhattan,4,10,Television,Episodic series,United States of America,10001
+556645,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 11:00:00 PM,01/04/2021 11:30:01 AM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and BROADWAY, 34 AVENUE between 35 STREET and 34 STREET, 35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,"1, 5, 6, 9","114, 75",Television,Episodic series,United States of America,"11106, 11375, 11385, 11415, 11421"
+556637,Shooting Permit,01/06/2021 07:00:00 AM,01/06/2021 10:00:00 PM,01/04/2021 11:22:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","DIAMOND STREET between CALYER STREET and MESEROLE AVENUE, JEWEL STREET between CALYER STREET and MESEROLE AVENUE, CALYER STREET between DIAMOND STREET and JEWEL STREET, RUSSELL STREET between GREENPOINT AVENUE and CALYER STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+556581,Shooting Permit,01/06/2021 06:00:00 AM,01/06/2021 08:00:00 PM,01/04/2021 10:04:20 AM,"Mayor's Office of Film, Theatre & Broadcasting","SOUTH 4 STREET between BEDFORD AVENUE and BERRY STREET, SOUTH 5 STREET between DRIGGS AVENUE and SOUTH 5 PLACE, SOUTH 5 STREET between BEDFORD AVENUE and DRIGGS AVENUE, SOUTH 5 STREET between BERRY STREET and BEDFORD AVENUE, SOUTH 5 STREET between WYTHE AVENUE and BERRY STREET, SOUTH 5 STREET between WYTHE AVENUE and KENT AVENUE, SOUTH 6 STREET between BEDFORD AVENUE and BERRY STREET",Brooklyn,1,90,Television,Cable-episodic,United States of America,"11211, 11249"
+556574,Shooting Permit,01/05/2021 06:00:00 AM,01/05/2021 09:00:00 PM,01/04/2021 08:46:17 AM,"Mayor's Office of Film, Theatre & Broadcasting",AVENUE D between EAST 101 STREET and EAST 105 STREET,Brooklyn,18,69,Television,Cable-episodic,United States of America,11236
+556426,Shooting Permit,01/05/2021 10:00:00 AM,01/05/2021 08:00:00 PM,12/31/2020 03:10:47 PM,"Mayor's Office of Film, Theatre & Broadcasting",ADAM CLAYTON POWELL JR BOULEVARD between WEST 121 STREET and WEST 122 STREET,Manhattan,10,28,Music Video,Not Applicable,United States of America,10027
+556421,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 11:59:00 PM,12/31/2020 02:07:21 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between KENMARE STREET and BROOME STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between CROSBY STREET and BROADWAY, CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET",Manhattan,"2, 3",5,Commercial,Industrial/Corporate,United States of America,"10002, 10012, 10013"
+556420,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 11:59:00 PM,12/31/2020 02:07:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between KENMARE STREET and BROOME STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between CROSBY STREET and BROADWAY",Manhattan,2,5,Commercial,Industrial/Corporate,United States of America,"10012, 10013"
+556419,Shooting Permit,01/10/2021 06:00:00 AM,01/10/2021 11:59:00 PM,12/31/2020 02:06:57 PM,"Mayor's Office of Film, Theatre & Broadcasting","LAFAYETTE STREET between KENMARE STREET and BROOME STREET, BROOME STREET between CROSBY STREET and LAFAYETTE STREET, BROOME STREET between CROSBY STREET and BROADWAY",Manhattan,2,5,Commercial,Industrial/Corporate,United States of America,"10012, 10013"
+556410,Shooting Permit,01/08/2021 06:00:00 AM,01/08/2021 07:00:00 PM,12/31/2020 11:43:47 AM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 8 STREET between 6 AVENUE and MACDOUGAL STREET, 6 AVENUE between WEST 8 STREET and WEST 9 STREET, 6 AVENUE between WEST 9 STREET and WEST 10 STREET",Manhattan,2,6,WEB,Not Applicable,United States of America,10011
+556307,Shooting Permit,01/08/2021 06:00:00 AM,01/08/2021 10:00:00 PM,12/30/2020 11:55:07 AM,"Mayor's Office of Film, Theatre & Broadcasting","RIVERSIDE DRIVE between WEST 105 STREET and WEST 106 STREET, WEST 105 STREET between RIVERSIDE DRIVE and WEST END AVENUE, WEST END AVENUE between WEST 105 STREET and WEST 106 STREET, WEST 105 STREET between WEST END AVENUE and BROADWAY, WEST 104 STREET between RIVERSIDE DRIVE and WEST END AVENUE, RIVERSIDE DRIVE between WEST 99 STREET and WEST 103 STREET",Manhattan,"4, 7","10, 24",Television,Episodic series,United States of America,"10011, 10025"
+556302,Shooting Permit,01/13/2021 06:00:00 AM,01/13/2021 11:59:00 PM,12/30/2020 10:33:45 AM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 8 STREET and WEST 9 STREET, 6 AVENUE between WEST 9 STREET and WEST 10 STREET, CHRYSTIE STREET between STANTON STREET and RIVINGTON STREET",Manhattan,"2, 3","5, 6",Commercial,Industrial/Corporate,United States of America,"10002, 10011"
+556275,Shooting Permit,01/14/2021 06:00:00 AM,01/14/2021 11:59:00 PM,12/29/2020 05:07:12 PM,"Mayor's Office of Film, Theatre & Broadcasting","6 AVENUE between WEST 8 STREET and WEST 9 STREET, 6 AVENUE between WEST 9 STREET and WEST 10 STREET",Manhattan,2,6,Commercial,Industrial/Corporate,United States of America,10011
+556250,Shooting Permit,01/04/2021 12:01:00 AM,12/31/2021 11:59:00 PM,12/29/2020 02:45:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 53 STREET between BROADWAY and 8 AVENUE, BROADWAY between WEST 53 STREET and WEST 54 STREET",Manhattan,5,18,Television,Talk Show,United States of America,10019
+556125,Shooting Permit,01/09/2021 06:00:00 AM,01/09/2021 09:00:00 PM,12/28/2020 09:01:56 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 22 STREET between PARK AVENUE SOUTH and LEXINGTON AVENUE, PARK AVENUE SOUTH between EAST 21 STREET and EAST 22 STREET",Manhattan,"2, 5, 6","13, 88",Television,Made for TV/mini-series,United States of America,"10010, 11251"
+556123,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 09:00:00 PM,12/28/2020 08:59:00 AM,"Mayor's Office of Film, Theatre & Broadcasting","FLUSHING AVENUE between WAVERLY AVENUE and WASHINGTON AVENUE, WASHINGTON AVENUE between FLUSHING AVENUE and PARK AVENUE, WAVERLY AVENUE between FLUSHING AVENUE and PARK AVENUE",Brooklyn,2,88,Television,Made for TV/mini-series,United States of America,"11205, 11251"
+556016,Shooting Permit,01/11/2021 07:00:00 AM,01/11/2021 09:00:00 PM,12/23/2020 04:38:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORMAN AVENUE and GREENPOINT AVENUE, RIVERSIDE DRIVE between WEST 89 STREET and WEST 84 STREET, WEST 87 STREET between BROADWAY and RIVERSIDE DRIVE, WEST END AVENUE between WEST 87 STREET and WEST 86 STREET, WEST 86 STREET between WEST END AVENUE and BROADWAY",Manhattan,"1, 7","20, 24, 94",Television,Episodic series,United States of America,"10024, 11222"
+555981,Shooting Permit,01/06/2021 07:00:00 AM,01/06/2021 09:00:00 PM,12/23/2020 12:35:46 AM,"Mayor's Office of Film, Theatre & Broadcasting","COOPER AVENUE between 84 STREET and 83 STREET, 83 STREET between DORAN AVENUE and COOPER AVENUE",Queens,5,104,Television,Episodic series,United States of America,11385
+555924,Shooting Permit,01/07/2021 07:00:00 AM,01/07/2021 10:00:00 PM,12/22/2020 11:19:51 AM,"Mayor's Office of Film, Theatre & Broadcasting","KINGSLAND AVENUE between NORTH HENRY STREET and GREENPOINT AVENUE, KINGSLAND AVENUE between GREENPOINT AVENUE and NORTH HENRY STREET, KINGSLAND AVENUE between GREENPOINT AVENUE and NORTH HENRY STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555920,Shooting Permit,01/06/2021 06:00:00 AM,01/06/2021 11:00:00 PM,12/22/2020 11:07:57 AM,"Mayor's Office of Film, Theatre & Broadcasting",KINGSLAND AVENUE between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555867,Shooting Permit,01/07/2021 12:00:00 PM,01/07/2021 11:59:00 PM,12/21/2020 03:59:46 PM,"Mayor's Office of Film, Theatre & Broadcasting","MONROE STREET between PIKE STREET and MARKET STREET, MONROE STREET between MARKET STREET and CATHERINE STREET, MARKET STREET between CHERRY STREET and MONROE STREET, PIKE STREET between CHERRY STREET and MONROE STREET, PIKE STREET between MONROE STREET and MADISON STREET, CHERRY STREET between PIKE STREET and MARKET STREET",Manhattan,3,"5, 7",Television,Episodic series,United States of America,10002
+555799,Rigging Permit,01/08/2021 05:00:00 PM,01/09/2021 01:00:00 PM,12/21/2020 11:45:04 AM,"Mayor's Office of Film, Theatre & Broadcasting",RIVERSIDE DRIVE between WEST 105 STREET and WEST 106 STREET,Manhattan,7,24,Television,Episodic series,United States of America,10025
+555667,Shooting Permit,01/07/2021 06:00:00 AM,01/07/2021 10:00:00 PM,12/18/2020 04:02:07 PM,"Mayor's Office of Film, Theatre & Broadcasting","HENRY STREET between ATLANTIC AVENUE and STATE STREET, STATE STREET between HENRY STREET and SIDNEY PLACE, ATLANTIC AVENUE between HICKS STREET and COURT STREET, GRACE COURT ALLEY between HICKS STREET and DEAD END, HICKS STREET between JORALEMON STREET and REMSEN STREET, REMSEN STREET between HICKS STREET and HENRY STREET, HENRY STREET between STATE STREET and JORALEMON STREET, HENRY STREET between REMSEN STREET and HUNTS LANE, PINE STREET between BROADWAY and WILLIAM STREET, NASSAU STREET between PINE STREET and CEDAR STREET, CEDAR STREET between BROADWAY and NASSAU STREET, WILLIAM STREET between PINE STREET and LIBERTY STREET, LIBERTY STREET between NASSAU STREET and WILLIAM STREET, LIBERTY STREET between BROADWAY and LIBERTY PLACE, EXCHANGE PLACE between WILLIAM STREET and HANOVER STREET, MAIDEN LANE between GOLD STREET and WATER STREET, CEDAR STREET between WILLIAM STREET and PEARL STREET",Brooklyn,"1, 2, 6","1, 76, 84",Television,Cable-episodic,United States of America,"10005, 10038, 10045, 10271, 11201"
+555597,Shooting Permit,01/06/2021 08:00:00 AM,01/07/2021 12:00:00 AM,12/17/2020 06:34:35 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, 22 STREET between 43 AVENUE and 44 AVENUE, 44 AVENUE between 21 STREET and 22 STREET",Queens,2,108,Television,Episodic series,United States of America,11101
+555596,Shooting Permit,01/07/2021 09:00:00 AM,01/08/2021 01:00:00 AM,12/17/2020 06:31:42 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 10 AVENUE and 8 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 48 STREET, WEST 46 STREET between 8 AVENUE and 7 AVENUE, WEST 47 STREET between 8 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+555595,Shooting Permit,01/08/2021 09:00:00 AM,01/09/2021 12:00:00 AM,12/17/2020 06:30:52 PM,"Mayor's Office of Film, Theatre & Broadcasting","WEST 45 STREET between 10 AVENUE and 8 AVENUE, 8 AVENUE between WEST 45 STREET and WEST 48 STREET, WEST 46 STREET between 8 AVENUE and 7 AVENUE, WEST 47 STREET between 8 AVENUE and BROADWAY",Manhattan,"4, 5","14, 18",Television,Episodic series,United States of America,10036
+555583,Shooting Permit,01/05/2021 06:30:00 AM,01/05/2021 09:00:00 PM,12/17/2020 04:24:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555582,Shooting Permit,01/04/2021 06:30:00 AM,01/04/2021 09:00:00 PM,12/17/2020 04:09:50 PM,"Mayor's Office of Film, Theatre & Broadcasting","MESEROLE AVENUE between DIAMOND STREET and JEWEL STREET, JEWEL STREET between MESEROLE AVENUE and CALYER STREET, DIAMOND STREET between MESEROLE AVENUE and CALYER STREET, CALYER STREET between JEWEL STREET and MOULTRIE STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555575,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 11:00:00 PM,12/17/2020 02:48:56 PM,"Mayor's Office of Film, Theatre & Broadcasting","RICHARDSON STREET between KINGSLAND AVENUE and DEBEVOISE AVENUE, RICHARDSON STREET between DEBEVOISE AVENUE and MORGAN AVENUE, RICHARDSON STREET between MORGAN AVENUE and VANDERVOORT AVENUE, FROST STREET between DEBEVOISE AVENUE and KINGSLAND AVENUE, FROST STREET between DEBEVOISE AVENUE and MORGAN AVENUE, MORGAN AVENUE between FROST STREET and RICHARDSON STREET, MORGAN AVENUE between DIVISION PLACE and RICHARDSON STREET, DEBEVOISE AVENUE between DIVISION PLACE and FROST STREET, QUEENS PLAZA SOUTH between 22 STREET and 21 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE, WITHERS STREET between MORGAN AVENUE and VANDERVOORT AVENUE, VANDERVOORT AVENUE between DIVISION PLACE and WITHERS STREET",Brooklyn,"1, 2","108, 94",Television,Episodic series,United States of America,"11101, 11222"
+555555,Shooting Permit,01/05/2021 07:00:00 AM,01/05/2021 11:00:00 PM,12/17/2020 12:32:20 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 ST between QUEENS PLAZA SOUTH and 43 AVENUE, 43 AVENUE between 21 STREET and 22 STREET, 21 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+555548,Shooting Permit,01/06/2021 07:00:00 AM,01/06/2021 09:00:00 PM,12/17/2020 11:14:55 AM,"Mayor's Office of Film, Theatre & Broadcasting",EAGLE STREET between FRANKLIN STREET and WEST STREET,Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555547,Shooting Permit,01/08/2021 07:00:00 AM,01/08/2021 09:00:00 PM,12/17/2020 11:05:22 AM,"Mayor's Office of Film, Theatre & Broadcasting","MONITOR STREET between NORMAN AVENUE and GREENPOINT AVENUE, KINGSLAND AVE between NORMAN AVENUE and GREENPOINT AVE",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555546,Shooting Permit,01/07/2021 07:00:00 AM,01/07/2021 09:00:00 PM,12/17/2020 11:01:05 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555545,Shooting Permit,01/05/2021 07:00:00 AM,01/05/2021 09:00:00 PM,12/17/2020 10:56:08 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555543,Shooting Permit,01/04/2021 07:00:00 AM,01/04/2021 09:00:00 PM,12/17/2020 10:52:03 AM,"Mayor's Office of Film, Theatre & Broadcasting","EAGLE STREET between WEST STREET and FRANKLIN STREET, WEST STREET between FREEMAN STREET and EAGLE STREET, FREEMAN STREET between WEST STREET and FRANKLIN STREET",Brooklyn,1,94,Television,Episodic series,United States of America,11222
+555501,Shooting Permit,01/08/2021 01:00:00 PM,01/09/2021 03:00:00 AM,12/16/2020 03:20:44 PM,"Mayor's Office of Film, Theatre & Broadcasting","CITY ISLAND AVENUE between FORDHAM STREET and SCHOFIELD STREET, HAWKINS STREET between CITY ISLAND AVENUE and DEAD END, HAWKINS STREET between CITY ISLAND AVENUE and WILLIAM AVENUE, BROWNS LANE between FORDHAM STREET and DEAD END, FORDHAM STREET between CITY ISLAND AVENUE and MINNIEFORD AVENUE",Bronx,10,45,Television,Cable-episodic,United States of America,10464
+555494,Shooting Permit,01/07/2021 06:00:00 AM,01/07/2021 11:00:00 PM,12/16/2020 03:08:02 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS PLAZA SOUTH between 21 STREET and 22 STREET, 22 STREET between QUEENS PLAZA SOUTH and 43 AVENUE",Queens,2,108,Television,Episodic series,United States of America,11101
+555465,Shooting Permit,01/04/2021 07:00:00 AM,01/04/2021 11:00:00 PM,12/16/2020 12:31:10 PM,"Mayor's Office of Film, Theatre & Broadcasting","35 STREET between 34 AVENUE and BROADWAY, 34 AVENUE between 35 STREET and 34 STREET, 35 AVENUE between 36 STREET and 35 STREET, 35 STREET between 34 AVENUE and 35 AVENUE, 34 AVENUE between 35 STREET and 36 STREET",Queens,1,114,Television,Episodic series,United States of America,11106
+555420,Shooting Permit,01/06/2021 07:00:00 AM,01/06/2021 03:00:00 PM,12/15/2020 07:44:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","QUEENS BOULEVARD between 42 STREET and 44 STREET, 42 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 STREET between QUEENS BOULEVARD and 43 AVENUE, 44 STREET between QUEENS BOULEVARD and 43 AVENUE, 43 STREET between SKILLMAN AVENUE and BARNETT AVENUE",Queens,2,108,Television,Cable-episodic,United States of America,11104
+555257,Shooting Permit,01/06/2021 06:00:00 AM,01/06/2021 08:00:00 PM,12/14/2020 05:13:36 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+555256,Shooting Permit,01/05/2021 06:00:00 AM,01/05/2021 10:00:00 PM,12/14/2020 05:12:16 PM,"Mayor's Office of Film, Theatre & Broadcasting","43 AVENUE between 12 STREET and 21 STREET, 13 STREET between 43 AVENUE and 44 AVENUE, 13 STREET between 43 AVENUE and QUEENS PLAZA SOUTH, MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE",Queens,"1, 2","108, 94",Television,Cable-episodic,United States of America,"11101, 11222"
+555254,Shooting Permit,01/04/2021 06:00:00 AM,01/04/2021 08:00:00 PM,12/14/2020 05:08:58 PM,"Mayor's Office of Film, Theatre & Broadcasting",MONITOR STREET between GREENPOINT AVENUE and NORMAN AVENUE,Brooklyn,1,94,Television,Cable-episodic,United States of America,11222
+555222,Shooting Permit,01/15/2021 06:00:00 AM,01/15/2021 10:00:00 PM,12/14/2020 02:11:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+555219,Shooting Permit,01/14/2021 06:00:00 AM,01/14/2021 10:00:00 PM,12/14/2020 02:06:59 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+555217,Shooting Permit,01/13/2021 06:00:00 AM,01/13/2021 10:00:00 PM,12/14/2020 02:00:13 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+555215,Shooting Permit,01/12/2021 06:00:00 AM,01/12/2021 10:00:00 PM,12/14/2020 01:52:53 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+555213,Shooting Permit,01/11/2021 06:00:00 AM,01/11/2021 09:00:00 PM,12/14/2020 01:47:24 PM,"Mayor's Office of Film, Theatre & Broadcasting","EAST 139 STREET between WALNUT AVENUE and LOCUST AVENUE, WALNUT AVENUE between EAST 139 STREET and EAST 140 STREET",Bronx,1,40,Television,Episodic series,United States of America,10454
+555055,Shooting Permit,01/13/2021 10:30:00 AM,01/14/2021 12:30:00 AM,12/11/2020 05:13:14 PM,"Mayor's Office of Film, Theatre & Broadcasting","HOLLIS CT BOULEVARD between 58 AVENUE and FRANCIS LEWIS BOULEVARD, 195 STREET between HOLLIS COURT BLVD and 53 AVENUE, FRANCIS LEWIS BLVD between HORACE HARDING EXPRESSWAY and 73 AVENUE, 53 AVENUE between 195 STREET and 196 STREET, 53 AVENUE between 195 STREET and 194 STREET, 53 AVENUE between 194 STREET and 193 STREET, 195 STREET between 53 AVENUE and 56 AVENUE, 194 STREET between 53 AVENUE and 56 AVENUE, BELL BOULEVARD between UNION TURNPIKE and KINGSBURY AVENUE, UNION TURNPIKE between BELL BOULEVARD and 220 STREET, UNION TURNPIKE between STEWART ROAD and 222 STREET, 218 STREET between 85 AVENUE and 82 AVENUE, 218 STREET between 85 AVENUE and GRAND CENTRAL PARKWAY, 85 AVENUE between 82 AVENUE and 218 STREET, 82 AVENUE between 85 AVENUE and GRAND CENTRAL PARKWAY, PECK AVENUE between 218 STREET and 219 STREET",Queens,"11, 8","107, 111",Television,Episodic series,United States of America,"11364, 11365, 11366, 11427"
+552200,Shooting Permit,01/29/2021 01:00:00 PM,01/30/2021 03:00:00 AM,11/19/2020 10:46:04 AM,"Mayor's Office of Film, Theatre & Broadcasting","LACONIA AVENUE between EAST 225 STREET and EAST 229 STREET, EAST 225 STREET between LACONIA AVENUE and SCHIEFFELIN AVENUE, EAST 229TH STREET between LACONIA AVENUE and EAST 229 DRIVE SOUTH, EAST 229TH STREET between EAST 229 DRIVE SOUTH and SCHIEFFELIN AVENUE",Bronx,12,47,Television,Cable-episodic,United States of America,10466
diff --git a/tests/requirements.txt b/tests/requirements.txt
new file mode 100644
index 0000000..2138c41
--- /dev/null
+++ b/tests/requirements.txt
@@ -0,0 +1,4 @@
+lakefs_sdk~=1.0
+pyspark==3.3.2
+pytest==7.4.0
+lakefs>=0.4.0
\ No newline at end of file
diff --git a/tests/test_iceberg.py b/tests/test_iceberg.py
new file mode 100644
index 0000000..f4b81ce
--- /dev/null
+++ b/tests/test_iceberg.py
@@ -0,0 +1,57 @@
+import uuid
+import pytest
+
+
+def _create_unique_branch_name():
+ return f"branch-{uuid.uuid4()}"
+
+
+def test_diff_two_same_branches(spark, setup_repo):
+ _, repo = setup_repo
+ main = repo.branch("main")
+
+ # Create a new branch, check that the tables are the same
+ dev = repo.branch(_create_unique_branch_name()).create(main)
+ df_main = spark.read.table(f"lakefs.`{repo.id}`.`{main.id}`.company.workers")
+ df_dev = spark.read.table(f"lakefs.`{repo.id}`.`{dev.id}`.company.workers")
+ assert df_main.schema == df_dev.schema
+ assert set(df_main.collect()) == set(df_dev.collect())
+
+ spark.sql(f"USE lakefs.`{repo.id}`.`{dev.id}`.company")
+ print(spark.sql("SHOW TABLES"))
+
+
+def test_delete_on_dev_and_merge(spark, setup_repo):
+ _, repo = setup_repo
+ main = repo.branch("main")
+ b1 = repo.branch(_create_unique_branch_name()).create(main)
+ b2 = repo.branch(_create_unique_branch_name()).create(b1)
+
+ spark.sql(f"DELETE FROM lakefs.`{repo.id}`.`{b2.id}`.company.workers WHERE id = 6")
+ b2.commit(message="delete one row")
+ b2.merge_into(b1)
+ df_source = spark.read.table(f"lakefs.`{repo.id}`.`{b1.id}`.company.workers")
+ df_dest = spark.read.table(f"lakefs.`{repo.id}`.`{b2.id}`.company.workers")
+ assert df_source.schema == df_dest.schema
+ assert set(df_source.collect()) == set(df_dest.collect())
+
+
+def test_multiple_changes_and_merge(spark, setup_repo):
+ _, repo = setup_repo
+ main = repo.branch("main")
+ b1 = repo.branch(_create_unique_branch_name()).create(main)
+ b2 = repo.branch(_create_unique_branch_name()).create(b1)
+
+ # Perform changes in test4 branch
+ spark.sql(f"DELETE FROM lakefs.`{repo.id}`.`{b2.id}`.company.workers WHERE id = 6")
+ spark.sql(f"DELETE FROM lakefs.`{repo.id}`.`{b2.id}`.company.workers WHERE id = 5")
+ spark.sql(f"INSERT INTO lakefs.`{repo.id}`.`{b2.id}`.company.workers VALUES (7, 'Jhon', 'Smith', 33, 'M')")
+ spark.sql(f"DELETE FROM lakefs.`{repo.id}`.`{b2.id}`.company.workers WHERE id = 4")
+ spark.sql(f"INSERT INTO lakefs.`{repo.id}`.`{b2.id}`.company.workers VALUES (8, 'Marta', 'Green', 31, 'F')")
+
+ b2.commit(message="Some changes")
+ b2.merge_into(b1)
+ df_source = spark.read.table(f"lakefs.`{repo.id}`.`{b1.id}`.company.workers")
+ df_dest = spark.read.table(f"lakefs.`{repo.id}`.`{b2.id}`.company.workers")
+ assert (df_source.schema == df_dest.schema)
+ assert set(df_source.collect()) == set(df_dest.collect())